Я не использовал «com.google.android.play:core:1.10.3» в своем проекте gradle, но почему появилось приведенное ниже предупреждение
:app » com.google.android.play:core:1.10.0 [Предотвращает выпуск приложения в Консоль Google Play] com.google.android.play:базовая версия 1.10.0 имеет автор сообщил как проблемный и заблокирует публикацию вашего приложения в Play Console. Примечание. Обновите Play Core Maven. зависимость от версии, совместимой с Android 14! Ваше текущее ядро Google Play библиотека несовместима с targetSdkVersion 34 (Android 14), которая вносит обратно несовместимое изменение в вещательные приемники, чтобы повысить безопасность пользователей. Напоминаем, что с 31 августа в Google Play требует, чтобы все новые выпуски приложений были ориентированы на Android 14. Обновите версию последняя версия библиотеки Play Core, позволяющая избежать сбоев приложения: https://developer.android.com/guide/playcore#playcore-migration
Град моего проекта (уровень приложения) доступен ниже:
`
apply plugin: 'com.android.application'
android {
defaultConfig {
//compileSdkVersion 34
compileSdk 34
applicationId 'com.example.app'
minSdkVersion 24
targetSdkVersion 34
versionCode 5
versionName "1.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
debuggable false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
buildFeatures {
viewBinding = true
}
namespace 'com.example.app'
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.7.7'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
implementation "androidx.recyclerview:recyclerview:1.3.2"
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'com.github.bumptech.glide:glide:4.16.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.16.0'
implementation 'com.airbnb.android:lottie:6.5.0'
implementation 'com.android.support:multidex:2.0.1'
// CameraX dependencies
def camerax_version = "1.4.0-rc01"
implementation "androidx.camera:camera-core:$camerax_version"
implementation "androidx.camera:camera-camera2:$camerax_version"
implementation "androidx.camera:camera-lifecycle:$camerax_version"
implementation "androidx.camera:camera-view:$camerax_version"
// ML Kit dependencies
implementation 'com.google.mlkit:text-recognition:16.0.1'
// ML-Kit to identify the language of the recognized text
implementation 'com.google.mlkit:language-id:17.0.6'
// ML-Kit to translate the recognized text
implementation 'com.google.mlkit:translate:17.0.3'
implementation 'com.google.mlkit:playstore-dynamic-feature-support:16.0.0-beta2'
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
implementation 'com.squareup.retrofit2:converter-gson:2.11.0'
implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0'
}
apply plugin: 'org.jetbrains.kotlin.android'`
Когда я загружаю пакет приложения, возникает следующая ошибка:
попробуйте любой из перечисленных здесь способов, чтобы проверить, какую зависимость вы используете, используя play:core: Как показать дерево зависимостей в Android Studio?