ios - ITMS-90086 Missing 64-bit support -
we have xamarin
application trying deploy apple appstore, when try submit application review exception itms-90086 missing 64-bit support
. here screenshot:
here build options xamarin project showing armv7 + arm64
selected supported architectures
setting.
note screenshot configuration set release
; did read in 1 of xamarin appstore guidelines must set appstore
, not have configuration in project. (see screenshot below). have error getting?
we able set active configuration
appstore\device
in project
menu , have done so. appstore
configuration not available in project build options.
we make use of 4 statically linked libraries recompiled in xcode after updating ios sdk 8.3
. here sample screenshot of build settings 1 of our statically linked libraries.
here summary of actions performed try our application submitted:
- upgraded
xcode
latest versionios 8.3 sdk
installed - upgraded latest version of
xamarin studio
- upgraded latest version of
xamarin.ios
(version: 8.8.2.4) - migrated application
unified api
- recompiled our static libraries in xcode using
ios 8.3 sdk
- used
btouch-native
import libraries ourxamarin
project. - changed
active configuration
'appstore\device`. - configured correct provisioning profile in
ios bundle signing
section - selected
armv7 + arm64
supported architectures
build setting.
we can compile application arm64
architecture specified in build settings; can create archive; can validate archive in xcode
, passes validation. when submission error.
does know why error occurs , try resolve it?
the problem project file doesn't have appstore
configuration.
to solve:
- right-click project => options.
- select build/configurations.
- select distribution/iphone, , copy to:
- name: appstore
- platform: iphone
- ok
now should able select appstore configuration , set architecture properly.
Comments
Post a Comment