Skip to content

Commit

Permalink
see 10/28 log
Browse files Browse the repository at this point in the history
  • Loading branch information
Blankj committed Oct 28, 2017
1 parent cc0d73d commit 55b28a2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ dependencies {
implementation 'com.r0adkll:slidableactivity:2.0.5'

// LeakCanary
debugCompile "com.squareup.leakcanary:leakcanary-android:$LEAKCANARY_VERSION"
releaseCompile leakCanary
testCompile leakCanary
debugImplementation "com.squareup.leakcanary:leakcanary-android:$LEAKCANARY_VERSION"
releaseImplementation leakCanary
testImplementation leakCanary

// compile 'com.blankj:utilcode:1.9.3'
}
Expand Down
4 changes: 2 additions & 2 deletions subutil/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ dependencies {
compileOnly "com.android.support:support-v4:$rootProject.ext.supportVersion"
compileOnly "com.android.support:design:$rootProject.ext.supportVersion"

testCompile "junit:junit:$rootProject.ext.junitVersion"
testCompile "org.robolectric:robolectric:$rootProject.ext.robolectricVersion"
testImplementation "junit:junit:$rootProject.ext.junitVersion"
testImplementation "org.robolectric:robolectric:$rootProject.ext.robolectricVersion"
}
1 change: 1 addition & 0 deletions update_log.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* 17/10/28 替换compile为implementation,provided为compileOnly
* 17/10/27 兼容AS3.0
* 17/10/27 修复LogUtils在kotlin中使用的问题
* 17/10/25 修复LogUtils边框,修复getBitmap从流获取
Expand Down
6 changes: 3 additions & 3 deletions utilcode/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ dependencies {
compileOnly "com.android.support:support-v4:$rootProject.ext.supportVersion"
compileOnly "com.android.support:design:$rootProject.ext.supportVersion"

testCompile "junit:junit:$rootProject.ext.junitVersion"
testCompile "org.robolectric:robolectric:$rootProject.ext.robolectricVersion"
testCompile "com.android.support:support-v4:$rootProject.ext.supportVersion"
testImplementation "junit:junit:$rootProject.ext.junitVersion"
testImplementation "org.robolectric:robolectric:$rootProject.ext.robolectricVersion"
testImplementation "com.android.support:support-v4:$rootProject.ext.supportVersion"
}
//apply from: "../bintrayUpload.gradle"
//gradle bintrayUpload

0 comments on commit 55b28a2

Please sign in to comment.