1- apply plugin : ' com.android.application'
2- apply plugin : ' kotlin-android'
3- apply plugin : ' kotlin-android-extensions'
4- apply plugin : ' kotlin-kapt'
1+ apply plugin : " com.android.application"
2+ apply plugin : " kotlin-android"
3+ apply plugin : " kotlin-android-extensions"
4+ apply plugin : " kotlin-kapt"
55
66android {
77 compileSdkVersion COMPILE_SDK_VERSION . toInteger()
@@ -15,7 +15,7 @@ android {
1515
1616 def SCHEME = " gank"
1717
18- buildConfigField " String" , " SCHEME" , " \" $SCHEME \" "
18+ buildConfigField " String" , " SCHEME" , " \" ${ SCHEME} \" "
1919
2020 manifestPlaceholders = [
2121 APPLICATION_ID : applicationId,
@@ -25,14 +25,14 @@ android {
2525 buildTypes {
2626 release {
2727 minifyEnabled false
28- proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
28+ proguardFiles getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro"
2929 }
3030 }
3131}
3232
3333dependencies {
34- implementation fileTree(dir : ' libs' , include : [' *.jar' ])
35- implementation project(' :backend' )
34+ implementation fileTree(dir : " libs" , include : [" *.jar" ])
35+ implementation project(" :backend" )
3636
3737 // Kotlin
3838 implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:${ KOTLIN_VERSION} "
@@ -41,7 +41,7 @@ dependencies {
4141 implementation " com.android.support:appcompat-v7:${ SUPPORT_LIBS_VERSION} "
4242 implementation " com.android.support:recyclerview-v7:${ SUPPORT_LIBS_VERSION} "
4343 implementation " com.android.support:support-annotations:${ SUPPORT_LIBS_VERSION} "
44- implementation ' com.android.support.constraint:constraint-layout:1.1.2'
44+ implementation " com.android.support.constraint:constraint-layout:1.1.2"
4545
4646 // ReactiveX
4747 implementation " io.reactivex.rxjava2:rxjava:2.1.8"
@@ -52,9 +52,9 @@ dependencies {
5252 implementation " com.uber.autodispose:autodispose-android-archcomponents:${ AUTO_DISPOSE_VERSION} "
5353
5454 // Others
55- implementation ' com.squareup.picasso:picasso:2.5.2'
55+ implementation " com.squareup.picasso:picasso:2.5.2"
5656 implementation " com.github.nekocode:Meepo:0.3"
57- def STATE_VERSION = ' 1.3.1'
57+ def STATE_VERSION = " 1.3.1"
5858 implementation " com.evernote:android-state:${ STATE_VERSION} "
5959 kapt " com.evernote:android-state-processor:${ STATE_VERSION} "
6060}
0 commit comments