3

アプリにデータバインディングを実装しようとしていますが、惨めに失敗しています。同様の問題を抱えている人を見つけることができないので、ここの誰かがなぜこれが起こっているのかについて考えを持っていることを願っています.

提供されたスターター アプリで Android Kotlin Fundamentals のこのチュートリアルに従うと、データ バインディングは完全に機能し、まったく問題はありません。しかし、自分のプロジェクトで同じことをすると、コンパイルされません。必要なファイルの生成に問題があると思います。

私が集めたものから、それはコンパイル SDK のバージョンと関係があります。この build.gradle ファイルを使用して新しいプロジェクトを作成すると、すべてが機能するため、スペル ミスやタグの欠落ではないことがわかります。

plugins {
    id 'com.android.application'
    id 'kotlin-android'
    }

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.3"defaultConfig {
        applicationId "com.example.databinding"
        minSdkVersion 22
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

    buildFeatures {
        dataBinding true
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
   }

   dependencies {

    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.3.2'
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'com.google.android.material:material:1.4.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
    implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
    implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

しかし!Android Studio の推奨事項に従って更新すると、すべてが機能しなくなります。これらは、ファイルで変更される唯一のものです。

    compileSdkVersion 31
    targetSdkVersion 31

    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.4.0'

アプリ > ビルド > ファイル エクスプローラーで生成されたデータ バインディング関連のフォルダー/ファイルが表示されるので、何かが起こっていますが、Android Studio には何も表示されません。ここに記載されているすべてを試しました。どうすればこれを修正できますか?

4

0 に答える 0