|
| 1 | +apply plugin: 'com.android.application' |
| 2 | + |
| 3 | +apply plugin: 'realm-android' |
| 4 | + |
| 5 | +apply plugin: 'kotlin-android' |
| 6 | + |
| 7 | +apply plugin: 'kotlin-android-extensions' |
| 8 | + |
| 9 | +android { |
| 10 | + compileSdkVersion 26 |
| 11 | + defaultConfig { |
| 12 | + applicationId "com.app.launcher.hash" |
| 13 | + minSdkVersion 15 |
| 14 | + targetSdkVersion 26 |
| 15 | + versionCode 1 |
| 16 | + versionName "1.0" |
| 17 | + vectorDrawables.useSupportLibrary = true |
| 18 | + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" |
| 19 | + } |
| 20 | + buildTypes { |
| 21 | + release { |
| 22 | + minifyEnabled false |
| 23 | + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| 24 | + } |
| 25 | + } |
| 26 | +} |
| 27 | + |
| 28 | +dependencies { |
| 29 | + implementation fileTree(dir: 'libs', include: ['*.jar']) |
| 30 | + implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" |
| 31 | + implementation "com.android.support:appcompat-v7:$rootProject.supportLibraryVersion" |
| 32 | + implementation "com.android.support.constraint:constraint-layout:$rootProject.constraintLayoutVersion" |
| 33 | + implementation "com.google.android.gms:play-services-awareness:$rootProject.playServicesVersion" |
| 34 | + implementation "com.google.dagger:dagger:$rootProject.dagger2Version" |
| 35 | + implementation "com.google.dagger:dagger-android-support:$rootProject.dagger2Version" |
| 36 | + implementation "com.github.bumptech.glide:glide:$rootProject.glideVersion" |
| 37 | + implementation "io.reactivex.rxjava2:rxjava:$rootProject.rxjava2Version" |
| 38 | + implementation "io.reactivex.rxjava2:rxandroid:$rootProject.rxandroidVersion" |
| 39 | + implementation "com.squareup.retrofit2:retrofit:$rootProject.retrofitVersion" |
| 40 | + implementation "com.squareup.retrofit2:converter-gson:$rootProject.retrofitVersion" |
| 41 | + implementation "com.squareup.retrofit2:adapter-rxjava2:$rootProject.retrofitVersion" |
| 42 | + implementation "com.facebook.stetho:stetho-okhttp3:$rootProject.stethoOkhttp3Version" |
| 43 | + implementation "com.android.support:cardview-v7:$rootProject.supportLibraryVersion" |
| 44 | + implementation "com.android.support:recyclerview-v7:$rootProject.supportLibraryVersion" |
| 45 | + implementation "com.android.support:support-v4:$rootProject.supportLibraryVersion" |
| 46 | + implementation "com.android.support:customtabs:$rootProject.supportLibraryVersion" |
| 47 | + implementation "com.android.support:palette-v7:$rootProject.supportLibraryVersion" |
| 48 | + implementation "com.android.support:support-vector-drawable:$rootProject.supportLibraryVersion" |
| 49 | + implementation "com.android.support:animated-vector-drawable:$rootProject.supportLibraryVersion" |
| 50 | + implementation "com.github.nisrulz:sensey:$rootProject.senseyVersion" |
| 51 | + implementation "com.journeyapps:zxing-android-embedded:$rootProject.zxingAndroidVersion" |
| 52 | + implementation "com.jakewharton.rxbinding2:rxbinding-appcompat-v7:$rootProject.rxBindings" |
| 53 | + debugCompile "com.facebook.stetho:stetho:$rootProject.stethoVersion" |
| 54 | + debugCompile "com.uphyca:stetho_realm:$rootProject.stethoRealmVersion" |
| 55 | + annotationProcessor "com.google.dagger:dagger-compiler:$rootProject.dagger2Version" |
| 56 | + annotationProcessor "com.google.dagger:dagger-android-processor:$rootProject.dagger2Version" |
| 57 | + testImplementation 'junit:junit:4.12' |
| 58 | + androidTestImplementation 'com.android.support.test:runner:1.0.1' |
| 59 | + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' |
| 60 | +} |
0 commit comments