Skip to content

Commit a57136d

Browse files
author
Tomer
committed
replace *compile with *implementation
1 parent 0e6dcb1 commit a57136d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ android {
1919
}
2020

2121
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
23-
testCompile 'junit:junit:4.12'
24-
compile 'com.android.support:appcompat-v7:27.1.0'
25-
compile 'com.android.support:design:27.1.0'
26-
compile project(path: ':tooltips')
22+
implementation fileTree(dir: 'libs', include: ['*.jar'])
23+
testImplementation 'junit:junit:4.12'
24+
implementation 'com.android.support:appcompat-v7:27.1.1'
25+
implementation 'com.android.support:design:27.1.1'
26+
implementation project(path: ':tooltips')
2727
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.1.0'
9+
classpath 'com.android.tools.build:gradle:3.1.1'
1010
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
1111
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1212
// NOTE: Do not place your application dependencies here; they belong

tooltips/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ android {
4242
}
4343

4444
dependencies {
45-
compile fileTree(dir: 'libs', include: ['*.jar'])
46-
testCompile 'junit:junit:4.12'
47-
compile 'com.android.support:appcompat-v7:27.1.0'
45+
implementation fileTree(dir: 'libs', include: ['*.jar'])
46+
testImplementation 'junit:junit:4.12'
47+
implementation 'com.android.support:appcompat-v7:27.1.1'
4848
}
4949

5050
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'

0 commit comments

Comments
 (0)