3

I'm working in an Android App and a few days ago I updated my Kotlin version from 1.0.0-beta-1103 to the release candidate 1.0.0-rc-1036 and now I can't run my app for something related to Kotlin Android Extensions.

I use the apply plugin: 'kotlin-android-extensions' just like the official blog says http://blog.jetbrains.com/kotlin/2016/02/kotlin-1-0-release-candidate-is-out/ but my app doesn't recognize any view from any layout.

This is what appears on the console:

Error:(20, 8) Unresolved reference: kotlinx

Error:Execution failed for task ':app:compileDebugKotlin'.

Compilation error. See log for more details

Please help me, I'm losing my mind!

Update:

This is my buildScript in globalbuild.gradle

buildscript {
    ext {
        kotlin_version = "1.0.0-rc-1036"
    }
    repositories {
        jcenter()
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        // The Fabric Gradle plugin uses an open ended version to react
        // quickly to Android tooling updates
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

The dependencies listed in the app build.gradle

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    // Google
    compile 'com.android.support:appcompat-v7:23.1.0'
    compile 'com.android.support:cardview-v7:23.1.0'
    compile 'com.android.support:design:23.1.0'
    compile 'com.android.support:recyclerview-v7:23.1.0'

    // Kotlin
    compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

    // Square
    compile 'com.squareup.okio:okio:1.5.0'
    compile 'com.squareup.retrofit:retrofit:1.9.0'
    compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
    compile 'com.squareup.okhttp:okhttp:2.0.0'
    compile 'com.squareup.picasso:picasso:2.5.2'

    // ReactiveX
    compile 'io.reactivex:rxjava:1.0.14'
    compile 'io.reactivex:rxandroid:1.0.1'
    compile 'com.jakewharton.rxbinding:rxbinding:0.3.0'
    compile 'com.jakewharton.rxbinding:rxbinding-support-v4:0.2.0'

    // DBFlow
    kapt 'com.raizlabs.android:DBFlow-Compiler:2.2.1'
    compile "com.raizlabs.android:DBFlow-Core:2.2.1"
    compile "com.raizlabs.android:DBFlow:2.2.1"

    // Otros
    compile 'de.hdodenhof:circleimageview:1.3.0'

    // SQLite Assets Helper
    compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1'

    // Crashlytics Kit
    compile('com.crashlytics.sdk.android:crashlytics:2.5.2@aar') {
        transitive = true
    }
}

This is an import that I'm using:

import kotlinx.android.synthetic.main.activity_all_quizzes.*
4

2 回答 2

4

classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 现在应该在项目本地build.gradle文件中定义。

于 2016-02-10T12:29:54.387 回答
1

您的 kotlin stdlib 编译依赖项应该(至少在不稳定的情况下)与 kotlin android studio 插件版本相同

...
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
...
buildscript {
   ext.kotlin_version = '1.0.0-rc-1036'
...
于 2016-02-09T19:37:08.280 回答