ios - Missing 64bit Support, Invalid Bundle. Errors when submitting app -


i'm trying submit new version of client's app itunesconnect using xcode 7 first time. when try uploading itunesconnect, these 2 errors.

enter image description here

anyone else experience this?

for error 90086:-

as said

dave chambers in error itms-90086 submitting app link need check things.

  • project --> build settings --> architectures

enter image description here

and:

  • targets --> build settings --> architectures

enter image description here

you have following 4 things:

  1. architectures set standard architectures (armv7, arm64) - $(archs_standard)
  2. base sdk set ios8 sdk, example latest ios (ios 8.3) or ios 8.3
  3. build active architecture only --> release set no
  4. valid architectures set arm64 armv7 armv7s

you no longer error itms-90086

and regarding seond error

error itms-90475

you need copy 'bundle id' in itunes connect ->manage apps -> **viewed app** and

then go xcode , paste plist 'bundle identifier' field.

and restart xcode .

and delete derived data.

here link

deleting contents xcode derived data folder

after task completed clean project.


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -