| apply plugin: 'com.android.application' |
| |
| apply plugin: 'kotlin-android' |
| |
| apply plugin: 'kotlin-android-extensions' |
| |
| android { |
| compileSdkVersion 26 |
| buildToolsVersion "26.0.0" |
| defaultConfig { |
| applicationId "js.kbars" |
| minSdkVersion 19 |
| targetSdkVersion 26 |
| versionCode 100 |
| versionName "1.0" |
| testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| } |
| } |
| } |
| |
| dependencies { |
| implementation fileTree(include: ['*.jar'], dir: 'libs') |
| androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { |
| exclude group: 'com.android.support', module: 'support-annotations' |
| }) |
| implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" |
| implementation 'com.android.support:appcompat-v7:25.4.0' |
| testImplementation 'junit:junit:4.12' |
| } |