Skip to content

Commit

Permalink
Version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavpandey committed Feb 11, 2018
1 parent 9dcfad3 commit 3b34305
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi

```groovy
dependencies {
implementation 'com.pranavpandey.android:dynamic-utils:0.8.0'
implementation 'com.pranavpandey.android:dynamic-utils:0.9.0'
}
```

Expand Down Expand Up @@ -166,19 +166,20 @@ Helper class to perform unit conversions.
### DynamicVersionUtils

Helper class to detect the Android SDK version at runtime so that we can provide the user
experience accordingly.

- `boolean isGingerbread()` - To detect if the current Android version is Gingerbread or above.
experience accordingly. Pass `true` in the alternate method to check for equality.

- `boolean isIceCreamSandwich()` - To detect if the current Android version is Ice Cream Sandwich
or above.

...
- `boolean isIceCreamSandwich(equals)` - To detect if the current Android version is Ice Cream
Sandwich or above.

- `boolean isNougatMR1()` - To detect if the current Android version is NougatMR1 or above.
...

- `boolean isOreoMR1()` - To detect if the current Android version is OreoMR1 or above.

- `boolean isOreoMR1(equals)` - To detect if the current Android version is OreoMR1 or above.

### DynamicViewUtils

Helper class to perform `view` operations.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ext {
githubUrl = 'pranavpandey/dynamic-utils'

mavenGroup = 'com.pranavpandey.android'
mavenVersion = '0.8.0'
mavenVersion = '0.9.0'
mavenInceptionYear = 2017
mavenArtifactId = 'dynamic-utils'
bintrayRepo = 'android'
Expand All @@ -50,7 +50,7 @@ ext {
licenseDistribution = 'repo'
allLicenses = ["Apache-2.0"]

versionCode = 8
versionCode = 9

buildTools = '27.0.3'
minSdk = 14
Expand Down

0 comments on commit 3b34305

Please sign in to comment.