├── LICENSE ├── README.md ├── VerifyStoreReceipt.h ├── VerifyStoreReceipt.m ├── VerifyStoreReceipt.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ └── rick.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── WorkspaceSettings.xcsettings └── VerifyStoreReceipt ├── Images.xcassets ├── AppIcon.appiconset │ └── Contents.json └── LaunchImage.launchimage │ └── Contents.json ├── RMAppDelegate.h ├── RMAppDelegate.m ├── VerifyStoreReceipt-Info.plist ├── VerifyStoreReceipt-Prefix.pch ├── VerifyStoreReceipt.h ├── VerifyStoreReceipt.m ├── en.lproj └── InfoPlist.strings └── main.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/README.md -------------------------------------------------------------------------------- /VerifyStoreReceipt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt.h -------------------------------------------------------------------------------- /VerifyStoreReceipt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt.m -------------------------------------------------------------------------------- /VerifyStoreReceipt.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VerifyStoreReceipt.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VerifyStoreReceipt.xcodeproj/project.xcworkspace/xcuserdata/rick.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt.xcodeproj/project.xcworkspace/xcuserdata/rick.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VerifyStoreReceipt.xcodeproj/project.xcworkspace/xcuserdata/rick.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt.xcodeproj/project.xcworkspace/xcuserdata/rick.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /VerifyStoreReceipt/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VerifyStoreReceipt/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /VerifyStoreReceipt/RMAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt/RMAppDelegate.h -------------------------------------------------------------------------------- /VerifyStoreReceipt/RMAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt/RMAppDelegate.m -------------------------------------------------------------------------------- /VerifyStoreReceipt/VerifyStoreReceipt-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt/VerifyStoreReceipt-Info.plist -------------------------------------------------------------------------------- /VerifyStoreReceipt/VerifyStoreReceipt-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt/VerifyStoreReceipt-Prefix.pch -------------------------------------------------------------------------------- /VerifyStoreReceipt/VerifyStoreReceipt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt/VerifyStoreReceipt.h -------------------------------------------------------------------------------- /VerifyStoreReceipt/VerifyStoreReceipt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt/VerifyStoreReceipt.m -------------------------------------------------------------------------------- /VerifyStoreReceipt/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /VerifyStoreReceipt/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmaddy/VerifyStoreReceiptiOS/HEAD/VerifyStoreReceipt/main.m --------------------------------------------------------------------------------