diff --git a/app/build.gradle b/app/build.gradle index 7376f7c..4345629 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,8 +5,6 @@ apply plugin: 'kotlin-android-extensions' -apply plugin: 'kotlin-kapt' // Add this line - android { compileSdkVersion 27 defaultConfig { @@ -30,7 +28,7 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.android.support.constraint:constraint-layout:1.1.0' implementation 'android.arch.lifecycle:extensions:1.1.1' @@ -38,7 +36,5 @@ androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' - kapt "com.android.databinding:compiler:3.2.0-alpha10" // Add this line - implementation 'com.android.support:recyclerview-v7:27.1.1' }