Home | History | Annotate | Download | only in app
      1 apply plugin: 'com.android.application'
      2 
      3 apply plugin: 'kotlin-android'
      4 
      5 apply plugin: 'kotlin-android-extensions'
      6 
      7 android {
      8     compileSdkVersion 27
      9     defaultConfig {
     10         applicationId "com.example.android.jobscheduler"
     11         minSdkVersion 21
     12         targetSdkVersion 27
     13         versionCode 1
     14         versionName "1.0"
     15     }
     16     buildTypes {
     17         release {
     18             minifyEnabled false
     19             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
     20         }
     21     }
     22 }
     23 
     24 dependencies {
     25     implementation "com.android.support:appcompat-v7:27.0.0"
     26     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
     27 }
     28