├── .gitignore ├── InAppPurchases.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── InAppPurchases.xcscheme ├── InAppPurchases ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── ott.png │ ├── Contents.json │ └── movie_poster.imageset │ │ ├── Contents.json │ │ └── movie_poster.png ├── InAppPurchases.entitlements ├── InAppPurchasesApp.swift ├── InAppStore │ ├── ProductPurchaseListView.swift │ ├── ProductPurchaseViewModel.swift │ ├── ProductView.swift │ ├── PurchaseConfiguration.storekit │ └── StoreKitManager.swift ├── Movie │ ├── MoviePurchaseView.swift │ └── MoviesViewModel.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── README.md └── Utilities │ └── Date.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/.gitignore -------------------------------------------------------------------------------- /InAppPurchases.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InAppPurchases.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InAppPurchases.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /InAppPurchases.xcodeproj/xcshareddata/xcschemes/InAppPurchases.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases.xcodeproj/xcshareddata/xcschemes/InAppPurchases.xcscheme -------------------------------------------------------------------------------- /InAppPurchases/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /InAppPurchases/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InAppPurchases/Assets.xcassets/AppIcon.appiconset/ott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Assets.xcassets/AppIcon.appiconset/ott.png -------------------------------------------------------------------------------- /InAppPurchases/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InAppPurchases/Assets.xcassets/movie_poster.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Assets.xcassets/movie_poster.imageset/Contents.json -------------------------------------------------------------------------------- /InAppPurchases/Assets.xcassets/movie_poster.imageset/movie_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Assets.xcassets/movie_poster.imageset/movie_poster.png -------------------------------------------------------------------------------- /InAppPurchases/InAppPurchases.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/InAppPurchases.entitlements -------------------------------------------------------------------------------- /InAppPurchases/InAppPurchasesApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/InAppPurchasesApp.swift -------------------------------------------------------------------------------- /InAppPurchases/InAppStore/ProductPurchaseListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/InAppStore/ProductPurchaseListView.swift -------------------------------------------------------------------------------- /InAppPurchases/InAppStore/ProductPurchaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/InAppStore/ProductPurchaseViewModel.swift -------------------------------------------------------------------------------- /InAppPurchases/InAppStore/ProductView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/InAppStore/ProductView.swift -------------------------------------------------------------------------------- /InAppPurchases/InAppStore/PurchaseConfiguration.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/InAppStore/PurchaseConfiguration.storekit -------------------------------------------------------------------------------- /InAppPurchases/InAppStore/StoreKitManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/InAppStore/StoreKitManager.swift -------------------------------------------------------------------------------- /InAppPurchases/Movie/MoviePurchaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Movie/MoviePurchaseView.swift -------------------------------------------------------------------------------- /InAppPurchases/Movie/MoviesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Movie/MoviesViewModel.swift -------------------------------------------------------------------------------- /InAppPurchases/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InAppPurchases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/README.md -------------------------------------------------------------------------------- /InAppPurchases/Utilities/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoshbotre-royal/InAppPurchaseWithStoreKit2/HEAD/InAppPurchases/Utilities/Date.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # InAppPurchaseWithStoreKit2 --------------------------------------------------------------------------------