From 6d887875174cd93880b3261f6ca0d6b61e827983 Mon Sep 17 00:00:00 2001 From: quinnjn Date: Mon, 8 Oct 2018 14:27:58 -0700 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- browser-switch/build.gradle | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e3a2b3d..125d97f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # browser-switch-android Release Notes +## 0.2.0 + +* Using androidx 1.0.0 +* Migrate Fragment to `androidx.fragment.app.Fragment` + ## 0.1.6 * Update to SDK version 28 diff --git a/README.md b/README.md index f7974539..a935a3d1 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Add the library to your dependencies in your `build.gradle`: ```groovy dependencies { - compile 'com.braintreepayments:browser-switch:0.1.6' + compile 'com.braintreepayments:browser-switch:0.2.0' } ``` @@ -43,7 +43,7 @@ If these requirements are not met, an error will be returned and no browser swit ## Usage -`BrowserSwitchFragment` is an abstract `Fragment` that should be extended and used to start and +`BrowserSwitchFragment` is an abstract `androidx.fragment.app.Fragment` that should be extended and used to start and handle the response from a browser switch. The url scheme to use to return to your app can be retrieved using: diff --git a/browser-switch/build.gradle b/browser-switch/build.gradle index c376fd14..dd08c61f 100644 --- a/browser-switch/build.gradle +++ b/browser-switch/build.gradle @@ -10,8 +10,8 @@ android { defaultConfig { minSdkVersion 15 targetSdkVersion 28 - versionCode 7 - versionName '0.1.6' + versionCode 8 + versionName '0.2.0' } }