diff --git a/CHANGELOG.md b/CHANGELOG.md index 87d9bde82..04fe838c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ ## Changelogs -## 6.1.0 -Spliting Android app stores into Google Play and Amazon. They can now be accessed through different flavors +## 6.2.0 +Spliting Android app stores into Google Play and Amazon. They can now be accessed through different flavors [#1358](https://github.com/dooboolab/react-native-iap/pull/1358) + +Creates two variants: `play` and `amazon` and only uses the required code. + +NOTE: This would be a breaking change with a very simple fix described in the documentation. To add: `missingDimensionStrategy 'store', 'play'` `in build.gradle` ## 6.0.8 - [Android] Handle deffered proration in `purchaseUpdated` listener [#1357](https://github.com/dooboolab/react-native-iap/pull/1357) diff --git a/IapExample/IapExample-v0.0.1.tgz b/IapExample/IapExample-v0.0.1.tgz new file mode 100644 index 000000000..613d734be Binary files /dev/null and b/IapExample/IapExample-v0.0.1.tgz differ diff --git a/README.md b/README.md index 5230564e1..7f5169dbb 100644 --- a/README.md +++ b/README.md @@ -95,14 +95,11 @@ Quick News Breaking Changes ---------------- -- Migrated to AndroidX in `3.1.0`. Please check the [Migration Guide][a-migration-guide]. -- Recommended to use `3.2.0` or above for `react-native-iap@^3.0.0` users. - - Now, you should [acknowledge purchase][a-acknowledge-purchase-android] - with non-consumable and subscription purchase from `3.0.0`. - See more about [acknowledgePurchase][android-acknowledge-purchase]. - - If you are using version `^3.0.* < ^3.1.0`, please use `acknowledgePurchase` supported in `3.0.3`. - You can use method like `androidpublisher.purchases.subscriptions.acknowledge`. -- `3.4.0` introduces a similar flow to consumable purchases on iOS. You should update your code according to the recommended flow and pass `false` to `andDangerouslyFinishTransactionAutomatically` when calling`requestPurchase`. +[6.1.0] +- Creates two variants: `play` and `amazon` and only uses the required code. + ``` + NOTE: This would be a breaking change with a very simple fix described in the documentation. To add: `missingDimensionStrategy 'store', 'play'` `in build.gradle` + ``` Configuration of Google Play & iTunes Connect --------------------------------------------- diff --git a/package.json b/package.json index dd3d101b6..8e3bed11b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-iap", - "version": "6.1.0", + "version": "6.2.0", "description": "React Native In App Purchase Module.", "main": "index.ts", "types": "index.d.ts",