Android Room Persistence library and Kotlin

Usually in project build.gradle I define the dependencies versions: ext { buildToolsVersion = ‘25.0.2’ supportLibVersion = ‘25.3.1’ espressoVersion = ‘2.2.2’ archRoomVersion = ‘1.0.0-alpha1’ } so in app build.gradle the dependencies look like: dependencies { compile fileTree(dir: ‘libs’, include: [‘*.jar’]) compile “org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version” compile “com.android.support:appcompat-v7:${rootProject.supportLibVersion}” compile “android.arch.persistence.room:runtime:${rootProject.archRoomVersion}” annotationProcessor “android.arch.persistence.room:compiler:${rootProject.archRoomVersion}” kapt “android.arch.persistence.room:compiler:${rootProject.archRoomVersion}” androidTestCompile(“com.android.support.test.espresso:espresso-core:${rootProject.espressoVersion}”, { exclude group: ‘com.android.support’, module: … Read more