├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Core ├── Availability.swift ├── Certificates │ └── AppleIncRootCertificate.cer ├── Dates │ ├── HTTPDateClient.swift │ └── SecureDateProvider.swift ├── Keychain.swift ├── Notifications.swift ├── Product Request │ ├── PaymentTransactionObserver.swift │ └── ProductsRequestManager.swift ├── ProductLifetime.swift ├── Purchaseable.swift ├── Receipt Validation │ ├── ASN1Helper.swift │ ├── OpenSSLObjectWrappers.swift │ ├── PurchaseReceipt.swift │ ├── PurchasedProduct.swift │ └── ReceiptValidator.swift ├── Store.swift ├── Typealiases.swift └── Utilities │ ├── Logging.swift │ └── UserEvents.swift ├── Examples ├── Example-iOS │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-120.png │ │ │ ├── icon-121.png │ │ │ ├── icon-152.png │ │ │ ├── icon-180.png │ │ │ ├── icon-20.png │ │ │ ├── icon-29.png │ │ │ ├── icon-40.png │ │ │ ├── icon-41.png │ │ │ ├── icon-42.png │ │ │ ├── icon-58.png │ │ │ ├── icon-59.png │ │ │ ├── icon-60.png │ │ │ ├── icon-76.png │ │ │ ├── icon-80.png │ │ │ ├── icon-81.png │ │ │ ├── icon-87.png │ │ │ └── icon@2x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Examples-Common │ ├── MyAppProduct.swift │ └── NotificationCenter.swift └── Examples.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ └── xcschemes │ ├── Example-iOS.xcscheme │ ├── Example-macOS.xcscheme │ └── Example-tvOS.xcscheme ├── IAP.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── IAP-iOS.xcscheme ├── LICENSE ├── README.md ├── ReadMeImages ├── hire.png ├── iPadPortrait.png ├── iPadSplitScreen.png ├── iPhoneLandscape.png └── iPhonePortrait.png ├── Resources ├── IAP-close_button-pressed.png ├── IAP-close_button-pressed@2x.png ├── IAP-close_button.png └── IAP-close_button@2x.png ├── iOS ├── IAP-iOS │ ├── IAP_iOS.h │ └── Info.plist ├── IAP-iOSTests │ ├── IAP_iOSTests.swift │ └── Info.plist ├── OpenSSL │ ├── aes.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── des.h │ ├── des_old.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── idea.h │ ├── krb5_asn.h │ ├── kssl.h │ ├── lhash.h │ ├── lib │ │ ├── libcrypto.a │ │ └── libssl.a │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── module.modulemap │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslconf_ios_arm64.h │ ├── opensslconf_ios_armv7.h │ ├── opensslconf_ios_armv7s.h │ ├── opensslconf_ios_i386.h │ ├── opensslconf_ios_x86_64.h │ ├── opensslconf_tvos_arm64.h │ ├── opensslconf_tvos_x86_64.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pqueue.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h └── Source │ ├── Assets.xcassets │ ├── Contents.json │ ├── IAP-close_button-pressed.imageset │ │ ├── Contents.json │ │ ├── IAP-close_button-pressed.png │ │ └── IAP-close_button-pressed@2x.png │ └── IAP-close_button.imageset │ │ ├── Contents.json │ │ ├── IAP-close_button.png │ │ └── IAP-close_button@2x.png │ ├── Extensions │ ├── NotificationCenter.swift │ ├── UIApplication.swift │ ├── UIColor.swift │ ├── UIFont.swift │ └── UIImage.swift │ ├── IAP-iOS.swift │ ├── IAPDialog.storyboard │ ├── IAPDialogCell.swift │ ├── IAPDialogCell.xib │ ├── IAPDialogViewController.swift │ ├── Resources │ └── Localizable.strings │ └── RoundedButton.swift └── releaseNotes.md /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Core/Availability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Availability.swift -------------------------------------------------------------------------------- /Core/Certificates/AppleIncRootCertificate.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Certificates/AppleIncRootCertificate.cer -------------------------------------------------------------------------------- /Core/Dates/HTTPDateClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Dates/HTTPDateClient.swift -------------------------------------------------------------------------------- /Core/Dates/SecureDateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Dates/SecureDateProvider.swift -------------------------------------------------------------------------------- /Core/Keychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Keychain.swift -------------------------------------------------------------------------------- /Core/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Notifications.swift -------------------------------------------------------------------------------- /Core/Product Request/PaymentTransactionObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Product Request/PaymentTransactionObserver.swift -------------------------------------------------------------------------------- /Core/Product Request/ProductsRequestManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Product Request/ProductsRequestManager.swift -------------------------------------------------------------------------------- /Core/ProductLifetime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/ProductLifetime.swift -------------------------------------------------------------------------------- /Core/Purchaseable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Purchaseable.swift -------------------------------------------------------------------------------- /Core/Receipt Validation/ASN1Helper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Receipt Validation/ASN1Helper.swift -------------------------------------------------------------------------------- /Core/Receipt Validation/OpenSSLObjectWrappers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Receipt Validation/OpenSSLObjectWrappers.swift -------------------------------------------------------------------------------- /Core/Receipt Validation/PurchaseReceipt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Receipt Validation/PurchaseReceipt.swift -------------------------------------------------------------------------------- /Core/Receipt Validation/PurchasedProduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Receipt Validation/PurchasedProduct.swift -------------------------------------------------------------------------------- /Core/Receipt Validation/ReceiptValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Receipt Validation/ReceiptValidator.swift -------------------------------------------------------------------------------- /Core/Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Store.swift -------------------------------------------------------------------------------- /Core/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Typealiases.swift -------------------------------------------------------------------------------- /Core/Utilities/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Utilities/Logging.swift -------------------------------------------------------------------------------- /Core/Utilities/UserEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Core/Utilities/UserEvents.swift -------------------------------------------------------------------------------- /Examples/Example-iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-120.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-121.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-152.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-180.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-20.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-41.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-42.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-58.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-59.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-60.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-80.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-81.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon-87.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Assets.xcassets/AppIcon.appiconset/icon@2x.png -------------------------------------------------------------------------------- /Examples/Example-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/Example-iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/Example-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/Info.plist -------------------------------------------------------------------------------- /Examples/Example-iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Example-iOS/ViewController.swift -------------------------------------------------------------------------------- /Examples/Examples-Common/MyAppProduct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Examples-Common/MyAppProduct.swift -------------------------------------------------------------------------------- /Examples/Examples-Common/NotificationCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Examples-Common/NotificationCenter.swift -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Examples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Examples.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Examples.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/xcshareddata/xcschemes/Example-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Examples.xcodeproj/xcshareddata/xcschemes/Example-macOS.xcscheme -------------------------------------------------------------------------------- /Examples/Examples.xcodeproj/xcshareddata/xcschemes/Example-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Examples/Examples.xcodeproj/xcshareddata/xcschemes/Example-tvOS.xcscheme -------------------------------------------------------------------------------- /IAP.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/IAP.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IAP.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/IAP.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IAP.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/IAP.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /IAP.xcodeproj/xcshareddata/xcschemes/IAP-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/IAP.xcodeproj/xcshareddata/xcschemes/IAP-iOS.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/README.md -------------------------------------------------------------------------------- /ReadMeImages/hire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/ReadMeImages/hire.png -------------------------------------------------------------------------------- /ReadMeImages/iPadPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/ReadMeImages/iPadPortrait.png -------------------------------------------------------------------------------- /ReadMeImages/iPadSplitScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/ReadMeImages/iPadSplitScreen.png -------------------------------------------------------------------------------- /ReadMeImages/iPhoneLandscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/ReadMeImages/iPhoneLandscape.png -------------------------------------------------------------------------------- /ReadMeImages/iPhonePortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/ReadMeImages/iPhonePortrait.png -------------------------------------------------------------------------------- /Resources/IAP-close_button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Resources/IAP-close_button-pressed.png -------------------------------------------------------------------------------- /Resources/IAP-close_button-pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Resources/IAP-close_button-pressed@2x.png -------------------------------------------------------------------------------- /Resources/IAP-close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Resources/IAP-close_button.png -------------------------------------------------------------------------------- /Resources/IAP-close_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/Resources/IAP-close_button@2x.png -------------------------------------------------------------------------------- /iOS/IAP-iOS/IAP_iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/IAP-iOS/IAP_iOS.h -------------------------------------------------------------------------------- /iOS/IAP-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/IAP-iOS/Info.plist -------------------------------------------------------------------------------- /iOS/IAP-iOSTests/IAP_iOSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/IAP-iOSTests/IAP_iOSTests.swift -------------------------------------------------------------------------------- /iOS/IAP-iOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/IAP-iOSTests/Info.plist -------------------------------------------------------------------------------- /iOS/OpenSSL/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/aes.h -------------------------------------------------------------------------------- /iOS/OpenSSL/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/asn1.h -------------------------------------------------------------------------------- /iOS/OpenSSL/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/asn1_mac.h -------------------------------------------------------------------------------- /iOS/OpenSSL/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/asn1t.h -------------------------------------------------------------------------------- /iOS/OpenSSL/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/bio.h -------------------------------------------------------------------------------- /iOS/OpenSSL/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/blowfish.h -------------------------------------------------------------------------------- /iOS/OpenSSL/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/bn.h -------------------------------------------------------------------------------- /iOS/OpenSSL/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/buffer.h -------------------------------------------------------------------------------- /iOS/OpenSSL/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/camellia.h -------------------------------------------------------------------------------- /iOS/OpenSSL/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/cast.h -------------------------------------------------------------------------------- /iOS/OpenSSL/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/cmac.h -------------------------------------------------------------------------------- /iOS/OpenSSL/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/cms.h -------------------------------------------------------------------------------- /iOS/OpenSSL/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/comp.h -------------------------------------------------------------------------------- /iOS/OpenSSL/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/conf.h -------------------------------------------------------------------------------- /iOS/OpenSSL/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/conf_api.h -------------------------------------------------------------------------------- /iOS/OpenSSL/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/crypto.h -------------------------------------------------------------------------------- /iOS/OpenSSL/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/des.h -------------------------------------------------------------------------------- /iOS/OpenSSL/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/des_old.h -------------------------------------------------------------------------------- /iOS/OpenSSL/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/dh.h -------------------------------------------------------------------------------- /iOS/OpenSSL/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/dsa.h -------------------------------------------------------------------------------- /iOS/OpenSSL/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/dso.h -------------------------------------------------------------------------------- /iOS/OpenSSL/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/dtls1.h -------------------------------------------------------------------------------- /iOS/OpenSSL/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/e_os2.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ebcdic.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ec.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ecdh.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ecdsa.h -------------------------------------------------------------------------------- /iOS/OpenSSL/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/engine.h -------------------------------------------------------------------------------- /iOS/OpenSSL/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/err.h -------------------------------------------------------------------------------- /iOS/OpenSSL/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/evp.h -------------------------------------------------------------------------------- /iOS/OpenSSL/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/hmac.h -------------------------------------------------------------------------------- /iOS/OpenSSL/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/idea.h -------------------------------------------------------------------------------- /iOS/OpenSSL/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/krb5_asn.h -------------------------------------------------------------------------------- /iOS/OpenSSL/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/kssl.h -------------------------------------------------------------------------------- /iOS/OpenSSL/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/lhash.h -------------------------------------------------------------------------------- /iOS/OpenSSL/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/lib/libcrypto.a -------------------------------------------------------------------------------- /iOS/OpenSSL/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/lib/libssl.a -------------------------------------------------------------------------------- /iOS/OpenSSL/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/md4.h -------------------------------------------------------------------------------- /iOS/OpenSSL/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/md5.h -------------------------------------------------------------------------------- /iOS/OpenSSL/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/mdc2.h -------------------------------------------------------------------------------- /iOS/OpenSSL/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/modes.h -------------------------------------------------------------------------------- /iOS/OpenSSL/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/module.modulemap -------------------------------------------------------------------------------- /iOS/OpenSSL/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/obj_mac.h -------------------------------------------------------------------------------- /iOS/OpenSSL/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/objects.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ocsp.h -------------------------------------------------------------------------------- /iOS/OpenSSL/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/opensslconf.h -------------------------------------------------------------------------------- /iOS/OpenSSL/opensslconf_ios_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/opensslconf_ios_arm64.h -------------------------------------------------------------------------------- /iOS/OpenSSL/opensslconf_ios_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/opensslconf_ios_armv7.h -------------------------------------------------------------------------------- /iOS/OpenSSL/opensslconf_ios_armv7s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/opensslconf_ios_armv7s.h -------------------------------------------------------------------------------- /iOS/OpenSSL/opensslconf_ios_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/opensslconf_ios_i386.h -------------------------------------------------------------------------------- /iOS/OpenSSL/opensslconf_ios_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/opensslconf_ios_x86_64.h -------------------------------------------------------------------------------- /iOS/OpenSSL/opensslconf_tvos_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/opensslconf_tvos_arm64.h -------------------------------------------------------------------------------- /iOS/OpenSSL/opensslconf_tvos_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/opensslconf_tvos_x86_64.h -------------------------------------------------------------------------------- /iOS/OpenSSL/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/opensslv.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ossl_typ.h -------------------------------------------------------------------------------- /iOS/OpenSSL/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/pem.h -------------------------------------------------------------------------------- /iOS/OpenSSL/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/pem2.h -------------------------------------------------------------------------------- /iOS/OpenSSL/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/pkcs12.h -------------------------------------------------------------------------------- /iOS/OpenSSL/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/pkcs7.h -------------------------------------------------------------------------------- /iOS/OpenSSL/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/pqueue.h -------------------------------------------------------------------------------- /iOS/OpenSSL/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/rand.h -------------------------------------------------------------------------------- /iOS/OpenSSL/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/rc2.h -------------------------------------------------------------------------------- /iOS/OpenSSL/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/rc4.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ripemd.h -------------------------------------------------------------------------------- /iOS/OpenSSL/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/rsa.h -------------------------------------------------------------------------------- /iOS/OpenSSL/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/safestack.h -------------------------------------------------------------------------------- /iOS/OpenSSL/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/seed.h -------------------------------------------------------------------------------- /iOS/OpenSSL/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/sha.h -------------------------------------------------------------------------------- /iOS/OpenSSL/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/srp.h -------------------------------------------------------------------------------- /iOS/OpenSSL/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/srtp.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ssl.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ssl2.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ssl23.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ssl3.h -------------------------------------------------------------------------------- /iOS/OpenSSL/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/stack.h -------------------------------------------------------------------------------- /iOS/OpenSSL/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/symhacks.h -------------------------------------------------------------------------------- /iOS/OpenSSL/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/tls1.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ts.h -------------------------------------------------------------------------------- /iOS/OpenSSL/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/txt_db.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ui.h -------------------------------------------------------------------------------- /iOS/OpenSSL/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/ui_compat.h -------------------------------------------------------------------------------- /iOS/OpenSSL/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/whrlpool.h -------------------------------------------------------------------------------- /iOS/OpenSSL/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/x509.h -------------------------------------------------------------------------------- /iOS/OpenSSL/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/x509_vfy.h -------------------------------------------------------------------------------- /iOS/OpenSSL/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/OpenSSL/x509v3.h -------------------------------------------------------------------------------- /iOS/Source/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/Source/Assets.xcassets/IAP-close_button-pressed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Assets.xcassets/IAP-close_button-pressed.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Source/Assets.xcassets/IAP-close_button-pressed.imageset/IAP-close_button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Assets.xcassets/IAP-close_button-pressed.imageset/IAP-close_button-pressed.png -------------------------------------------------------------------------------- /iOS/Source/Assets.xcassets/IAP-close_button-pressed.imageset/IAP-close_button-pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Assets.xcassets/IAP-close_button-pressed.imageset/IAP-close_button-pressed@2x.png -------------------------------------------------------------------------------- /iOS/Source/Assets.xcassets/IAP-close_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Assets.xcassets/IAP-close_button.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Source/Assets.xcassets/IAP-close_button.imageset/IAP-close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Assets.xcassets/IAP-close_button.imageset/IAP-close_button.png -------------------------------------------------------------------------------- /iOS/Source/Assets.xcassets/IAP-close_button.imageset/IAP-close_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Assets.xcassets/IAP-close_button.imageset/IAP-close_button@2x.png -------------------------------------------------------------------------------- /iOS/Source/Extensions/NotificationCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Extensions/NotificationCenter.swift -------------------------------------------------------------------------------- /iOS/Source/Extensions/UIApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Extensions/UIApplication.swift -------------------------------------------------------------------------------- /iOS/Source/Extensions/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Extensions/UIColor.swift -------------------------------------------------------------------------------- /iOS/Source/Extensions/UIFont.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Extensions/UIFont.swift -------------------------------------------------------------------------------- /iOS/Source/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Extensions/UIImage.swift -------------------------------------------------------------------------------- /iOS/Source/IAP-iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/IAP-iOS.swift -------------------------------------------------------------------------------- /iOS/Source/IAPDialog.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/IAPDialog.storyboard -------------------------------------------------------------------------------- /iOS/Source/IAPDialogCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/IAPDialogCell.swift -------------------------------------------------------------------------------- /iOS/Source/IAPDialogCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/IAPDialogCell.xib -------------------------------------------------------------------------------- /iOS/Source/IAPDialogViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/IAPDialogViewController.swift -------------------------------------------------------------------------------- /iOS/Source/Resources/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/Resources/Localizable.strings -------------------------------------------------------------------------------- /iOS/Source/RoundedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/iOS/Source/RoundedButton.swift -------------------------------------------------------------------------------- /releaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/IAPKit/HEAD/releaseNotes.md --------------------------------------------------------------------------------