Я внезапно получаю эту ошибку, и я не знаю, как решить эту проблему. Я уже попробовал все предложения здесь Невозможно разрешить зависимость для ': app @ debug / compileClasspath': Не удалось разрешить , но у меня ничего не получалось.
Что я уже пробовал:
- обновил мою sourceCompatibility и targetCompatibility с 1.7 до JavaVersion.VERSION_1_8, как мне было предложено
- Удалил папку .idea
- удален плагин google-services, реализация 'com.google.android.gms: play-services-auth: 17.0.0' в .gradle (приложение) и путь к классу служб google в .gradle (проект) ->по-прежнему возникает ошибка
- Когда я обновляю путь к классу google-services в файле проекта до последней версии 4.3.2, я получаю эту ошибку
- удалил google-services.json и загрузил новыйодин
Could not resolve com.google.gms:google-services:4.3.2.
...
Remote host closed connection during handshake
- Я сделал недействительным Cache / restart
- В диспетчере SDK Android SDK отображается как частично установленный -> нажмите на кнопку Показать детали пакета ->установить нечего, все отображается как установленное
- в файле misc.xml. Уровень языка был обновлен с JDK 1_7 до 1_8
. Возможно, здесь также возникла проблема. прямо сейчасch может быть причиной этой проблемы:
Раньше у меня был установлен SDK 29, но в менеджере SDK он отображался как «частично установленный», но когда я нажал «Показать подробности пакета», установить было нечего. Я хотел переустановить Android 10, поэтому сначала удалил его, но теперь я не могу переустановить его снова, поскольку он больше не отображается в менеджере SDK der Android. Где я могу найти его снова?
Под платформами SDK есть только установленные SDK, но не все SDK, которые я могу установить, это правильное поведение?
Также в разделе «Сайты обновлений SDK» я получаюошибка с «Репозиторием Android» в разделе «Включено» -> красный знак с сообщением «Исключение ввода-вывода при загрузке манифеста»
Вот проблема, с которой я сейчас сталкиваюсь в Android Studio:
ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.google.android.gms:play-services-measurement-base:[17.2.0].
Show Details
Affected Modules: app
ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.google.android.gms:play-services-measurement-impl:[17.2.0].
Show Details
Affected Modules: app
ERROR: Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not resolve com.google.android.gms:play-services-gass:[18.2.0].
Show Details
Affected Modules: app
...
Вот мой build.gradle (проект):
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.google.firebase.firebase-perf'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.example.android.guessit"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0-alpha10'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.android.gms:play-services-auth:17.0.0'
//Firebase SDKs
implementation 'com.google.firebase:firebase-core:17.2.0'
implementation 'com.google.firebase:firebase-auth:19.1.0'
implementation 'com.google.firebase:firebase-analytics:17.2.0'
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
implementation 'com.google.firebase:firebase-ads:18.2.0'
implementation 'com.google.firebase:firebase-perf:19.0.0'
implementation 'com.google.firebase:firebase-messaging:20.0.0'
implementation "androidx.lifecycle:lifecycle-extensions:2.1.0"
//Glide maybe later add code to proguard
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
// Circle ImageView
implementation 'de.hdodenhof:circleimageview:3.0.1'
// CardView and GridLayout
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
// Facebook SDK and login
implementation 'com.facebook.android:facebook-login:4.41.0'
//image downloading and caching library for Android
implementation 'com.squareup.picasso:picasso:2.71828'
}
apply plugin: 'com.google.gms.google-services' // Google Play services Gradle plugin
Как мне решить эту проблему?