web-dev-qa-db-ja.com

Jetpack composeがRoomコンパイラーを破壊する

Android Studio 4.0 Canary 6)を使用して(プロジェクトテンプレートから)完全に新しいjetpack作成プロジェクトを作成し、部屋の依存関係を追加しようとしました。これがアプリレベルのbuild.gradleです:

apply plugin: 'com.Android.application'
apply plugin: 'kotlin-Android'
apply plugin: 'kotlin-Android-extensions'
apply plugin: 'kotlin-kapt'


Android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"

    defaultConfig {
        applicationId "com.example.composewithroom"
        minSdkVersion 29
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-Android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
    buildFeatures {
        compose true
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.core:core-ktx:1.1.0'
    implementation 'androidx.ui:ui-framework:0.1.0-dev03'
    implementation 'androidx.ui:ui-layout:0.1.0-dev03'
    implementation 'androidx.ui:ui-material:0.1.0-dev03'
    implementation 'androidx.ui:ui-tooling:0.1.0-dev03'


    implementation "androidx.room:room-runtime:2.2.2"
    implementation "androidx.room:room-ktx:2.2.2"
    kapt "androidx.room:room-compiler:2.2.2" // e: Java.lang.NoSuchMethodError: org.jetbrains.kotlin.codegen.state.GenerationState$Builder.isIrBackend(Z)Lorg/jetbrains/kotlin/codegen/state/GenerationState$Builder;

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

ビルドしようとすると、このエラーが発生します。

e: Java.lang.NoSuchMethodError: org.jetbrains.kotlin.codegen.state.GenerationState$Builder.isIrBackend(Z)Lorg/jetbrains/kotlin/codegen/state/GenerationState$Builder;

これは、kapt "androidx.room:room-compiler:2.2.2"を削除するか、作成compose trueを無効にすることで「修正」できます。

誰もがこれを修正する方法を知っていますか、またはルームデータベースは現在Composeで使用できませんか?

10
Semanticer

1.3.61で修正されるはずですが、Jetpack Composeコンパイラプラグインは更新されません。

詳細については、次のYouTrackの問題をご覧ください: IR(Jetpack Compose)、KAPT、Room: "AssertionError:IR backend shouldn call KotlinTypeMapper.mapType:MainActivity" 。最後のコメントは次のように述べています:

ここでの問題は、JetPack Composeが内部Kotlinコンパイラーを1.3.61にまだ更新していないことです。それについて何ができるか見てみましょう。

また、Google Issue Trackerの次の問題: 作成が有効になっていると、注釈プロセッサが失敗します