Я обновил свое приложение до compileSdkVersion 27
, я также обновил gradle plugin
до 3.0.1'
и все библиотеки play-services
до version 15.0.0
Теперь, когда я собираю приложение, оно дает мне следующеесообщение об ошибке.
Не удалось разрешить: play-services-basement
Я использую force 'com.google.android.gms:play-services-basement:15.0.0'
, я не могу понять, почему он выдает мне это сообщение об ошибке.
Это мои настройки Gradle.
compileSdkVersion 27
buildToolsVersion "27.0.1"
defaultConfig {
applicationId ''
minSdkVersion 21
targetSdkVersion 27
versionCode 285
multiDexEnabled true
resConfigs "en"
}
resolutionStrategy {
force 'com.squareup.okhttp:okhttp:2.4.0'
force 'com.squareup.okhttp:okhttp-urlconnection:2.4.0'
force 'com.android.support:support-v4:24.1.1'
force 'com.android.support:cardview-v7:24.1.1'
force 'com.android.support:appcompat-v7:24.1.1'
force 'com.android.support:design:24.1.1'
force 'com.google.android.gms:play-services-ads:15.0.0'
force 'com.google.android.gms:play-services-location:15.0.0'
force 'com.google.android.gms:play-services-auth-base:15.0.1'
force 'com.google.android.gms:play-services-base:15.0.0'
force 'com.google.android.gms:play-services-maps:15.0.0'
force 'com.google.android.gms:play-services-identity:15.0.0'
force 'com.google.android.gms:play-services-wallet:15.0.0'
force 'com.google.android.gms:play-services-tasks:15.0.0'
force 'com.google.android.gms:play-services-basement:15.0.0'
force 'com.google.firebase:firebase-common:15.0.0'
force 'com.google.android.gms:play-services-base:15.0.0'
}
dependencies {
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.google.android.gms:play-services-maps:15.0.0'
implementation 'com.google.android.gms:play-services-analytics:15.0.0'
implementation 'com.google.android.gms:play-services-location:15.0.0'
implementation 'com.google.firebase:firebase-appindexing:15.0.0'
implementation 'com.google.android.gms:play-services-auth:15.0.0'
implementation 'com.google.android.gms:play-services-auth-base:15.0.0'
implementation 'com.google.android.gms:play-services-panorama:15.0.0'
implementation 'com.google.android.gms:play-services-ads:15.0.0'
implementation('com.google.firebase:firebase-messaging:15.0.0') {
exclude group: 'com.android.support', module: 'support-v4'
exclude group: 'com.android.support', module: 'support-annotations'
}
implementation 'com.google.firebase:firebase-core:15.0.0'
implementation 'org.jsoup:jsoup:1.8.3'
}
Свойства Gradle-wrapper
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
build.gradle
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.google.gms:google-services:3.2.0'