android - 错误信息;无法访问类 'androidx.compose.ui.Alignment.Horizontal' 。检查模块类路径是否缺少或冲突的依赖项

标签 android kotlin android-jetpack-compose android-jetpack composable

我正在使用 Jetpack compose 制作一个 QR 码扫描仪应用程序。但是当我尝试使用 Column 时,可组合函数编译器会给出以下错误: 无法访问类“androidx.compose.ui.Alignment.Horizo​​ntal”。检查模块类路径是否缺少或冲突的依赖项

这是我的应用程序 build.gradle 模块:

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

android {
    compileSdk 31

    defaultConfig {
        applicationId "com.plcoding.qrcodescannercompose"
        minSdk 26
        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.1'
    implementation 'com.google.android.material:material:1.5.0'
    implementation "androidx.compose.ui:ui:$compose_version"
    // Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.)
    implementation("androidx.compose.foundation:foundation:1.0.5")
    implementation "androidx.compose.material:material:$compose_version"
    implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
    implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.0'
    implementation 'androidx.activity:activity-compose:1.4.0'


    testImplementation 'junit:junit:4.13.2'
    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"

    // Activity Compose
    implementation "androidx.activity:activity-compose:1.4.0"

    // CameraX
    implementation "androidx.camera:camera-camera2:1.0.2"
    implementation "androidx.camera:camera-lifecycle:1.0.2"
    implementation "androidx.camera:camera-view:1.1.0-beta01"

    // Zxing
    implementation 'com.google.zxing:core:3.3.3'
}

更新:这是生成错误的代码: enter image description here

我不知道此错误消息的含义以及如何解决此问题?

最佳答案

确保将您的 Compose 版本升级到最新的稳定版本 1.1.0-rc03

如果您的项目由多个模块组成,请确保所有模块都使用相同版本的 Compose。

关于android - 错误信息;无法访问类 'androidx.compose.ui.Alignment.Horizontal' 。检查模块类路径是否缺少或冲突的依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71005852/

相关文章:

android - 在Android中自动在电话号码中添加破折号

Android Instant App - Play Console 发布/部署错误和 DAL(数字 Assets 链接)未链接

Android ListView,OnListItemClick,找到行号?

Android Jetpack 导航禁用滚动位置

kotlin - 根据传入的状态类类型构成 UI 操作的层次结构

android - 如何编写组合的 CheckboxPreference/PreferenceScreen?

arrays - Kotlin 中的展平数组

android kotlin - 手机锁定/屏幕关闭后运行的应用程序

android - WebView 嵌套滚动在 Android Jetpack Compose 中不起作用

android - Jetpack 撰写 : Not able to show text in TextField