:app » com.google.android.play:core:1.10.0 [Предотвращает выпуск приложения в
консоли Google Play] com.google.android.play:core версии 1.10.0
была сообщил автор считает его проблематичным и заблокирует публикацию
вашего приложения в Play Console. Примечание. Обновите зависимость Play Core Maven
до версии, совместимой с Android 14! Ваша текущая библиотека Play Core
несовместима с 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'`
введите здесь описание изображения
Подробнее здесь: https://stackoverflow.com/questions/789 ... in-android
Мобильная версия