Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnjn committed Oct 8, 2018
1 parent b1bee07 commit 6d88787
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions browser-switch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 28
versionCode 7
versionName '0.1.6'
versionCode 8
versionName '0.2.0'
}
}

Expand Down

0 comments on commit 6d88787

Please sign in to comment.