In-App Purchases

App Store Configuration

///In App Products. Note:  You must have extended license for in-app purchases. Contact me if you want upgrade.
var IN_APP_PRODUCTS = [
    //Use your product IDs instead
    "remove_ads",
    "donate"
]

Of course, we do not want to use our personal Apple ID for this. Instead, we use a sandbox account. Go to the iOS Settings, open “App Store” and tap on “Sign In” under “Sandbox Account”. Now use the credentials of a sandbox account you created in App Store Connect earlier to log in.

Run the app and wait until all products are loaded. To make an In-App Purchase, we tap on the respective “Purchase” button. In sandboxed mode, it may take a few seconds to start the transaction.

Tip: If your personal Apple account is still used when the transaction is initiated, try to log out of your personal iCloud account in the iOS settings and restart the app.

Note: You must have extended license for in-app purchases. Contact me if you want upgrade (asilarslan93@gmail.com)

Last updated