【问题标题】:Getting Unresolved reference error while trying to work with Android material3尝试使用 Android material3 时出现未解决的参考错误
【发布时间】:2021-12-28 03:29:22
【问题描述】:

我在尝试使用 Jetpack Compose 和 Material3 组件构建新的 Android 应用程序时遇到以下未解决的参考错误。

到目前为止,我已经尝试了this页面中提到的以下步骤:

  1. 将 android.material 的依赖项更新到 1.5.04 或更高版本
  2. 确保 compileSDK 为 31
  3. 确保使用 JAVA 8 进行编译
  4. 使用 AppCompatActivity 扩展我的 MainActivity
  5. 缓存无效并重新启动

我的gradle代码如下:

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

android {
    compileSdk 31

    defaultConfig {
        applicationId "com.example.recoverme"
        minSdk 21
        targetSdk 31
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        vectorDrawables {
            useSupportLibrary true
        }
    }

    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'
        useIR = true
    }
    buildFeatures {
        compose true
    }
    composeOptions {
        kotlinCompilerExtensionVersion compose_version
        kotlinCompilerVersion '1.5.21'
    }
    packagingOptions {
        resources {
            excludes += '/META-INF/{AL2.0,LGPL2.1}'
        }
    }
}

dependencies {

    implementation 'androidx.core:core-ktx:1.7.0'
    implementation 'androidx.appcompat:appcompat:1.4.0'
    implementation 'com.google.android.material:material:1.6.0-alpha01'
    implementation "androidx.compose.ui:ui:$compose_version"
    implementation "androidx.compose.material:material:$compose_version"
    implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
    implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
    implementation 'androidx.activity:activity-compose:1.4.0'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
    androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
    debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
}

【问题讨论】:

    标签: android kotlin android-jetpack-compose material-components-android


    【解决方案1】:

    你不见了

    implementation "androidx.compose.material3:material3:1.0.0-alpha02"
    

    在你的 build.gradle 中。

    Latest material3 release

    【讨论】:

    • 成功了,谢谢!
    猜你喜欢
    • 2022-11-06
    • 2022-01-08
    • 2019-01-24
    • 1970-01-01
    • 2017-08-08
    • 2023-01-17
    • 1970-01-01
    相关资源
    最近更新 更多