Gradle 3.3.0和Android Studio 3.3.0上的Kotlin Android扩展无法解析的ID

时间:2019-02-03 21:39:59

标签: android android-studio gradle kotlin kotlin-android-extensions

更新Android Studio并升级到3.3.0版后,我无法编译我的App。 Kotlin Android扩展程序提供的视图不起作用。我引用的所有视图都出现“未解决的引用:xxx”的编译错误。

在gradle和Android Studio的早期版本中,我的代码有效。 我试图清理和重建项目,使缓存无效,然后重新启动Android Studio,并创建一个新项目,然后将我的代码复制并粘贴到其中,但这一切都不起作用。

我的项目.gradle包含:

buildscript {
    ext.kotlin_version = "1.3.20"
    ext.play_sevices_version="16.0.0"
    repositories {
        google()
        mavenCentral()
        jcenter()
        maven {
            url "https://maven.fabric.io/public"
        }
    }
    dependencies {
        classpath "com.android.tools.build:gradle:3.3.0"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath "com.google.gms:google-services:4.2.0"
        classpath "io.fabric.tools:gradle:1.25.4"
    }
}

我的应用程序.gradle包含:

apply plugin: "com.android.application"
apply plugin: "kotlin-android"
apply plugin: "kotlin-android-extensions"
apply plugin: "kotlin-kapt"
apply plugin: "com.google.gms.google-services"
apply plugin: "io.fabric"
android {
    compileSdkVersion 28
    defaultConfig {
       ....
       minSdkVersion 16
       targetSdkVersion 28
       ...
       testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
       vectorDrawables.useSupportLibrary = true
       multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile("proguard-android.txt"), 
    "proguard-rules.pro"
        }
    }
}
dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.2-alpha01'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.2-alpha01'
    implementation 'androidx.multidex:multidex:2.0.1'
    implementation 'com.github.StephenVinouze:KinApp:1.0.2'
    implementation 'com.google.firebase:firebase-core:16.0.7'
    implementation 'com.google.firebase:firebase-ads:17.1.3'
    implementation "com.google.android.gms:play-services-maps:$play_sevices_version"
    implementation "com.google.android.gms:play-services-location:$play_sevices_version"
    implementation "com.google.android.gms:play-services-places:$play_sevices_version"
    implementation 'com.google.android.gms:play-services-analytics:16.0.7'
    implementation 'com.taskail:simple-places-search-dialog:1.0'
    implementation 'com.github.duanhong169:colorpicker:1.1.1'
    implementation 'com.crashlytics.sdk.android:crashlytics:2.9.8'
    implementation 'com.squareup.okhttp3:okhttp:3.10.0'
    implementation 'com.google.code.gson:gson:2.8.5'
    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
    implementation 'androidx.room:room-runtime:2.1.0-alpha04'
    kapt "androidx.room:room-compiler:2.1.0-alpha04"
    implementation 'androidx.paging:paging-runtime:2.1.0'
    implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
    implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.1'
    implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.1'
}

已编辑: 当我更新项目依赖项时,Android Studio并将其迁移以使用'androidx'删除了布局文件中声明的一些ID(我不知道为什么,但是我认为当我的操作也尝试清除时可能会发生)该项目删除了不必要的id声明),约束布局中使用的id并未被删除。

1 个答案:

答案 0 :(得分:2)

请尝试如下

  • 文件|使缓存无效/重新启动
  • 删除.idea文件夹
  • 运行gradlew clean
  • 重新导入项目

如果仍然存在问题,则删除应用插件:'kotlin-android-extensions',同步gradle插件,然后我再次添加它。