@@ -3,12 +3,12 @@ apply plugin: 'kotlin-android'
3
3
apply plugin : ' kotlin-android-extensions'
4
4
5
5
android {
6
- compileSdkVersion 25
7
- buildToolsVersion ' 26 .0.2 '
6
+ compileSdkVersion 27
7
+ buildToolsVersion ' 27 .0.3 '
8
8
defaultConfig {
9
9
applicationId " com.example.app"
10
- minSdkVersion 9
11
- targetSdkVersion 25
10
+ minSdkVersion 14
11
+ targetSdkVersion 27
12
12
versionCode 1
13
13
versionName " 1.0"
14
14
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
@@ -22,14 +22,13 @@ android {
22
22
}
23
23
24
24
dependencies {
25
- compile fileTree(dir : ' libs' , include : [' *.jar' ])
25
+ compile ' com.android.support:appcompat-v7:27.1.1'
26
+ compile ' com.android.support.constraint:constraint-layout:1.0.2'
27
+ compile ' com.android.support:design:27.1.1'
28
+ compile " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
29
+ compile " org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version "
30
+ testCompile ' junit:junit:4.12'
26
31
androidTestCompile(' com.android.support.test.espresso:espresso-core:2.2.2' , {
27
32
exclude group : ' com.android.support' , module : ' support-annotations'
28
33
})
29
- compile ' com.android.support:appcompat-v7:25.4.0'
30
- compile ' com.android.support.constraint:constraint-layout:1.0.2'
31
- compile ' com.android.support:design:25.4.0'
32
- testCompile ' junit:junit:4.12'
33
- compile " org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version "
34
- compile " org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version "
35
34
}
0 commit comments