├── .gitignore ├── Example ├── FGIAPService.xcodeproj │ └── project.pbxproj ├── FGIAPService │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── FGAppDelegate.h │ ├── FGAppDelegate.m │ ├── FGIAPService-Info.plist │ ├── FGIAPService-Prefix.pch │ ├── FGIAPVerifyTransactionObj.h │ ├── FGIAPVerifyTransactionObj.m │ ├── FGViewController.h │ ├── FGViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── FGIAPService.podspec ├── FGIAPService ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── FGIAPManager.h │ ├── FGIAPManager.m │ ├── FGIAPProductsFilter.h │ ├── FGIAPProductsFilter.m │ ├── FGIAPService.h │ ├── FGIAPService.m │ ├── FGIAPServiceUtility.h │ ├── FGIAPVerifyTransaction.h │ ├── NSObject+FGIsNullOrEmpty.h │ └── NSObject+FGIsNullOrEmpty.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/FGIAPService.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/FGIAPService/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/FGIAPService/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/FGIAPService/FGAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/FGAppDelegate.h -------------------------------------------------------------------------------- /Example/FGIAPService/FGAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/FGAppDelegate.m -------------------------------------------------------------------------------- /Example/FGIAPService/FGIAPService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/FGIAPService-Info.plist -------------------------------------------------------------------------------- /Example/FGIAPService/FGIAPService-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/FGIAPService-Prefix.pch -------------------------------------------------------------------------------- /Example/FGIAPService/FGIAPVerifyTransactionObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/FGIAPVerifyTransactionObj.h -------------------------------------------------------------------------------- /Example/FGIAPService/FGIAPVerifyTransactionObj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/FGIAPVerifyTransactionObj.m -------------------------------------------------------------------------------- /Example/FGIAPService/FGViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/FGViewController.h -------------------------------------------------------------------------------- /Example/FGIAPService/FGViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/FGViewController.m -------------------------------------------------------------------------------- /Example/FGIAPService/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/FGIAPService/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/FGIAPService/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/FGIAPService/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FGIAPService.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService.podspec -------------------------------------------------------------------------------- /FGIAPService/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FGIAPService/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FGIAPService/Classes/FGIAPManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/FGIAPManager.h -------------------------------------------------------------------------------- /FGIAPService/Classes/FGIAPManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/FGIAPManager.m -------------------------------------------------------------------------------- /FGIAPService/Classes/FGIAPProductsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/FGIAPProductsFilter.h -------------------------------------------------------------------------------- /FGIAPService/Classes/FGIAPProductsFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/FGIAPProductsFilter.m -------------------------------------------------------------------------------- /FGIAPService/Classes/FGIAPService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/FGIAPService.h -------------------------------------------------------------------------------- /FGIAPService/Classes/FGIAPService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/FGIAPService.m -------------------------------------------------------------------------------- /FGIAPService/Classes/FGIAPServiceUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/FGIAPServiceUtility.h -------------------------------------------------------------------------------- /FGIAPService/Classes/FGIAPVerifyTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/FGIAPVerifyTransaction.h -------------------------------------------------------------------------------- /FGIAPService/Classes/NSObject+FGIsNullOrEmpty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/NSObject+FGIsNullOrEmpty.h -------------------------------------------------------------------------------- /FGIAPService/Classes/NSObject+FGIsNullOrEmpty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/FGIAPService/Classes/NSObject+FGIsNullOrEmpty.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FoneG/FGIAPService/HEAD/README.md --------------------------------------------------------------------------------