├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── actions │ └── setup │ │ └── action.yml ├── stale.yml └── workflows │ ├── ci-android.yml │ ├── ci-example-expo.yml │ ├── ci-ios.yml │ ├── ci-library.yml │ ├── ci-lint.yml │ ├── ci-test.yml │ ├── deploy-docs.yml │ └── deploy.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .markdownlint.json ├── .npmignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.js ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .watchmanconfig ├── .yarn └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── GEMINI.md ├── LICENSE.md ├── NitroIap.podspec ├── PR_SUMMARY.md ├── README.md ├── android ├── CMakeLists.txt ├── build.gradle ├── consumer-rules.pro ├── fix-prefab.gradle ├── gradle.properties └── src │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ └── cpp-adapter.cpp │ └── java │ │ └── com │ │ └── margelo │ │ └── nitro │ │ └── iap │ │ ├── HybridRnIap.kt │ │ ├── NitroIapPackage.java │ │ └── RnIapLog.kt │ └── test │ └── java │ └── com │ └── margelo │ └── nitro │ └── iap │ └── OpenIapExceptionTest.kt ├── app.plugin.js ├── babel.config.js ├── codecov.yml ├── commitlint.config.js ├── docs ├── .eslintrc.js ├── .gitignore ├── .markdownlint.json ├── .vscode │ └── settings.json ├── CODECOV.md ├── CONVENTIONS.md ├── README.md ├── blog │ ├── 2025-09-03-release-14.0.0.md │ ├── 2025-09-03-welcome.md │ ├── 2025-09-06-release-14.1.0.md │ ├── 2025-09-10-release-14.2.0.md │ ├── 2025-09-13-release-14.3.0.md │ ├── 2025-09-22-release-14.4.0.md │ ├── 2025-10-04-release-14.4.12.md │ ├── 2025-10-05-release-14.4.12-alternative-billing.md │ ├── 2025-10-28-horizon-os-support.md │ ├── 2025-12-09-release-14.5.0-iapkit.md │ ├── authors.yml │ └── tags.yml ├── bun.lock ├── docs │ ├── api │ │ ├── error-codes.md │ │ ├── error-handling.md │ │ ├── index.md │ │ ├── methods │ │ │ ├── _category_.json │ │ │ ├── core-methods.md │ │ │ └── listeners.md │ │ ├── types.md │ │ └── use-iap.md │ ├── examples │ │ ├── _category_.json │ │ ├── alternative-billing.md │ │ ├── available-purchases.md │ │ ├── offer-code.md │ │ ├── purchase-flow.md │ │ └── subscription-flow.md │ ├── getting-started │ │ ├── installation.md │ │ ├── setup-android.md │ │ ├── setup-horizon.md │ │ └── setup-ios.md │ ├── guides │ │ ├── _category_.json │ │ ├── alternative-billing.md │ │ ├── error-handling.md │ │ ├── expo-plugin.md │ │ ├── faq.md │ │ ├── lifecycle.md │ │ ├── offer-code-redemption.md │ │ ├── purchases.md │ │ ├── subscription-offers.md │ │ ├── subscription-validation.md │ │ ├── support.md │ │ └── troubleshooting.md │ ├── installation.md │ ├── intro.md │ └── sponsors.md ├── docusaurus.config.ts ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ ├── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── SponsorSection │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ ├── pages │ │ ├── index.tsx │ │ ├── landing.module.css │ │ └── landing.tsx │ └── uis │ │ ├── GreatFrontEndBanner.tsx │ │ └── GreatFrontEndTopFixed.tsx ├── static │ ├── .nojekyll │ ├── img │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── greatfrontend-js.gif │ │ ├── horizon.png │ │ ├── iapkit.png │ │ ├── icon.png │ │ ├── lifecycle.svg │ │ ├── logo.png │ │ └── og-image.png │ └── site.webmanifest ├── tsconfig.json ├── versioned_docs │ ├── version-14.1 │ │ ├── api │ │ │ ├── error-codes.md │ │ │ ├── index.md │ │ │ ├── methods │ │ │ │ ├── _category_.json │ │ │ │ ├── core-methods.md │ │ │ │ └── listeners.md │ │ │ ├── types.md │ │ │ └── use-iap.md │ │ ├── examples │ │ │ ├── _category_.json │ │ │ ├── basic-store.md │ │ │ ├── complete-impl.md │ │ │ └── subscription-manager.md │ │ ├── getting-started │ │ │ ├── setup-android.md │ │ │ └── setup-ios.md │ │ ├── guides │ │ │ ├── _category_.json │ │ │ ├── error-handling.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── ios-hot-reload-fix.md │ │ │ ├── ios-subscription-offers.md │ │ │ ├── lifecycle.md │ │ │ ├── offer-code-redemption.md │ │ │ ├── purchases.md │ │ │ ├── support.md │ │ │ └── troubleshooting.md │ │ ├── installation.md │ │ ├── intro.md │ │ └── sponsors.md │ ├── version-14.2 │ │ ├── api │ │ │ ├── error-codes.md │ │ │ ├── index.md │ │ │ ├── methods │ │ │ │ ├── _category_.json │ │ │ │ ├── core-methods.md │ │ │ │ └── listeners.md │ │ │ ├── types.md │ │ │ └── use-iap.md │ │ ├── examples │ │ │ ├── _category_.json │ │ │ ├── basic-store.md │ │ │ ├── complete-impl.md │ │ │ └── subscription-manager.md │ │ ├── getting-started │ │ │ ├── setup-android.md │ │ │ └── setup-ios.md │ │ ├── guides │ │ │ ├── _category_.json │ │ │ ├── error-handling.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── ios-hot-reload-fix.md │ │ │ ├── ios-subscription-offers.md │ │ │ ├── lifecycle.md │ │ │ ├── offer-code-redemption.md │ │ │ ├── purchases.md │ │ │ ├── support.md │ │ │ └── troubleshooting.md │ │ ├── installation.md │ │ ├── intro.md │ │ └── sponsors.md │ ├── version-14.3 │ │ ├── api │ │ │ ├── error-codes.md │ │ │ ├── index.md │ │ │ ├── methods │ │ │ │ ├── _category_.json │ │ │ │ ├── core-methods.md │ │ │ │ └── listeners.md │ │ │ ├── types.md │ │ │ └── use-iap.md │ │ ├── examples │ │ │ ├── _category_.json │ │ │ ├── basic-store.md │ │ │ ├── complete-impl.md │ │ │ └── subscription-manager.md │ │ ├── getting-started │ │ │ ├── setup-android.md │ │ │ └── setup-ios.md │ │ ├── guides │ │ │ ├── _category_.json │ │ │ ├── error-handling.md │ │ │ ├── faq.md │ │ │ ├── getting-started.md │ │ │ ├── ios-hot-reload-fix.md │ │ │ ├── ios-subscription-offers.md │ │ │ ├── lifecycle.md │ │ │ ├── offer-code-redemption.md │ │ │ ├── purchases.md │ │ │ ├── support.md │ │ │ └── troubleshooting.md │ │ ├── installation.md │ │ ├── intro.md │ │ ├── sponsors.md │ │ └── versioned_sidebars │ │ │ └── version-14.3-sidebars.ts │ └── version-14.4 │ │ ├── api │ │ ├── error-codes.md │ │ ├── error-handling.md │ │ ├── index.md │ │ ├── methods │ │ │ ├── _category_.json │ │ │ ├── core-methods.md │ │ │ └── listeners.md │ │ ├── types.md │ │ └── use-iap.md │ │ ├── examples │ │ ├── _category_.json │ │ ├── alternative-billing.md │ │ ├── available-purchases.md │ │ ├── offer-code.md │ │ ├── purchase-flow.md │ │ └── subscription-flow.md │ │ ├── getting-started │ │ ├── installation.md │ │ ├── setup-android.md │ │ ├── setup-horizon.md │ │ └── setup-ios.md │ │ ├── guides │ │ ├── _category_.json │ │ ├── alternative-billing.md │ │ ├── error-handling.md │ │ ├── expo-plugin.md │ │ ├── faq.md │ │ ├── lifecycle.md │ │ ├── offer-code-redemption.md │ │ ├── purchases.md │ │ ├── subscription-offers.md │ │ ├── subscription-validation.md │ │ ├── support.md │ │ └── troubleshooting.md │ │ ├── installation.md │ │ ├── intro.md │ │ └── sponsors.md ├── versioned_sidebars │ ├── version-14.1-sidebars.json │ ├── version-14.2-sidebars.json │ ├── version-14.3-sidebars.json │ └── version-14.4-sidebars.json └── versions.json ├── example-expo ├── .gitignore ├── .vscode │ └── settings.json ├── App.tsx ├── README.md ├── app.config.ts ├── app │ ├── _layout.tsx │ ├── all-products.tsx │ ├── alternative-billing.tsx │ ├── available-purchases.tsx │ ├── index.tsx │ ├── offer-code.tsx │ ├── purchase-flow.tsx │ ├── subscription-flow.tsx │ └── test.tsx ├── assets │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ └── images │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ ├── partial-react-logo.png │ │ ├── react-logo.png │ │ ├── react-logo@2x.png │ │ ├── react-logo@3x.png │ │ └── splash-icon.png ├── bun.lock ├── components │ ├── Collapsible.tsx │ ├── ExternalLink.tsx │ ├── HapticTab.tsx │ ├── HelloWave.tsx │ ├── Loading.tsx │ ├── ParallaxScrollView.tsx │ ├── PurchaseDetails.tsx │ ├── PurchaseSummaryRow.tsx │ ├── ThemedText.tsx │ ├── ThemedView.tsx │ └── ui │ │ ├── IconSymbol.ios.tsx │ │ ├── IconSymbol.tsx │ │ ├── TabBarBackground.ios.tsx │ │ └── TabBarBackground.tsx ├── constants │ ├── Colors.ts │ └── products.ts ├── contexts │ └── DataModalContext.tsx ├── eslint.config.js ├── hooks │ ├── useColorScheme.ts │ ├── useColorScheme.web.ts │ └── useThemeColor.ts ├── package.json ├── scripts │ ├── copy-screens.sh │ ├── expo-setup.sh │ └── reset-project.js ├── tsconfig.json ├── utils │ └── buildPurchaseRows.ts └── yarn.lock ├── example ├── .bundle │ └── config ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .husky │ └── pre-commit ├── .npmrc ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── README.md ├── __tests__ │ ├── RnIap.test.tsx │ └── screens │ │ ├── AvailablePurchases.test.tsx │ │ ├── Home.test.tsx │ │ ├── OfferCode.test.tsx │ │ ├── PurchaseFlow.test.tsx │ │ └── SubscriptionFlow.test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── dev │ │ │ │ └── hyo │ │ │ │ └── martie │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── .xcode.env │ ├── Podfile │ ├── Podfile.lock │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ └── contents.xcworkspacedata │ └── example │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── PrivacyInfo.xcprivacy ├── jest.config.js ├── jest.setup.js ├── metro.config.js ├── navigation │ └── index.tsx ├── package.json ├── react-native.config.js ├── screens │ ├── AllProducts.tsx │ ├── AlternativeBilling.tsx │ ├── AvailablePurchases.tsx │ ├── Home.tsx │ ├── OfferCode.tsx │ ├── PurchaseFlow.tsx │ └── SubscriptionFlow.tsx ├── src │ ├── components │ │ ├── Loading.tsx │ │ ├── PurchaseDetails.tsx │ │ └── PurchaseSummaryRow.tsx │ ├── contexts │ │ └── DataModalContext.tsx │ ├── hooks │ │ └── useVerificationMethod.ts │ ├── types │ │ └── env.d.ts │ └── utils │ │ ├── buildPurchaseRows.ts │ │ ├── constants.ts │ │ └── errorUtils.ts ├── test-iap.js └── tsconfig.json ├── ios ├── Bridge.h ├── HybridRnIap.swift ├── RnIapHelper.swift └── RnIapLog.swift ├── jest.config.js ├── nitro.json ├── openiap-versions.json ├── package.json ├── plugin ├── __tests__ │ ├── fixtures │ │ └── buildGradleFiles.ts │ ├── withIAP-android.test.ts │ └── withIAP-test.ts ├── src │ └── withIAP.ts └── tsconfig.json ├── scripts ├── check-nitro-versions.ts ├── ci-check.sh └── update-types.mjs ├── src ├── __tests__ │ ├── hooks │ │ └── useIAP.test.ts │ ├── index.test.ts │ └── utils │ │ ├── error.test.ts │ │ ├── errorMapping.test.ts │ │ └── type-bridge.test.ts ├── hooks │ └── useIAP.ts ├── index.ts ├── specs │ └── RnIap.nitro.ts ├── types.ts ├── types │ └── react-test-renderer.d.ts ├── utils.ts └── utils │ ├── __tests__ │ └── errorMapping.test.ts │ ├── debug.ts │ ├── error.ts │ ├── errorMapping.ts │ ├── purchase.ts │ └── type-bridge.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: hyochan -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/ci-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/workflows/ci-android.yml -------------------------------------------------------------------------------- /.github/workflows/ci-example-expo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/workflows/ci-example-expo.yml -------------------------------------------------------------------------------- /.github/workflows/ci-ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/workflows/ci-ios.yml -------------------------------------------------------------------------------- /.github/workflows/ci-library.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/workflows/ci-library.yml -------------------------------------------------------------------------------- /.github/workflows/ci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/workflows/ci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/ci-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/workflows/ci-test.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.19.0 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | src/types.ts 2 | docs/** 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- 1 | CLAUDE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- 1 | /Users/crossplatformkorea/Github/hyochan/react-native-iap/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NitroIap.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/NitroIap.podspec -------------------------------------------------------------------------------- /PR_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/PR_SUMMARY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/README.md -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/consumer-rules.pro -------------------------------------------------------------------------------- /android/fix-prefab.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/fix-prefab.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/cpp/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/src/main/cpp/cpp-adapter.cpp -------------------------------------------------------------------------------- /android/src/main/java/com/margelo/nitro/iap/HybridRnIap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/src/main/java/com/margelo/nitro/iap/HybridRnIap.kt -------------------------------------------------------------------------------- /android/src/main/java/com/margelo/nitro/iap/NitroIapPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/src/main/java/com/margelo/nitro/iap/NitroIapPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/margelo/nitro/iap/RnIapLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/src/main/java/com/margelo/nitro/iap/RnIapLog.kt -------------------------------------------------------------------------------- /android/src/test/java/com/margelo/nitro/iap/OpenIapExceptionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/android/src/test/java/com/margelo/nitro/iap/OpenIapExceptionTest.kt -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./plugin/build/withIAP.js'); 2 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/babel.config.js -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/codecov.yml -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/.eslintrc.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/.markdownlint.json -------------------------------------------------------------------------------- /docs/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["hyochan"] 3 | } 4 | -------------------------------------------------------------------------------- /docs/CODECOV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/CODECOV.md -------------------------------------------------------------------------------- /docs/CONVENTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/CONVENTIONS.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/blog/2025-09-03-release-14.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-09-03-release-14.0.0.md -------------------------------------------------------------------------------- /docs/blog/2025-09-03-welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-09-03-welcome.md -------------------------------------------------------------------------------- /docs/blog/2025-09-06-release-14.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-09-06-release-14.1.0.md -------------------------------------------------------------------------------- /docs/blog/2025-09-10-release-14.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-09-10-release-14.2.0.md -------------------------------------------------------------------------------- /docs/blog/2025-09-13-release-14.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-09-13-release-14.3.0.md -------------------------------------------------------------------------------- /docs/blog/2025-09-22-release-14.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-09-22-release-14.4.0.md -------------------------------------------------------------------------------- /docs/blog/2025-10-04-release-14.4.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-10-04-release-14.4.12.md -------------------------------------------------------------------------------- /docs/blog/2025-10-05-release-14.4.12-alternative-billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-10-05-release-14.4.12-alternative-billing.md -------------------------------------------------------------------------------- /docs/blog/2025-10-28-horizon-os-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-10-28-horizon-os-support.md -------------------------------------------------------------------------------- /docs/blog/2025-12-09-release-14.5.0-iapkit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/2025-12-09-release-14.5.0-iapkit.md -------------------------------------------------------------------------------- /docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/authors.yml -------------------------------------------------------------------------------- /docs/blog/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/blog/tags.yml -------------------------------------------------------------------------------- /docs/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/bun.lock -------------------------------------------------------------------------------- /docs/docs/api/error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/api/error-codes.md -------------------------------------------------------------------------------- /docs/docs/api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/api/error-handling.md -------------------------------------------------------------------------------- /docs/docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/api/index.md -------------------------------------------------------------------------------- /docs/docs/api/methods/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/api/methods/_category_.json -------------------------------------------------------------------------------- /docs/docs/api/methods/core-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/api/methods/core-methods.md -------------------------------------------------------------------------------- /docs/docs/api/methods/listeners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/api/methods/listeners.md -------------------------------------------------------------------------------- /docs/docs/api/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/api/types.md -------------------------------------------------------------------------------- /docs/docs/api/use-iap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/api/use-iap.md -------------------------------------------------------------------------------- /docs/docs/examples/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/examples/_category_.json -------------------------------------------------------------------------------- /docs/docs/examples/alternative-billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/examples/alternative-billing.md -------------------------------------------------------------------------------- /docs/docs/examples/available-purchases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/examples/available-purchases.md -------------------------------------------------------------------------------- /docs/docs/examples/offer-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/examples/offer-code.md -------------------------------------------------------------------------------- /docs/docs/examples/purchase-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/examples/purchase-flow.md -------------------------------------------------------------------------------- /docs/docs/examples/subscription-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/examples/subscription-flow.md -------------------------------------------------------------------------------- /docs/docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/docs/getting-started/setup-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/getting-started/setup-android.md -------------------------------------------------------------------------------- /docs/docs/getting-started/setup-horizon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/getting-started/setup-horizon.md -------------------------------------------------------------------------------- /docs/docs/getting-started/setup-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/getting-started/setup-ios.md -------------------------------------------------------------------------------- /docs/docs/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/_category_.json -------------------------------------------------------------------------------- /docs/docs/guides/alternative-billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/alternative-billing.md -------------------------------------------------------------------------------- /docs/docs/guides/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/error-handling.md -------------------------------------------------------------------------------- /docs/docs/guides/expo-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/expo-plugin.md -------------------------------------------------------------------------------- /docs/docs/guides/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/faq.md -------------------------------------------------------------------------------- /docs/docs/guides/lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/lifecycle.md -------------------------------------------------------------------------------- /docs/docs/guides/offer-code-redemption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/offer-code-redemption.md -------------------------------------------------------------------------------- /docs/docs/guides/purchases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/purchases.md -------------------------------------------------------------------------------- /docs/docs/guides/subscription-offers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/subscription-offers.md -------------------------------------------------------------------------------- /docs/docs/guides/subscription-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/subscription-validation.md -------------------------------------------------------------------------------- /docs/docs/guides/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/support.md -------------------------------------------------------------------------------- /docs/docs/guides/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/guides/troubleshooting.md -------------------------------------------------------------------------------- /docs/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/installation.md -------------------------------------------------------------------------------- /docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/intro.md -------------------------------------------------------------------------------- /docs/docs/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docs/sponsors.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/SponsorSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/components/SponsorSection/index.tsx -------------------------------------------------------------------------------- /docs/src/components/SponsorSection/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/components/SponsorSection/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/landing.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/pages/landing.module.css -------------------------------------------------------------------------------- /docs/src/pages/landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/pages/landing.tsx -------------------------------------------------------------------------------- /docs/src/uis/GreatFrontEndBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/uis/GreatFrontEndBanner.tsx -------------------------------------------------------------------------------- /docs/src/uis/GreatFrontEndTopFixed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/src/uis/GreatFrontEndTopFixed.tsx -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/static/img/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/static/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/static/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/favicon-16x16.png -------------------------------------------------------------------------------- /docs/static/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/favicon-32x32.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/favicon.png -------------------------------------------------------------------------------- /docs/static/img/greatfrontend-js.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/greatfrontend-js.gif -------------------------------------------------------------------------------- /docs/static/img/horizon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/horizon.png -------------------------------------------------------------------------------- /docs/static/img/iapkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/iapkit.png -------------------------------------------------------------------------------- /docs/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/icon.png -------------------------------------------------------------------------------- /docs/static/img/lifecycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/lifecycle.svg -------------------------------------------------------------------------------- /docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/logo.png -------------------------------------------------------------------------------- /docs/static/img/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/img/og-image.png -------------------------------------------------------------------------------- /docs/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/static/site.webmanifest -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/api/error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/api/error-codes.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/api/index.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/api/methods/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/api/methods/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/api/methods/core-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/api/methods/core-methods.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/api/methods/listeners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/api/methods/listeners.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/api/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/api/types.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/api/use-iap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/api/use-iap.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/examples/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/examples/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/examples/basic-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/examples/basic-store.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/examples/complete-impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/examples/complete-impl.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/examples/subscription-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/examples/subscription-manager.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/getting-started/setup-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/getting-started/setup-android.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/getting-started/setup-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/getting-started/setup-ios.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/error-handling.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/ios-hot-reload-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/ios-hot-reload-fix.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/ios-subscription-offers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/ios-subscription-offers.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/lifecycle.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/offer-code-redemption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/offer-code-redemption.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/purchases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/purchases.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/support.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/guides/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/guides/troubleshooting.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/installation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.1/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.1/sponsors.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/api/error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/api/error-codes.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/api/index.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/api/methods/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/api/methods/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/api/methods/core-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/api/methods/core-methods.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/api/methods/listeners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/api/methods/listeners.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/api/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/api/types.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/api/use-iap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/api/use-iap.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/examples/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/examples/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/examples/basic-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/examples/basic-store.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/examples/complete-impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/examples/complete-impl.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/examples/subscription-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/examples/subscription-manager.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/getting-started/setup-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/getting-started/setup-android.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/getting-started/setup-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/getting-started/setup-ios.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/error-handling.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/ios-hot-reload-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/ios-hot-reload-fix.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/ios-subscription-offers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/ios-subscription-offers.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/lifecycle.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/offer-code-redemption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/offer-code-redemption.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/purchases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/purchases.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/support.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/guides/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/guides/troubleshooting.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/installation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.2/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.2/sponsors.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/api/error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/api/error-codes.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/api/index.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/api/methods/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/api/methods/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/api/methods/core-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/api/methods/core-methods.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/api/methods/listeners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/api/methods/listeners.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/api/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/api/types.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/api/use-iap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/api/use-iap.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/examples/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/examples/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/examples/basic-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/examples/basic-store.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/examples/complete-impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/examples/complete-impl.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/examples/subscription-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/examples/subscription-manager.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/getting-started/setup-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/getting-started/setup-android.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/getting-started/setup-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/getting-started/setup-ios.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/error-handling.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/getting-started.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/ios-hot-reload-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/ios-hot-reload-fix.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/ios-subscription-offers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/ios-subscription-offers.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/lifecycle.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/offer-code-redemption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/offer-code-redemption.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/purchases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/purchases.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/support.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/guides/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/guides/troubleshooting.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/installation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/sponsors.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.3/versioned_sidebars/version-14.3-sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.3/versioned_sidebars/version-14.3-sidebars.ts -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/api/error-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/api/error-codes.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/api/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/api/error-handling.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/api/index.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/api/methods/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/api/methods/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/api/methods/core-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/api/methods/core-methods.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/api/methods/listeners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/api/methods/listeners.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/api/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/api/types.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/api/use-iap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/api/use-iap.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/examples/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/examples/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/examples/alternative-billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/examples/alternative-billing.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/examples/available-purchases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/examples/available-purchases.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/examples/offer-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/examples/offer-code.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/examples/purchase-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/examples/purchase-flow.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/examples/subscription-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/examples/subscription-flow.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/getting-started/installation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/getting-started/setup-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/getting-started/setup-android.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/getting-started/setup-horizon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/getting-started/setup-horizon.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/getting-started/setup-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/getting-started/setup-ios.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/alternative-billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/alternative-billing.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/error-handling.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/expo-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/expo-plugin.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/faq.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/lifecycle.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/offer-code-redemption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/offer-code-redemption.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/purchases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/purchases.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/subscription-offers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/subscription-offers.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/subscription-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/subscription-validation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/support.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/guides/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/guides/troubleshooting.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/installation.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-14.4/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_docs/version-14.4/sponsors.md -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-14.1-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_sidebars/version-14.1-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-14.2-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_sidebars/version-14.2-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-14.3-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_sidebars/version-14.3-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-14.4-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versioned_sidebars/version-14.4-sidebars.json -------------------------------------------------------------------------------- /docs/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/docs/versions.json -------------------------------------------------------------------------------- /example-expo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/.gitignore -------------------------------------------------------------------------------- /example-expo/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/.vscode/settings.json -------------------------------------------------------------------------------- /example-expo/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/App.tsx -------------------------------------------------------------------------------- /example-expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/README.md -------------------------------------------------------------------------------- /example-expo/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app.config.ts -------------------------------------------------------------------------------- /example-expo/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app/_layout.tsx -------------------------------------------------------------------------------- /example-expo/app/all-products.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app/all-products.tsx -------------------------------------------------------------------------------- /example-expo/app/alternative-billing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app/alternative-billing.tsx -------------------------------------------------------------------------------- /example-expo/app/available-purchases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app/available-purchases.tsx -------------------------------------------------------------------------------- /example-expo/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app/index.tsx -------------------------------------------------------------------------------- /example-expo/app/offer-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app/offer-code.tsx -------------------------------------------------------------------------------- /example-expo/app/purchase-flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app/purchase-flow.tsx -------------------------------------------------------------------------------- /example-expo/app/subscription-flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app/subscription-flow.tsx -------------------------------------------------------------------------------- /example-expo/app/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/app/test.tsx -------------------------------------------------------------------------------- /example-expo/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /example-expo/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /example-expo/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/assets/images/favicon.png -------------------------------------------------------------------------------- /example-expo/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/assets/images/icon.png -------------------------------------------------------------------------------- /example-expo/assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /example-expo/assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/assets/images/react-logo.png -------------------------------------------------------------------------------- /example-expo/assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /example-expo/assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /example-expo/assets/images/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/assets/images/splash-icon.png -------------------------------------------------------------------------------- /example-expo/bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/bun.lock -------------------------------------------------------------------------------- /example-expo/components/Collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/Collapsible.tsx -------------------------------------------------------------------------------- /example-expo/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/ExternalLink.tsx -------------------------------------------------------------------------------- /example-expo/components/HapticTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/HapticTab.tsx -------------------------------------------------------------------------------- /example-expo/components/HelloWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/HelloWave.tsx -------------------------------------------------------------------------------- /example-expo/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/Loading.tsx -------------------------------------------------------------------------------- /example-expo/components/ParallaxScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/ParallaxScrollView.tsx -------------------------------------------------------------------------------- /example-expo/components/PurchaseDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/PurchaseDetails.tsx -------------------------------------------------------------------------------- /example-expo/components/PurchaseSummaryRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/PurchaseSummaryRow.tsx -------------------------------------------------------------------------------- /example-expo/components/ThemedText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/ThemedText.tsx -------------------------------------------------------------------------------- /example-expo/components/ThemedView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/ThemedView.tsx -------------------------------------------------------------------------------- /example-expo/components/ui/IconSymbol.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/ui/IconSymbol.ios.tsx -------------------------------------------------------------------------------- /example-expo/components/ui/IconSymbol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/ui/IconSymbol.tsx -------------------------------------------------------------------------------- /example-expo/components/ui/TabBarBackground.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/ui/TabBarBackground.ios.tsx -------------------------------------------------------------------------------- /example-expo/components/ui/TabBarBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/components/ui/TabBarBackground.tsx -------------------------------------------------------------------------------- /example-expo/constants/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/constants/Colors.ts -------------------------------------------------------------------------------- /example-expo/constants/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/constants/products.ts -------------------------------------------------------------------------------- /example-expo/contexts/DataModalContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/contexts/DataModalContext.tsx -------------------------------------------------------------------------------- /example-expo/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/eslint.config.js -------------------------------------------------------------------------------- /example-expo/hooks/useColorScheme.ts: -------------------------------------------------------------------------------- 1 | export {useColorScheme} from 'react-native'; 2 | -------------------------------------------------------------------------------- /example-expo/hooks/useColorScheme.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/hooks/useColorScheme.web.ts -------------------------------------------------------------------------------- /example-expo/hooks/useThemeColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/hooks/useThemeColor.ts -------------------------------------------------------------------------------- /example-expo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/package.json -------------------------------------------------------------------------------- /example-expo/scripts/copy-screens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/scripts/copy-screens.sh -------------------------------------------------------------------------------- /example-expo/scripts/expo-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/scripts/expo-setup.sh -------------------------------------------------------------------------------- /example-expo/scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/scripts/reset-project.js -------------------------------------------------------------------------------- /example-expo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/tsconfig.json -------------------------------------------------------------------------------- /example-expo/utils/buildPurchaseRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example-expo/utils/buildPurchaseRows.ts -------------------------------------------------------------------------------- /example-expo/yarn.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/.bundle/config -------------------------------------------------------------------------------- /example/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/.env.example -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/.eslintrc.js -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/.husky/pre-commit -------------------------------------------------------------------------------- /example/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/.npmrc -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/.prettierrc.js -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/Gemfile.lock -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/README.md -------------------------------------------------------------------------------- /example/__tests__/RnIap.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/__tests__/RnIap.test.tsx -------------------------------------------------------------------------------- /example/__tests__/screens/AvailablePurchases.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/__tests__/screens/AvailablePurchases.test.tsx -------------------------------------------------------------------------------- /example/__tests__/screens/Home.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/__tests__/screens/Home.test.tsx -------------------------------------------------------------------------------- /example/__tests__/screens/OfferCode.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/__tests__/screens/OfferCode.test.tsx -------------------------------------------------------------------------------- /example/__tests__/screens/PurchaseFlow.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/__tests__/screens/PurchaseFlow.test.tsx -------------------------------------------------------------------------------- /example/__tests__/screens/SubscriptionFlow.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/__tests__/screens/SubscriptionFlow.test.tsx -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/dev/hyo/martie/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/java/dev/hyo/martie/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/dev/hyo/martie/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/java/dev/hyo/martie/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/example/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/example/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/ios/example/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/jest.config.js -------------------------------------------------------------------------------- /example/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/jest.setup.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/navigation/index.tsx -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/package.json -------------------------------------------------------------------------------- /example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/react-native.config.js -------------------------------------------------------------------------------- /example/screens/AllProducts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/screens/AllProducts.tsx -------------------------------------------------------------------------------- /example/screens/AlternativeBilling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/screens/AlternativeBilling.tsx -------------------------------------------------------------------------------- /example/screens/AvailablePurchases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/screens/AvailablePurchases.tsx -------------------------------------------------------------------------------- /example/screens/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/screens/Home.tsx -------------------------------------------------------------------------------- /example/screens/OfferCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/screens/OfferCode.tsx -------------------------------------------------------------------------------- /example/screens/PurchaseFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/screens/PurchaseFlow.tsx -------------------------------------------------------------------------------- /example/screens/SubscriptionFlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/screens/SubscriptionFlow.tsx -------------------------------------------------------------------------------- /example/src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/src/components/Loading.tsx -------------------------------------------------------------------------------- /example/src/components/PurchaseDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/src/components/PurchaseDetails.tsx -------------------------------------------------------------------------------- /example/src/components/PurchaseSummaryRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/src/components/PurchaseSummaryRow.tsx -------------------------------------------------------------------------------- /example/src/contexts/DataModalContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/src/contexts/DataModalContext.tsx -------------------------------------------------------------------------------- /example/src/hooks/useVerificationMethod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/src/hooks/useVerificationMethod.ts -------------------------------------------------------------------------------- /example/src/types/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@env' { 2 | export const IAPKIT_API_KEY: string; 3 | } 4 | -------------------------------------------------------------------------------- /example/src/utils/buildPurchaseRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/src/utils/buildPurchaseRows.ts -------------------------------------------------------------------------------- /example/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/src/utils/constants.ts -------------------------------------------------------------------------------- /example/src/utils/errorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/src/utils/errorUtils.ts -------------------------------------------------------------------------------- /example/test-iap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/test-iap.js -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /ios/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/ios/Bridge.h -------------------------------------------------------------------------------- /ios/HybridRnIap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/ios/HybridRnIap.swift -------------------------------------------------------------------------------- /ios/RnIapHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/ios/RnIapHelper.swift -------------------------------------------------------------------------------- /ios/RnIapLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/ios/RnIapLog.swift -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/jest.config.js -------------------------------------------------------------------------------- /nitro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/nitro.json -------------------------------------------------------------------------------- /openiap-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/openiap-versions.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/package.json -------------------------------------------------------------------------------- /plugin/__tests__/fixtures/buildGradleFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/plugin/__tests__/fixtures/buildGradleFiles.ts -------------------------------------------------------------------------------- /plugin/__tests__/withIAP-android.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/plugin/__tests__/withIAP-android.test.ts -------------------------------------------------------------------------------- /plugin/__tests__/withIAP-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/plugin/__tests__/withIAP-test.ts -------------------------------------------------------------------------------- /plugin/src/withIAP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/plugin/src/withIAP.ts -------------------------------------------------------------------------------- /plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/plugin/tsconfig.json -------------------------------------------------------------------------------- /scripts/check-nitro-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/scripts/check-nitro-versions.ts -------------------------------------------------------------------------------- /scripts/ci-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/scripts/ci-check.sh -------------------------------------------------------------------------------- /scripts/update-types.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/scripts/update-types.mjs -------------------------------------------------------------------------------- /src/__tests__/hooks/useIAP.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/__tests__/hooks/useIAP.test.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/__tests__/utils/error.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/__tests__/utils/error.test.ts -------------------------------------------------------------------------------- /src/__tests__/utils/errorMapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/__tests__/utils/errorMapping.test.ts -------------------------------------------------------------------------------- /src/__tests__/utils/type-bridge.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/__tests__/utils/type-bridge.test.ts -------------------------------------------------------------------------------- /src/hooks/useIAP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/hooks/useIAP.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/specs/RnIap.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/specs/RnIap.nitro.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/types/react-test-renderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/types/react-test-renderer.d.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/utils/__tests__/errorMapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/utils/__tests__/errorMapping.test.ts -------------------------------------------------------------------------------- /src/utils/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/utils/debug.ts -------------------------------------------------------------------------------- /src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/utils/error.ts -------------------------------------------------------------------------------- /src/utils/errorMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/utils/errorMapping.ts -------------------------------------------------------------------------------- /src/utils/purchase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/utils/purchase.ts -------------------------------------------------------------------------------- /src/utils/type-bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/src/utils/type-bridge.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyochan/react-native-iap/HEAD/yarn.lock --------------------------------------------------------------------------------