i have built application using mapbox framework. app run on device , pass app submission validation process.
however, when try submit app on app store, getting error
error itms-90087: "unsupported architectures. executable appname.app/frameworks/mapbox.framework contains unsupported architectures '[x86_64, i386]'."
i had tried different solutions no luck yet.
e.g. http://ikennd.ac/blog/2015/02/stripping-unwanted-architectures-from-dynamic-libraries-in-xcode/
however on mapbox cocoapods , other frameworks, mention
the last step, courtesy of realm, required working around ios app store bug when archiving universal binaries
can please let me know how solve error or how use courtesy of realm solve issue?
per mapbox ios sdk dynamic framework installation instructions:
in build phases tab of project editor, click + button @ top , select “new run script phase”. enter following code script text field:
"${built_products_dir}/${frameworks_folder_path}/mapbox.framework/strip-frameworks.sh”
this works around app store bug wherein simulator slices aren’t stripped framework.
Comments
Post a Comment