At least one of the following architectures (s) must be present: armv7 (-19033) Failed to validate your application. - (zero)

I am developing only an iPad application, but I have a big problem with the error "Error checking code due to invalid rights" when I try to send to the Apple store, as well as some of the problems that I mention, with what I did below, I am using Xcode 4.3.2 and IOS 5.1 for development, and Target is IOS 5.0

1. iPad: application executable is missing a required architecture. At least one of the following architecture(s) must be present: armv7 (-19033) 

for this I really wanted other people to mention

 ARCHS = armv7 armv6 

i add armv7 architecture, but its not working here link to install assembly. I do not have the rights file, as people told me, but if you can help me.

enter image description here

enter image description here

 2. Application failed codesign verification. The signature was invalid, contains disallowed entitlements, or it was not signed with an iPhone Distribution Certificate. (-19011) 3. Unable to extract entitlements from application: (null) (-19045) 

This is a complete mistake, I want you to accept me for me, thanks

 Validate /Users/bourne/Library/Developer/Xcode/DerivedData/TurfNutritionTool_ver_5.1-azcqbuzeebaybzdjeksuhyuvyrmw/Build/Products/Release-iphoneos/TurfNutritionTool_ver_5.1.app cd /Development/TurfNutritionTool_IOS_5.1 setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" setenv PRODUCT_TYPE com.apple.product-type.application /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/Validation /Users/bourne/Library/Developer/Xcode/DerivedData/TurfNutritionTool_ver_5.1-azcqbuzeebaybzdjeksuhyuvyrmw/Build/Products/Release-iphoneos/TurfNutritionTool_ver_5.1.app warning: iPad: application executable is missing a required architecture. At least one of the following architecture(s) must be present: armv7 (-19033) Unable to validate your application. - (null) warning: Application failed codesign verification. The signature was invalid, contains disallowed entitlements, or it was not signed with an iPhone Distribution Certificate. (-19011) Executable=/Users/bourne/Library/Developer/Xcode/DerivedData/TurfNutritionTool_ver_5.1-azcqbuzeebaybzdjeksuhyuvyrmw/Build/Products/Release-iphoneos/TurfNutritionTool_ver_5.1.app/Info.plist codesign_wrapper-0.7.10: using Apple CA for profile evaluation AssertMacros: exec, file: codesign.c, line: 170 AssertMacros: binary, file: codesign.c, line: 235 AssertMacros: code_signatures, file: codesign_wrapper.c, line: 945 - (null) warning: Unable to extract entitlements from application: (null) (-19045) Unable to validate your application. - (null) 
+8
ios objective-c ios5 app-store
source share
3 answers

I fixed this problem by installing Architectures only armv7 and changing the Deployment Goal to 4.3 (this was 4.0 before).

+4
source share

I had this problem and it was fixed by installing Only the built-in active architecture No (in fact, itโ€™s a lot of speed during development, so that it is set to Yes! )

+1
source share

Please check the following settings in your applications:

In Info.plist. Check the โ€œRequired Devicesโ€ information and view the data inside. You must have 2 elements (NSArray): armv6 and armv7

-one
source share

All Articles