Skip to content

Commit b2c263c

Browse files
author
ihsanbal
committed
gradle update
1 parent 7663a6b commit b2c263c

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ android:
44
components:
55
- tools
66
- platform-tools
7-
- build-tools-26.0.2
8-
- android-26
7+
- build-tools-27.0.3
8+
- android-27
99
- extra-android-m2repository
1010

1111
jdk:

app/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 26
4+
compileSdkVersion 27
55
//noinspection GradleDependency
6-
buildToolsVersion "26.0.2"
6+
buildToolsVersion '27.0.3'
77

88
defaultConfig {
99
applicationId "ihsanbal.com.logginginterceptor"
1010
minSdkVersion 14
1111
//noinspection OldTargetApi
12-
targetSdkVersion 26
12+
targetSdkVersion 27
1313
versionCode 1
1414
versionName "1.0"
15-
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
15+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1616
}
1717

1818
compileOptions {
@@ -41,14 +41,14 @@ dependencies {
4141
implementation 'com.squareup.okhttp3:okhttp:' + rootProject.ext.okhttpVersion
4242
annotationProcessor 'com.google.dagger:dagger-compiler:' + rootProject.ext.daggerVersion
4343
annotationProcessor 'com.jakewharton:butterknife-compiler:' + rootProject.ext.butterKnifeVersion
44-
debugCompile 'com.squareup.leakcanary:leakcanary-android:' + rootProject.ext.leakCanaryVersion
45-
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject.ext.leakCanaryVersion
46-
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject.ext.leakCanaryVersion
47-
provided 'javax.annotation:jsr250-api:1.0'
44+
debugImplementation 'com.squareup.leakcanary:leakcanary-android:' + rootProject.ext.leakCanaryVersion
45+
releaseApi 'com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject.ext.leakCanaryVersion
46+
testImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:' + rootProject.ext.leakCanaryVersion
47+
compileOnly 'javax.annotation:jsr250-api:1.0'
4848
implementation (project(':lib')) {
4949
exclude group: 'org.json', module: 'json'
5050
}
51-
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2', {
52-
exclude group: 'com.android.support', module: 'support-annotations'
53-
}
51+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
52+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
53+
androidTestImplementation 'com.android.support.test:rules:1.0.2'
5454
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66
dependencies {
77
//noinspection
8-
classpath 'com.android.tools.build:gradle:3.0.1'
8+
classpath 'com.android.tools.build:gradle:3.1.3'
99
}
1010
}
1111

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Jan 02 21:28:29 CST 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-4.4-20171031235950+0000-all.zip

0 commit comments

Comments
 (0)