Skip to content

Commit 26c8d02

Browse files
committed
Bump Gradle versions
1 parent 599ffd5 commit 26c8d02

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

Diff for: .travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android:
66
components:
77
- tools
88
- platform-tools
9-
- build-tools-25.0.3
10-
- android-25
9+
- build-tools-27.0.3
10+
- android-27
1111
licenses:
1212
- android-sdk-license-.+
1313
script:

Diff for: app/build.gradle

+8-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion "25.0.3"
4+
compileSdkVersion 27
5+
buildToolsVersion "27.0.3"
66

77
defaultConfig {
88
applicationId "com.codepath.debuggingchallenges"
99
minSdkVersion 21
10-
targetSdkVersion 25
10+
targetSdkVersion 27
1111
versionCode 1
1212
versionName "1.0"
1313
}
@@ -20,10 +20,9 @@ android {
2020
}
2121

2222
dependencies {
23-
compile fileTree(dir: 'libs', include: ['*.jar'])
24-
testCompile 'junit:junit:4.12'
25-
compile 'com.android.support:appcompat-v7:25.3.1'
26-
compile 'com.loopj.android:android-async-http:1.4.9'
27-
compile 'com.github.bumptech.glide:glide:3.8.0'
28-
compile group: 'com.google.guava', name: 'guava', version: '18.0'
23+
testImplementation 'junit:junit:4.12'
24+
implementation 'com.android.support:appcompat-v7:27.1.1'
25+
implementation 'com.loopj.android:android-async-http:1.4.9'
26+
implementation 'com.github.bumptech.glide:glide:3.8.0'
27+
implementation group: 'com.google.guava', name: 'guava', version: '18.0'
2928
}

Diff for: build.gradle

+3-1
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.3.3'
9+
classpath 'com.android.tools.build:gradle:3.1.2'
910

1011
// NOTE: Do not place your application dependencies here; they belong
1112
// in the individual module build.gradle files
@@ -15,6 +16,7 @@ buildscript {
1516
allprojects {
1617
repositories {
1718
jcenter()
19+
google()
1820
}
1921
}
2022

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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-3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

0 commit comments

Comments
 (0)