File tree 4 files changed +20
-16
lines changed
4 files changed +20
-16
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ I found the [Easing Functions](http://easings.net/) made by [Robert Penne](http:
23
23
Gradle
24
24
25
25
``` groovy
26
- implementation 'com.daimajia.easing:library:2.3 @aar'
26
+ implementation 'com.daimajia.easing:library:2.4 @aar'
27
27
```
28
28
or maven
29
29
30
30
``` xml
31
31
<dependency >
32
32
<groupId >com.daimajia.easing</groupId >
33
33
<artifactId >library</artifactId >
34
- <version >2.3 </version >
34
+ <version >2.4 </version >
35
35
<type >apklib</type >
36
36
</dependency >
37
37
```
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 29
4
+ compileSdkVersion COMPILE_SDK_VERSION . toInteger()
5
5
6
6
defaultConfig {
7
- applicationId ' daimajia.com.eaing '
8
- minSdkVersion 11
9
- targetSdkVersion 29
10
- versionCode 7
11
- versionName ' 2.3 '
7
+ applicationId GROUP
8
+ minSdkVersion MIN_SDK_VERSION . toInteger()
9
+ targetSdkVersion TARGET_SDK_VERSION . toInteger()
10
+ versionCode VERSION_CODE . toInteger()
11
+ versionName VERSION_NAME
12
12
}
13
13
14
14
lintOptions {
Original file line number Diff line number Diff line change 17
17
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18
18
# org.gradle.parallel=true
19
19
20
- VERSION_NAME =2.3
21
- VERSION_CODE =7
20
+ COMPILE_SDK_VERSION =29
21
+ TARGET_SDK_VERSION =29
22
+ MIN_SDK_VERSION =11
23
+
24
+ VERSION_NAME =2.4
25
+ VERSION_CODE =8
22
26
GROUP =com.daimajia.easing
23
27
24
28
POM_DESCRIPTION =Android Animation Easing Functions
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
android {
4
- compileSdkVersion 29
4
+ compileSdkVersion COMPILE_SDK_VERSION . toInteger()
5
5
6
6
defaultConfig {
7
- minSdkVersion 11
8
- targetSdkVersion 29
9
- versionCode 7
10
- versionName ' 2.3 '
7
+ minSdkVersion MIN_SDK_VERSION . toInteger()
8
+ targetSdkVersion TARGET_SDK_VERSION . toInteger()
9
+ versionCode VERSION_CODE . toInteger()
10
+ versionName VERSION_NAME
11
11
}
12
12
13
13
buildTypes {
14
14
release {
15
15
minifyEnabled false
16
- consumerProguardFiles ' proguard-rules.txt '
16
+ consumerProguardFiles ' proguard-rules.pro '
17
17
}
18
18
}
19
19
}
You can’t perform that action at this time.
0 commit comments