我正在做项目,今天的构建不再起作用了 错误如下:

判断AAR元数据时发现2个问题:

  1. 依赖项‘androidx.core:core:1.12.0-alpha01’需要以下库和应用程序 依赖它来编译代码"Upside DownCake" Android接口.

    :APP目前是针对Android-33编译的.

    建议操作:使用不同版本的依赖项‘androidx.core:core:1.12.0-alpha01’, 或者在你的build.gradle中将编译SdkPview设置为"Upside DownCake" 如果您打算try 使用该预览SDK,请使用该文件.

  2. 依赖项‘androidx.core:core-ktx:1.12.0-alpha01’需要以下库和应用程序 依赖它来编译代码"Upside DownCake" Android接口.

    :APP目前是针对Android-33编译的.

    建议操作:使用不同版本的依赖项‘androidx.core:core-ktx:1.12.0-alpha01’, 或者在你的build.gradle中将编译SdkPview设置为"Upside DownCake" 如果您打算try 使用该预览SDK,请使用该文件.

根据我的研究,我了解到错误消息中的版本是昨天发布的.我们可以在链接Android Official Documentation上看到这一点

我将在这里添加项目正在使用的build.gradle脚本. 在我的build.gradle中,我实现了‘androidx.core:core-ktx:1.9.0’.我不明白为什么在构建阶段添加其他版本,以及为什么添加androidx.core:core:1.12.0-alpha01.

Build.gradle:

buildscript {

    apply from: './dependencies.gradle'

    repositories {
        google()
        mavenCentral()
        jcenter()
        gradlePluginPortal()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:7.4.0'
        classpath 'com.google.gms:google-services:4.3.14'
        classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin_version"
        classpath "com.google.dagger:hilt-android-gradle-plugin:$versions.hilt_android"
    }
}

allprojects {
    repositories {
        google()
        mavenCentral()
        jcenter()
        maven { url "https://maven.google.com" }
        maven { url 'https://jitpack.io' }
        maven { url = "https://jcenter.bintray.com" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Dependencies.gradle:

ext.versions = [
    minSdkLib        : 23,
    compileSdk       : 33,
    versionCode      : 8,
    versionName      : '1.0.8',

    kotlin_version : '1.8.0',
    hilt_android : '2.44',
    hilt_compiler : '2.44',
]

Build.gradle(APP)

    plugins {
    id 'com.android.application'
    id 'kotlin-android'
    id 'kotlin-kapt'
    id 'kotlin-parcelize'

    id 'com.google.gms.google-services'
    id 'com.google.firebase.crashlytics'
    id 'dagger.hilt.android.plugin'
    id 'org.jetbrains.kotlin.android'
}

java {
    toolchain {
        languageVersion.set(JavaLanguageVersion.of(11))
    }
}

apply from: '../dependencies.gradle'

android {
    compileSdkVersion versions.compileSdk
    buildToolsVersion "30.0.3"

    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }

    buildFeatures {
        dataBinding = true
        // for view binding:
        viewBinding true
    }

    defaultConfig {
        applicationId "***"
        minSdkVersion versions.minSdkLib
        targetSdkVersion versions.compileSdk
        versionCode versions.versionCode
        versionName versions.versionName
        multiDexEnabled true
        vectorDrawables.useSupportLibrary = true
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        signingConfig signingConfigs.debug
    }

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

        debug {
            debuggable true
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    compileOptions {
        // Flag to enable support for the new language APIs
        coreLibraryDesugaringEnabled true

        sourceCompatibility JavaVersion.VERSION_11
        targetCompatibility JavaVersion.VERSION_11
    }

    kotlinOptions {
        jvmTarget = '11'
    }

    packagingOptions {
        exclude 'META-INF/proguard/androidx-annotations.pro'
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/ASL2.0'
    }

}

dependencies {
    implementation fileTree(dir: "libs", include: ["*.jar"])

    implementation 'androidx.core:core-ktx:1.9.0'
    implementation 'androidx.appcompat:appcompat:1.6.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
    implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'

    implementation 'androidx.annotation:annotation:1.5.0'
    implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"
    implementation "androidx.lifecycle:lifecycle-common-java8:2.5.1"
    implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.5.1"
    /*work */
    implementation 'androidx.work:work-runtime:2.7.1'

    implementation 'com.google.android.material:material:1.8.0'
    // Added Dependencies
    implementation "androidx.recyclerview:recyclerview:1.2.1"
    //
    implementation 'android.arch.lifecycle:extensions:1.1.1'
    implementation 'androidx.activity:activity-ktx:1.6.1'

    implementation("io.coil-kt:coil:1.2.0")
    /*Marshmallow permission*/
    implementation 'com.karumi:dexter:6.2.3'
    /*This is a logger with a small, extensible API which provides utility on top of Android's normal Log class.*/
    implementation 'com.jakewharton.timber:timber:4.7.1'

    implementation 'com.squareup.retrofit2:retrofit:2.9.0'
    implementation "com.squareup.okhttp3:okhttp:4.10.0"
    implementation 'com.squareup.okhttp3:logging-interceptor:4.10.0'

    implementation "com.squareup.retrofit2:converter-moshi:2.9.0"
    implementation "com.squareup.moshi:moshi-kotlin:1.14.0"
    implementation 'com.squareup.moshi:moshi:1.14.0'
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
    kapt 'com.squareup.moshi:moshi-kotlin-codegen:1.14.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
    //Dagger Hilt
    implementation "com.google.dagger:hilt-android:$versions.hilt_android"
    implementation 'org.chromium.net:cronet-embedded:108.5359.79'
    kapt "com.google.dagger:hilt-android-compiler:$versions.hilt_compiler"
    kapt 'androidx.hilt:hilt-compiler:1.0.0'

    // Paging
    implementation "androidx.paging:paging-runtime-ktx:3.1.1"

    /*kotlin coroutines*/
    implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4"
    implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"

    implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1"
    implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.2")
    coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.0'


    /*ssp for text size for all multiple devices*/
    implementation 'com.intuit.ssp:ssp-android:1.0.6'
    /*sdp for all multiple devices size*/
    implementation 'com.intuit.sdp:sdp-android:1.0.6'

    /*Image picker and Camera*/
    implementation 'com.github.dhaval2404:imagepicker-support:1.7.1'

    /*Crash reporter in debug builds only */
    debugImplementation 'com.balsikandar.android:crashreporter:1.1.0'

    //Biometric
    implementation 'androidx.biometric:biometric:1.1.0'

    //FCM
    implementation platform('com.google.firebase:firebase-bom:31.0.2')
    implementation 'com.google.firebase:firebase-analytics-ktx'
    implementation 'com.google.firebase:firebase-crashlytics-ktx'
    implementation 'com.google.firebase:firebase-messaging-ktx'

    //Calendar
    implementation 'com.applandeo:material-calendar-view:1.8.0-rc01'

    //Horizontal Calendar
    implementation 'devs.mulham.horizontalcalendar:horizontalcalendar:1.3.4'

    //Stripe SDK
    implementation 'com.stripe:stripe-android:20.16.1'

    //Testing Libs
    testImplementation 'junit:junit:4.13.2'
    testImplementation "com.google.truth:truth:1.1.3"
    androidTestImplementation "com.google.truth:truth:1.1.3"
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
    androidTestImplementation "androidx.test:core-ktx:1.5.0"
    debugImplementation 'androidx.fragment:fragment-testing:1.5.5'

    //
    implementation 'de.hdodenhof:circleimageview:3.1.0'
    ///Zoom image
    implementation 'com.jsibbold:zoomage:1.3.1'
    ///S: glide
    implementation 'com.github.bumptech.glide:glide:4.12.0'
    kapt 'com.github.bumptech.glide:compiler:4.12.0'
    //Bar
    implementation 'com.github.hadiidbouk:ChartProgressBar-Android:2.0.6'
     // One Signal
    implementation 'com.onesignal:OneSignal:[4.0.0, 4.99.99]'
    // Color picker
    implementation 'com.github.yukuku:ambilwarna:2.0.1'
    implementation 'com.squareup.retrofit2:adapter-rxjava2:2.6.1'
    implementation group: 'com.squareup.retrofit2', name: 'adapter-rxjava2', version: '2.6.1'
    // Toast
    implementation 'com.github.ahmmedrejowan.CuteToast:CuteToast:1.2'

}

推荐答案

我也有同样的问题,但我的项目没有这generic个依赖项:

androidx.core:core-ktx:+

但我的一些依赖项有它(您可以在Gradle的"依赖项分析器"中看到它).因此,您需要告诉Gradle对您的依赖项强制使用特定的依赖项版本:

configurations.all {
    resolutionStrategy {
        force("androidx.core:core-ktx:1.9.0")
    }
}

Android相关问答推荐

致命异常:java.lang. SecureExcellent::用户10021和当前进程都没有android. permissions.Change_WIFI_STATE

垂直居中图标

更新画布上的绘图以具有水平填充

错误:无法解析Symbol@style/Theme. Androidstudio in AndroidManifest.html for Kotlin Android Development''

ENV变量在gradle进程中没有更新

Android Compose Lazy柱形实时UI更改

无法从API访问项目详细信息

MAP函数返回单位列表而不是字符列表

如何在Android中编写挂起函数和stateflow的单元测试

OverridePendingTransition已弃用,我该怎么办?

如何在 Android Studio 中为带有 Room 的 SQLite 编写需要参数的查询?

修复错误 Invariant Violation: requireNativeComponent: "RNSScreenStackHeaderConfig" was not found in the UIManager

在 Compose 中停止键盘将顶部应用栏推离屏幕

我不能在 jetpack Compose 中使用 TextField()(material 3)

如何在jetpack compose中创建水印文字效果

如何在 MAUI 项目中包含每个平台的现有 C++ 库?

在alert 对话框生成器中启动协程

Jetpack Compose Material3 - switch 标签

如何使用 Glide 将图像下载到设备内部存储

如何使伴奏导航 BottomSheet 完全展开?