Skip to content

Commit

Permalink
App: Using StoreKit configuration file to test IAPs
Browse files Browse the repository at this point in the history
  • Loading branch information
vashpan committed Dec 8, 2023
1 parent eea1fa8 commit e422e72
Show file tree
Hide file tree
Showing 2 changed files with 120 additions and 0 deletions.
2 changes: 2 additions & 0 deletions DevCleaner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
71AE37F0237A1FAE009C03BB /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
71B01E8D20824F2A00940041 /* XcodeEntryCellView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = XcodeEntryCellView.swift; sourceTree = "<group>"; };
71B01E8F2082551000940041 /* SizeCellView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SizeCellView.swift; sourceTree = "<group>"; };
71B76BC52B222690002A2A03 /* DevCleanerStoreKit.storekit */ = {isa = PBXFileReference; lastKnownFileType = text; path = DevCleanerStoreKit.storekit; sourceTree = "<group>"; };
71C8ACDD20A4EC2200E7A13B /* Credits.rtf */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; path = Credits.rtf; sourceTree = "<group>"; };
71C8ACDF20A62B8000E7A13B /* ScanReminders.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScanReminders.swift; sourceTree = "<group>"; };
71E7F835214E8D4400A11601 /* URL+AcquireAccessFromSandbox.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "URL+AcquireAccessFromSandbox.swift"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -177,6 +178,7 @@
7110B4952030F17B00EDBFA3 /* Assets.xcassets */,
7110B49A2030F17B00EDBFA3 /* Info.plist */,
7110B49B2030F17B00EDBFA3 /* DevCleaner.entitlements */,
71B76BC52B222690002A2A03 /* DevCleanerStoreKit.storekit */,
71C8ACDD20A4EC2200E7A13B /* Credits.rtf */,
71AAD2A22316A99F00D6B133 /* dev-cleaner.sh */,
);
Expand Down
118 changes: 118 additions & 0 deletions DevCleaner/Resources/DevCleanerStoreKit.storekit
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
{
"identifier" : "3AD57D62",
"nonRenewingSubscriptions" : [

],
"products" : [
{
"displayPrice" : "3.99",
"familyShareable" : false,
"internalID" : "1390773822",
"localizations" : [
{
"description" : "A tip that could buy me a big coffee!",
"displayName" : "Big Coffee",
"locale" : "en_US"
}
],
"productID" : "BIG_COFFEE",
"referenceName" : "Big Coffee",
"type" : "Consumable"
},
{
"displayPrice" : "9.99",
"familyShareable" : false,
"internalID" : "1390773830",
"localizations" : [
{
"description" : "A tip that could buy me a lunch!",
"displayName" : "Lunch",
"locale" : "en_US"
}
],
"productID" : "LUNCH",
"referenceName" : "Lunch",
"type" : "Consumable"
},
{
"displayPrice" : "1.99",
"familyShareable" : false,
"internalID" : "1390773318",
"localizations" : [
{
"description" : "A tip that could buy me a small coffee!",
"displayName" : "Small Coffee",
"locale" : "en_US"
}
],
"productID" : "SMALL_COFFEE",
"referenceName" : "Small Coffee",
"type" : "Consumable"
}
],
"settings" : {
"_applicationInternalID" : "1388020431",
"_developerTeamID" : "3DS5SGYDG6",
"_failTransactionsEnabled" : false,
"_lastSynchronizedDate" : 723659050.64460695,
"_locale" : "en_US",
"_storefront" : "USA",
"_storeKitErrors" : [
{
"current" : {
"index" : 2,
"type" : "generic"
},
"enabled" : false,
"name" : "Load Products"
},
{
"current" : null,
"enabled" : false,
"name" : "Purchase"
},
{
"current" : null,
"enabled" : false,
"name" : "Verification"
},
{
"current" : null,
"enabled" : false,
"name" : "App Store Sync"
},
{
"current" : null,
"enabled" : false,
"name" : "Subscription Status"
},
{
"current" : null,
"enabled" : false,
"name" : "App Transaction"
},
{
"current" : null,
"enabled" : false,
"name" : "Manage Subscriptions Sheet"
},
{
"current" : null,
"enabled" : false,
"name" : "Refund Request Sheet"
},
{
"current" : null,
"enabled" : false,
"name" : "Offer Code Redeem Sheet"
}
]
},
"subscriptionGroups" : [

],
"version" : {
"major" : 3,
"minor" : 0
}
}

0 comments on commit e422e72

Please sign in to comment.