[iOS/Error] Invalid bundle contains disallowed nested bundles 해결법
2023. 1. 5. 20:54
Archive Distribution에서 발생
1. Invalid Bundle contains disallowed nested bundles
2. Invalid Bundle contains disallowed file ‘Frameworks’
-> App Extension Target - [Build Phaes] - [Run Script]
cd "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/"
if [[ -d "Frameworks" ]]; then
rm -fr Frameworks
fi
출처
Validation Error: Invalid Bundle. The bundle at ... contains disallowed file 'Frameworks'
I'm trying to submit an app with the Xcode 6 GM, and I get this error on validation. The app has an action extension and a dynamic framework that's shared between the extension and the app itself. ...
stackoverflow.com
728x90