iOS app submission and beta review process

Useful preliminary tip! https://stackoverflow.com/a/55044137/294884 Critical! news for 2019 As of February, there’s a bug on the new iTunes connect. (Who would have thought?) If your test flight build is stuck on “processing” (after, say, 5 minutes)… In fact, simply log out of appstoreconnect.apple.com and log back in. Amazingly, it will now be … This seems … Read more

How to get SKU Number

SKU is short for Stock Keeping Unit. It’s a number you personally make up, which you yourself can use for keeping track of your applications. You can think of it as a product ID. Source: What SKU Number to use when submitting apps?

Check and Remove Unsupported Architecture [x86_64, i386] in IPA / Archive

Apple has started complaining if app contains simulator architectures during distribution. How can the above error be resolved ? Solution : Add below code in run script of Project target, this remove the simulator architecture (x86_64 and i386) from your app on building process: Shell : /bin/sh Code : APP_PATH=”${TARGET_BUILD_DIR}/${WRAPPER_NAME}” # This script loops through … Read more

Link to app manage subscriptions in app store

Using a URL According to Apples article Handling Subscriptions Billing and WWDC 2018 Session 705 the following url can be used to link to the manage subscription page: https://apps.apple.com/account/subscriptions Using StoreKit/SwiftUI (iOS 15+) UIKit: Use StoreKits showManageSubscriptions(in:) (Documentation). SwiftUI: Use SwiftUIs modifier manageSubscriptionsSheet(isPresented:) (Documentation).