|
1 | 1 | repositories {
|
2 |
| - jcenter() |
| 2 | + mavenCentral() |
3 | 3 | flatDir {
|
4 | 4 | dirs 'libs'
|
5 | 5 | }
|
@@ -61,36 +61,36 @@ android {
|
61 | 61 | }
|
62 | 62 |
|
63 | 63 | dependencies {
|
64 |
| - compile fileTree(dir: 'libs', include: ['*.jar']) |
| 64 | + implementation fileTree(dir: 'libs', include: ['*.jar']) |
65 | 65 |
|
66 |
| - debugCompile project(':debugoverlay') |
67 |
| - releaseCompile project(':debugoverlay-no-op') |
68 |
| - testCompile project(':debugoverlay-no-op') |
| 66 | + debugImplementation project(':debugoverlay') |
| 67 | + releaseImplementation project(':debugoverlay-no-op') |
| 68 | + testImplementation project(':debugoverlay-no-op') |
69 | 69 |
|
70 |
| - compile(project(':debugoverlay-ext-timber')) { |
| 70 | + implementation(project(':debugoverlay-ext-timber')) { |
71 | 71 | exclude module: 'debugoverlay'
|
72 | 72 | }
|
73 | 73 |
|
74 |
| - compile(project(':debugoverlay-ext-netstats')) { |
| 74 | + implementation(project(':debugoverlay-ext-netstats')) { |
75 | 75 | exclude module: 'debugoverlay'
|
76 | 76 | }
|
77 | 77 |
|
78 |
| - compile "com.android.support:appcompat-v7:${supportLibraryVersion}" |
79 |
| - compile "com.android.support:design:${supportLibraryVersion}" |
| 78 | + implementation "com.android.support:appcompat-v7:${supportLibraryVersion}" |
| 79 | + implementation "com.android.support:design:${supportLibraryVersion}" |
80 | 80 |
|
81 |
| - compile 'com.android.support.constraint:constraint-layout:1.0.2' |
| 81 | + implementation 'com.android.support.constraint:constraint-layout:1.0.2' |
82 | 82 |
|
83 |
| - debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5' |
84 |
| - releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5' |
85 |
| - testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5' |
| 83 | + debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5' |
| 84 | + releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5' |
| 85 | + testImplementation'com.squareup.leakcanary:leakcanary-android-no-op:1.5' |
86 | 86 |
|
87 | 87 | // Set this dependency to build and run Espresso tests
|
88 |
| - androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { |
| 88 | + androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { |
89 | 89 | exclude group: 'com.android.support', module: 'support-annotations'
|
90 | 90 | })
|
91 | 91 |
|
92 | 92 | // ScreenShot taker for instrumentation tests
|
93 |
| - androidTestCompile(name:'cloudtestingscreenshotter_lib', ext:'aar') |
| 93 | + androidTestImplementation(name:'cloudtestingscreenshotter_lib', ext:'aar') |
94 | 94 |
|
95 |
| - testCompile deps.junit |
| 95 | + testImplementation deps.junit |
96 | 96 | }
|
0 commit comments