Skip to content

Commit 495e6fc

Browse files
author
daimajia
committed
update readme
1 parent 556bbde commit 495e6fc

3 files changed

Lines changed: 17 additions & 12 deletions

File tree

README.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Android Easing Functions
1+
# Android Easing Functions
22

33
This project is originally from my another project, [AndroidViewAnimation](https://github.com/daimajia/AndroidViewAnimations), which is an animation collection, to help you make animation easier.
44

@@ -8,32 +8,37 @@ So, I started to explore how to make it more and more real.
88

99
I found the [Easing Functions](http://easings.net/) made by [Robert Penne](http://robertpenner.com/), then, I implemented Easing Functions and make a lovely demo.
1010

11-
##Demo
11+
## Demo
1212

1313
![](http://ww4.sinaimg.cn/mw690/610dc034jw1ehuzoul4h8g20b00gmh9s.gif)
1414

15-
##Uasage
15+
## Uasage
16+
17+
> `NineOldAndroids` has been removed since version 2.0. Thanks Jake Wharton.
18+
19+
**minSdkVersion: 11**
1620

1721
### Step 1
1822

1923
Gradle
2024

2125
```groovy
22-
compile 'com.nineoldandroids:library:2.4.0'
23-
compile 'com.daimajia.easing:library:1.0.1@aar'
26+
compile 'com.android.support:appcompat-v7:25.1.1'
27+
compile 'com.daimajia.easing:library:2.0@aar'
2428
```
2529
or maven
2630

2731
```xml
2832
<dependency>
29-
<groupId>com.nineoldandroids</groupId>
30-
<artifactId>library</artifactId>
31-
<version>2.4.0</version>
33+
<groupId>com.android.support</groupId>
34+
<artifactId>appcompat-v7</artifactId>
35+
<version>25.1.1</version>
36+
<type>apklib</type>
3237
</dependency>
3338
<dependency>
3439
<groupId>com.daimajia.easing</groupId>
3540
<artifactId>library</artifactId>
36-
<version>1.0.1</version>
41+
<version>2.0</version>
3742
<type>apklib</type>
3843
</dependency>
3944
```

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020

2121

22-
VERSION_NAME=1.0.2
23-
VERSION_CODE=3
22+
VERSION_NAME=2.0
23+
VERSION_CODE=4
2424
GROUP=com.daimajia.easing
2525

2626
POM_DESCRIPTION=Android Animation Easing Functions

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android {
77
defaultConfig {
88
minSdkVersion 11
99
targetSdkVersion 25
10-
versionCode 3
10+
versionCode 4
1111
versionName "2.0"
1212
}
1313
buildTypes {

0 commit comments

Comments
 (0)