EasyApp

StoreKit2

Learn how to configure StoreKit2 productIDs in the project

If you don't want to use RevenueCat service, EasyApp also supports using the native StoreKit2 API to manage your in-app purchases.

The configuration code for StoreKit2 service is in the EasyAppSwiftUI/Constants/Constants.swift file. Here you mainly need to understand where to configure StoreKit2 productIDs.

How to integrate StoreKit2 step by step will be detailed in the Integrations/StoreKit2 documentation.

EasyAppSwiftUI/Constants/Constants.swift
enum Constants {

	//  ... other configurations

	/// StoreKit2 product IDs
	/// Enter the product ID from App Store Connect here
	enum StoreKit2 {
		static let productIDs = ["your product ids"]
	}

	// ... other configurations
}

Learn More About StoreKit2 Integration

Last updated on