Skip to content

Commit a536482

Browse files
committed
update toolchain configuration
1 parent 6f9e978 commit a536482

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
google()
67
}
78
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.3'
9+
classpath 'com.android.tools.build:gradle:3.4.1'
910
// NOTE: Do not place your application dependencies here; they belong
1011
// in the individual module build.gradle files
1112
}
@@ -14,5 +15,6 @@ buildscript {
1415
allprojects {
1516
repositories {
1617
jcenter()
18+
google()
1719
}
1820
}

demo/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 25
5-
buildToolsVersion "25.0.2"
65

76
defaultConfig {
87
applicationId "com.daimajia.androidanimations"
@@ -22,8 +21,8 @@ android {
2221
}
2322

2423
dependencies {
25-
compile fileTree(dir: 'libs', include: ['*.jar'])
26-
compile 'com.nineoldandroids:library:2.4.0'
27-
compile 'com.android.support:support-v4:25.1.1'
28-
compile project(':library')
24+
implementation fileTree(dir: 'libs', include: ['*.jar'])
25+
implementation 'com.nineoldandroids:library:2.4.0'
26+
implementation 'com.android.support:support-v4:25.4.0'
27+
implementation project(':library')
2928
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Feb 13 22:06:02 CST 2017
1+
#Sat Jun 01 01:42:21 CST 2019
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip

library/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ apply plugin: 'com.android.library'
22

33
android {
44
compileSdkVersion 25
5-
buildToolsVersion "25.0.2"
65

76
defaultConfig {
87
minSdkVersion 14
@@ -19,8 +18,8 @@ android {
1918
}
2019

2120
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
23-
compile 'com.daimajia.easing:library:2.0@aar'
24-
compile 'com.android.support:support-compat:25.1.1'
21+
implementation fileTree(dir: 'libs', include: ['*.jar'])
22+
implementation 'com.daimajia.easing:library:2.0@aar'
23+
implementation 'com.android.support:support-compat:25.4.0'
2524
}
2625
apply from: './gradle-mvn-push.gradle'

0 commit comments

Comments
 (0)