Skip to content

Commit

Permalink
Bumped version to 4.0.0, updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
kpmmmurphy committed Dec 3, 2018
1 parent d3f392c commit 567add1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log
All notable changes to this project will be documented in this file.

## 3.0.3 - 2/12/218
## 4.0.0 - 2/12/218
* Migrate to AndroidX
* Added support for Cutout/Notch

Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,16 @@ dependencies {

Version 3.0.0 and above requires Kotlin

## AndroidX

Version 4.0.0 includes support for AndroidX dependencies. If you experience issues with this update,
please ensure you have enabled AndroidX & Jetifier in your `gradle.properties` file

```properties
android.useAndroidX=true
android.enableJetifier=true
```

# Usage

![Default Alert](./documentation/alert_default.gif)
Expand Down
2 changes: 1 addition & 1 deletion alerter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply plugin: 'org.jetbrains.dokka'
apply from: rootProject.file('quality.gradle')

final String GROUP_ID = "com.tapadoo.android"
final String VERSION = "3.0.3"
final String VERSION = "4.0.0"
final String DESCRIPTION = "An Android Alerting Library"
final String GITHUB_URL = "https://github.com/Tapadoo/Alerter"

Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ org.gradle.jvmargs=-Xmx1536m
org.gradle.parallel=true

org.gradle.configureondemand=false

android.useAndroidX=true
android.enableJetifier=true

0 comments on commit 567add1

Please sign in to comment.