Validating app, application is missing Architecture armv7

前端 未结 13 2702
春和景丽
春和景丽 2020-12-14 09:31

When I\'m updating my first iOS app , I have 2 problems validating them,

*iPhone/iPod Touch:application executable is missing a required architecture. 
At le         


        
相关标签:
13条回答
  • 2020-12-14 10:05

    it says missing a required architecture try this

    1. Go to Targets "your project"
    2. Go to Build Settings
    3. See if there is armv7 in the Architectures
    4. if not, then set Architectures to armv7
    5. clean and build.

    If there is armv7 already, then something must be wrong.

    hope it helps!

    0 讨论(0)
  • 2020-12-14 10:06

    I've got the same issue, and it got resolved..

    It turned out, that i've different Bundle/Executable name than the project name.

    Go to Project > double click Target

    Rename it to the Bundle/Executable name, then build for Release/iOS Device

    and the Application loader will accept your App.

    0 讨论(0)
  • 2020-12-14 10:07

    Now I resolved the problem, that was a very simple problem, it was with my executable name.

    My target have an invalid character (+) then, when i upload my app it shows a problem (this bundle is invalid , the executable name can not contain this characters ....) then i changed the executable name from ${EXECUTABLE_NAME} to Chemistry, but the registered name of my app is Chemistry++.

    And then the validate show others problems, which has been produced by changing this.

    For resolving the problem I click on the project > target two times and changed the name, with no invalid characters ( * . , + {} () ) , all the problems disappeared.

    Then it upload successfully.

    (When I change the Info.plist executable name, for other name, it creates incompatibility, so don't to it and make it defaults ( ${EXECUTABLE_NAME} ), if you change, it creates other problems.)

    Waiting for apple review!!!

    0 讨论(0)
  • 2020-12-14 10:11

    Make sure you set "Build Active Architecture Only" to NO for all your targets, libraries and frameworks.

    0 讨论(0)
  • 2020-12-14 10:17

    Confirmed. I just unplugged my iPhone 5s and re-archived the app. It worked flawlessly.

    Welp, I'll never get those 40 minutes of my life back.

    0 讨论(0)
  • 2020-12-14 10:19

    Make sure 'Build Active Architectures' is set to No in BOTH the project and target settings too as well as the answers here "Warning: iPhone apps should include an armv6 architecture" even with build config set

    0 讨论(0)
提交回复
热议问题