├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Package.swift ├── README.md ├── README.zh.md └── Sources └── StoreKitHelper ├── Extensions ├── String.swift └── View.swift ├── Products ├── InAppProduct.swift ├── Product.swift └── ProductID.swift ├── Resources ├── de.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── ko.lproj │ └── Localizable.strings ├── zh-Hans.lproj │ └── Localizable.strings └── zh-Hant.lproj │ └── Localizable.strings ├── StoreContext+CheckReceipt.swift ├── StoreContext+Products.swift ├── StoreContext.swift ├── StoreServiceError.swift ├── Utils.swift ├── ValidatableTransaction.swift └── Views ├── Environment.swift ├── ProductsContentWrapper.swift ├── ProductsLoadList.swift ├── ProductsUnavailableView.swift ├── PurchasePopupButton.swift ├── RestorePurchasesButton.swift ├── StoreKitHelperSelectionView.swift ├── StoreKitHelperView.swift └── TermsOfServiceView.swift /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/README.zh.md -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Extensions/String.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Extensions/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Extensions/View.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Products/InAppProduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Products/InAppProduct.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Products/Product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Products/Product.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Products/ProductID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Products/ProductID.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Resources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Resources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/StoreKitHelper/StoreContext+CheckReceipt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/StoreContext+CheckReceipt.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/StoreContext+Products.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/StoreContext+Products.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/StoreContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/StoreContext.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/StoreServiceError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/StoreServiceError.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Utils.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/ValidatableTransaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/ValidatableTransaction.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Views/Environment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Views/Environment.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Views/ProductsContentWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Views/ProductsContentWrapper.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Views/ProductsLoadList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Views/ProductsLoadList.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Views/ProductsUnavailableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Views/ProductsUnavailableView.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Views/PurchasePopupButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Views/PurchasePopupButton.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Views/RestorePurchasesButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Views/RestorePurchasesButton.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Views/StoreKitHelperSelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Views/StoreKitHelperSelectionView.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Views/StoreKitHelperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Views/StoreKitHelperView.swift -------------------------------------------------------------------------------- /Sources/StoreKitHelper/Views/TermsOfServiceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaywcjlove/StoreKitHelper/HEAD/Sources/StoreKitHelper/Views/TermsOfServiceView.swift --------------------------------------------------------------------------------