11apply plugin : ' com.android.application'
22
33android {
4- compileSdkVersion rootProject. ext. android . compileSdkVersion
5- buildToolsVersion rootProject. ext. android . buildToolsVersion
4+ compileSdkVersion rootProject. ext. compileSdkVersion
5+ buildToolsVersion rootProject. ext. buildToolsVersion
66
77 defaultConfig {
88 applicationId " com.blankj.androidutilcode"
9- minSdkVersion rootProject. ext. android . minSdkVersion
10- targetSdkVersion rootProject. ext. android . targetSdkVersion
11- versionCode rootProject. ext. android . versionCode
12- versionName rootProject. ext. android . versionName
9+ minSdkVersion rootProject. ext. minSdkVersion
10+ targetSdkVersion rootProject. ext. targetSdkVersion
11+ versionCode rootProject. ext. versionCode
12+ versionName rootProject. ext. versionName
1313 }
1414 buildTypes {
1515 release {
@@ -21,16 +21,14 @@ android {
2121
2222dependencies {
2323 compile fileTree(include : [' *.jar' ], dir : ' libs' )
24- compile project( ' :utilcode ' )
25- compile rootProject . ext . deps . design
26- compile rootProject . ext . deps . supportV4
24+ compile " com.android.support:design: $r ootProject . supportVersion "
25+ compile " com.android.support:support-v4: $r ootProject . supportVersion "
26+ compile " com.android.support:appcompat-v7: $r ootProject . supportVersion "
2727
28- // RxAndroid
29- compile rootProject. ext. deps. rxAndroid
30- compile rootProject. ext. deps. rxJava
28+ compile project(' :utilcode' )
3129
3230 // LeakCanary
33- debugCompile rootProject . ext . deps . leakcanaryAndroid
34- releaseCompile rootProject . ext . deps . leakcanaryAndroidNoOp
35- testCompile rootProject . ext . deps . leakcanaryAndroidNoOp
31+ debugCompile ' com.squareup.leakcanary:leakcanary-android:1.5 '
32+ releaseCompile ' com.squareup.leakcanary:leakcanary-android-no-op:1.5 '
33+ testCompile ' com.squareup.leakcanary:leakcanary-android-no-op:1.5 '
3634}
0 commit comments