From fd6829e9801b90471a6f191481c06e4fefc75ebc Mon Sep 17 00:00:00 2001 From: bearnun Date: Wed, 16 Nov 2016 11:39:31 -0600 Subject: [PATCH] Remove $(SDKROOT)/ResourceRules.plist When I attempt to push my app to the app store, having the resource rules path populated causees this error: ERROR ITMS-90339: "This bundle is invalid. The Info.plist contains an invalid key 'CFBundleResourceSpecification' in bundle mingyu [mingyu.app]" According to this post...: http://stackoverflow.com/questions/32504355/error-itms-90339-this-bundle-is-invalid-the-info-plist-contains-an-invalid-ke ...Deleting the code signing path solves the issue. This does in fact resolve the above error and I am able to push my app to the app store if I do this. So, I am proposing it be changed in the toolchain as well. --- .../{{ cookiecutter.project_name }}.xcodeproj/project.pbxproj | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/templates/{{ cookiecutter.project_name }}-ios/{{ cookiecutter.project_name }}.xcodeproj/project.pbxproj b/tools/templates/{{ cookiecutter.project_name }}-ios/{{ cookiecutter.project_name }}.xcodeproj/project.pbxproj index 4199b5a..0d00e86 100755 --- a/tools/templates/{{ cookiecutter.project_name }}-ios/{{ cookiecutter.project_name }}.xcodeproj/project.pbxproj +++ b/tools/templates/{{ cookiecutter.project_name }}-ios/{{ cookiecutter.project_name }}.xcodeproj/project.pbxproj @@ -274,7 +274,6 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CODE_SIGN_RESOURCE_RULES_PATH = "$(SDKROOT)/ResourceRules.plist"; COPY_PHASE_STRIP = NO; FRAMEWORK_SEARCH_PATHS = "{{ cookiecutter.dist_dir }}/frameworks"; GCC_DYNAMIC_NO_PIC = NO;