appcompat-v7:27.0.1 play-services-maps问题

时间:2017-11-14 21:01:31

标签: android gradle dependencies

我有这个gradle

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.estimote:sdk:1.4.0'
    compile 'com.android.support:appcompat-v7:27.0.1'
    testCompile 'junit:junit:4.12'
    compile('com.crashlytics.sdk.android:crashlytics:2.7.1@aar') {
        transitive = true;
    }
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.afollestad.material-dialogs:core:0.9.5.0'

    compile 'com.google.android.gms:play-services-maps:11.6.0'
    compile 'com.google.android.gms:play-services-location:11.6.0'

}

我有appcompat-v7:27.0.1和谷歌播放服务的问题。 如果我使用26.0.1谷歌播放服务没有问题,但不能使用afollestand 0.9.5.0。 我需要与appcompat-v7:27配合使用的afollestand 0.9.5.0

更新: Gradle image

2 个答案:

答案 0 :(得分:3)

我遇到了同样的问题。用户raghunandan建议的帮助。

在您的Apps文件夹(或Windows上的./gradlew app:dependencies)中使用./gradlew.bat app:dependencies,您将获得所有软件包的依赖关系树。

在那里你可以看到' play-services-maps'需要一些版本为25.2.0的支持包,但大多数支持包已升级为27.0.2。但不是出于某种原因。您可以手动执行此操作,直接包含它们! (无论如何,他们将成为你的APK的一部分)

compile 'com.android.support:support-v4:27.0.2'

在您的应用内添加build.gradle以及support-v7并且它可以正常工作。

答案 1 :(得分:0)

我尝试一切,但真正的答案是等待和更新播放服务。 现在我的gradle看起来像:

   android {
    compileSdkVersion 27
    buildToolsVersion '27.0.3'
    defaultConfig {
        applicationId "xxx.YYY"
        minSdkVersion 19
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
repositories {
    maven {
        url "https://maven.google.com"
    }
}

dependencies {

compile('com.crashlytics.sdk.android:crashlytics:2.7.1@aar') {
    transitive = true;
}
compile 'com.android.support:appcompat-v7:27.0.2'
compile 'com.android.support:cardview-v7:27.0.2'
compile 'com.android.support:recyclerview-v7:27.0.2'
compile 'com.android.support:support-v4:27.0.2'
compile 'com.android.support:design:27.0.2'
compile 'com.google.android.gms:play-services-maps:11.8.0'
compile 'com.google.android.gms:play-services-location:11.8.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.maps.android:android-maps-utils:0.5'
compile 'com.afollestad.material-dialogs:core:0.9.6.0'
testCompile 'junit:junit:4.12'

有0个错误。