Posts

Post not yet marked as solved
4 Replies
I got this figured out. I was having the same issue with an iOS Message Sticker app. I believe, not certain, that all iOS Message apps (at least the Sticker-only apps) must have native support for 32-bit architecture. The warning is confusing because it implies you have to have a minimum OS of 12 or later, but carefully rereading it states otherwise. Essentially, the architecture for an iOS Message Sticker app MUST support the 32-bit architecture, so setting an minimum OS of 12 or later is incompatible, because iOS 12 or later no longer supports the 32-bit architecture. So, you have to have a Deployment Target (minimum OS) of 10.0 to 11.x, one that supports the native 32-bit architecture. I kept getting this error after trying to remove armv7 and armv7s and trying other things. As soon as I changed my deployment target back to 10.0, it worked as expected and passed the AppStore Distribute Validation test.