Skip to content

Commit f457298

Browse files
committed
Version 1.2.0
Build tools 28.0.1.
1 parent 5be0af4 commit f457298

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android:
1111
components:
1212
- tools
1313
- platform-tools
14-
- build-tools-28.0.0
14+
- build-tools-28.0.1
1515
- android-28
1616
- extra-android-support
1717
- extra-android-m2repository

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ so, minimum SDK will be Android 14+ (ICS or above).
1818

1919
- [Installation](https://github.com/pranavpandey/dynamic-utils#installation)
2020
- [Usage](https://github.com/pranavpandey/dynamic-utils#usage)
21+
- [DynamicAnimUtils](https://github.com/pranavpandey/dynamic-utils#dynamicanimutils)
2122
- [DynamicBitmapUtils](https://github.com/pranavpandey/dynamic-utils#dynamicbitmaputils)
2223
- [DynamicColorUtils](https://github.com/pranavpandey/dynamic-utils#dynamiccolorutils)
2324
- [DynamicDeviceUtils](https://github.com/pranavpandey/dynamic-utils#dynamicdeviceutils)
@@ -39,7 +40,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
3940

4041
```groovy
4142
dependencies {
42-
implementation 'com.pranavpandey.android:dynamic-utils:1.1.1'
43+
implementation 'com.pranavpandey.android:dynamic-utils:1.2.0'
4344
}
4445
```
4546

@@ -53,6 +54,12 @@ for more hidden features.
5354

5455
> For complete reference, please read the [documentation](https://pranavpandey.github.io/dynamic-utils).
5556
57+
### DynamicAnimUtils
58+
59+
Helper class to perform animation related operations.
60+
61+
- `void playAnimation(view, animator)` - Play an animator animation on a view.
62+
5663
### DynamicBitmapUtils
5764

5865
Helper class to perform bitmap operations.

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ext {
5252
referenceTitle = 'Dynamic Utils Reference'
5353

5454
mavenGroup = 'com.pranavpandey.android'
55-
mavenVersion = '1.1.1'
55+
mavenVersion = '1.2.0'
5656
mavenInceptionYear = 2017
5757
mavenArtifactId = 'dynamic-utils'
5858
bintrayRepo = 'android'
@@ -66,9 +66,9 @@ ext {
6666
licenseDistribution = 'repo'
6767
allLicenses = ["Apache-2.0"]
6868

69-
versionCode = 12
69+
versionCode = 13
7070

71-
buildTools = '28.0.0'
71+
buildTools = '28.0.1'
7272
minSdk = 14
7373
compileSdk = 28
7474
targetSdk = 28

0 commit comments

Comments
 (0)