group 'Again' version '1.0-SNAPSHOT' buildscript { repositories { jcenter() mavenCentral() google() } dependencies { classpath "com.android.tools.build:gradle:3.1.2" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.50" } } apply plugin: 'com.android.application' apply plugin: 'kotlin-android' android { compileSdkVersion 26 buildToolsVersion "28.0.3" defaultConfig { minSdkVersion 11 targetSdkVersion 23 versionCode 1002003 versionName version } dataBinding { enabled = true } compileOptions { sourceCompatibility JavaVersion.VERSION_1_7 targetCompatibility JavaVersion.VERSION_1_7 } buildTypes { debug { applicationIdSuffix ".debug" versionNameSuffix "-debug" } release { minifyEnabled true shrinkResources true } } } tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { kotlinOptions { freeCompilerArgs = ['-progressive'] } }