Skip to content

Commit

Permalink
update toolchain configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
daimajia committed May 31, 2019
1 parent 6f9e978 commit a536482
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:3.4.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -14,5 +15,6 @@ buildscript {
allprojects {
repositories {
jcenter()
google()
}
}
9 changes: 4 additions & 5 deletions demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"

defaultConfig {
applicationId "com.daimajia.androidanimations"
Expand All @@ -22,8 +21,8 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.android.support:support-v4:25.1.1'
compile project(':library')
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.nineoldandroids:library:2.4.0'
implementation 'com.android.support:support-v4:25.4.0'
implementation project(':library')
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Feb 13 22:06:02 CST 2017
#Sat Jun 01 01:42:21 CST 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
7 changes: 3 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"

defaultConfig {
minSdkVersion 14
Expand All @@ -19,8 +18,8 @@ android {
}

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

0 comments on commit a536482

Please sign in to comment.