Skip to content

Commit 55b28a2

Browse files
committed
see 10/28 log
1 parent cc0d73d commit 55b28a2

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ dependencies {
6666
implementation 'com.r0adkll:slidableactivity:2.0.5'
6767

6868
// LeakCanary
69-
debugCompile "com.squareup.leakcanary:leakcanary-android:$LEAKCANARY_VERSION"
70-
releaseCompile leakCanary
71-
testCompile leakCanary
69+
debugImplementation "com.squareup.leakcanary:leakcanary-android:$LEAKCANARY_VERSION"
70+
releaseImplementation leakCanary
71+
testImplementation leakCanary
7272

7373
// compile 'com.blankj:utilcode:1.9.3'
7474
}

subutil/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ dependencies {
5555
compileOnly "com.android.support:support-v4:$rootProject.ext.supportVersion"
5656
compileOnly "com.android.support:design:$rootProject.ext.supportVersion"
5757

58-
testCompile "junit:junit:$rootProject.ext.junitVersion"
59-
testCompile "org.robolectric:robolectric:$rootProject.ext.robolectricVersion"
58+
testImplementation "junit:junit:$rootProject.ext.junitVersion"
59+
testImplementation "org.robolectric:robolectric:$rootProject.ext.robolectricVersion"
6060
}

update_log.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* 17/10/28 替换compile为implementation,provided为compileOnly
12
* 17/10/27 兼容AS3.0
23
* 17/10/27 修复LogUtils在kotlin中使用的问题
34
* 17/10/25 修复LogUtils边框,修复getBitmap从流获取

utilcode/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ dependencies {
5454
compileOnly "com.android.support:support-v4:$rootProject.ext.supportVersion"
5555
compileOnly "com.android.support:design:$rootProject.ext.supportVersion"
5656

57-
testCompile "junit:junit:$rootProject.ext.junitVersion"
58-
testCompile "org.robolectric:robolectric:$rootProject.ext.robolectricVersion"
59-
testCompile "com.android.support:support-v4:$rootProject.ext.supportVersion"
57+
testImplementation "junit:junit:$rootProject.ext.junitVersion"
58+
testImplementation "org.robolectric:robolectric:$rootProject.ext.robolectricVersion"
59+
testImplementation "com.android.support:support-v4:$rootProject.ext.supportVersion"
6060
}
6161
//apply from: "../bintrayUpload.gradle"
6262
//gradle bintrayUpload

0 commit comments

Comments
 (0)