11apply plugin : ' com.android.application'
2- apply plugin : ' me.tatarka.retrolambda'
3-
4- buildscript {
5- repositories {
6- mavenCentral()
7- }
8-
9- dependencies {
10- classpath rootProject. ext. gradleRetrolambda
11- }
12- }
132
143android {
154 compileSdkVersion rootProject. ext. compileSdkVersion
@@ -18,7 +7,7 @@ android {
187 defaultConfig {
198 applicationId project. GROUP
209 minSdkVersion rootProject. ext. minSdkVersion
21- targetSdkVersion rootProject. ext. targetSdkVersion
10+ targetSdkVersion rootProject. ext. compileSdkVersion
2211 versionCode Integer . parseInt(project. VERSION_CODE )
2312 versionName project. VERSION_NAME
2413 }
@@ -40,14 +29,13 @@ android {
4029}
4130
4231dependencies {
43- compile project(' :core' )
44- compile project(' :reprint_spass' )
45- compile project(' :rxjava' )
46- compile project(' :rxjava2' )
47-
48- compile rootProject. ext. supportV7
49- compile rootProject. ext. supportDesign
50- compile rootProject. ext. butterknife
51-
52- retrolambdaConfig rootProject. ext. retrolambda
32+ implementation project(' :core' )
33+ implementation project(' :reprint_spass' )
34+ implementation project(' :rxjava' )
35+ implementation project(' :rxjava2' )
36+
37+ implementation rootProject. ext. supportV7
38+ implementation rootProject. ext. supportDesign
39+ implementation rootProject. ext. butterknife
40+ annotationProcessor rootProject. ext. butterknifeProcessor
5341}
0 commit comments