From 26b45df32f754b8082f763a33095eb41dd3058ec Mon Sep 17 00:00:00 2001 From: hyochan Date: Sat, 22 Jun 2019 16:59:54 +0900 Subject: [PATCH] Bump version up to 3.1.0 - AndroidX migration. --- CHANGELOG.md | 3 +++ README.md | 6 ++++++ android/build.gradle | 2 +- package.json | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 011bf7297..4f9bb400f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ ## Changelogs +- **[3.1.0]** + + Androidx migration [#550](https://github.com/dooboolab/react-native-iap/pull/550) + + Upgrade example project to `react-native@0.60.0-rc.2` - **[3.0.1]** + Fixes for [#546](https://github.com/dooboolab/react-native-iap/issues/546) - **[3.0.0]** diff --git a/README.md b/README.md index 7599d13be..88cd05873 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,9 @@ > Checkout example code
![wjl0ak0fgj](https://user-images.githubusercontent.com/27461460/52619625-87aa8a80-2ee5-11e9-9aee-6691c34408f3.gif) +## Breaking Changes +* Migrated to Android X in `3.1.0`. Please check the [Migration Guide](#migration-guide). + ## Playstore & Itunnesconnect configuration - Please refer to [Blog](https://medium.com/@dooboolab/react-native-in-app-purchase-121622d26b67). @@ -86,6 +89,9 @@ https://github.com/dooboolab/react-native-iap ``` +## Migration Guide +To migrate to `3.1.0` you must migrate your Android app to Android X by following the [Migrating to AndroidX Guide](https://developer.android.com/jetpack/androidx/migrate). + ## Usage You can look in the RNIapExample folder to try the example. Below is basic implementation which is also provided in RNIapExample project. diff --git a/android/build.gradle b/android/build.gradle index e93948a33..509814100 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -9,7 +9,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:3.2.1' + classpath 'com.android.tools.build:gradle:3.3.1' } } diff --git a/package.json b/package.json index e9ca52d06..21a3eec75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-iap", - "version": "3.0.1", + "version": "3.1.0", "description": "React Native In App Purchase Module.", "main": "index.js", "types": "index.d.ts",