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


11

Android Studio 4.0 Canary 6を使用して(プロジェクトテンプレートから)完全に新しいjetpack composeプロジェクトを作成し、部屋の依存関係を追加しようとしました。これが私のアプリレベルです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で使用できませんか?


1
申し訳ありませんが、現時点では使用できません。Composeが依存するKotlinの特殊な魔法と、Roomなどの一部の注釈プロセッサの間には矛盾があります。
CommonsWare

まさに-私が試しcompose = truekapt "androidx.databinding"ところ、同じエラーが発生しました。おそらくそれは単にcomposeがkaptと互換性がないということだけです。
ジャン

回答:


6

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

詳細については、次のYouTrackの問題をご覧ください:IR(Jetpack Compose)、KAPT、Room:「AssertionError:IRバックエンドはKotlinTypeMapper.mapType:MainActivityを呼び出さないでください」。最後のコメントは次のように述べています:

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

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

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.