app(26.1.0)和测试app(27.1.1)的已解决版本有所不同

时间:2018-05-01 16:48:39

标签: android build.gradle

这是完整的错误 -

Error:Execution failed for task ':app:preDebugAndroidTestBuild'.
> Conflict with dependency 'com.android.support:support-annotations' in project ':app'. Resolved versions for app (26.1.0) and test app (27.1.1) differ. See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.

我知道这类答案有很多解决方案,但我在android studio中绝对是初学者,我无法理解那些与gradle交互的命令行界面等解决方案......

如果有的话,我一直在寻找这个问题的简单解决方案。 非常感谢!

10 个答案:

答案 0 :(得分:23)

更改构建gradle应用中的所有实现 例如。

  implementation 'com.android.support:appcompat-v7:27.1.1'
  implementation 'com.android.support:design:27.1.1'
  implementation 'com.android.support:support-annotations:27.1.1'

将所有内容更改为最新版本(27.1.1)并同步项目。

答案 1 :(得分:19)

最近我又遇到了这个错误。...我只是去构建->重建项目,它每次都对我有用。

答案 2 :(得分:9)

configurations.all{
    resolutionStrategy {
        force 'com.android.support:support-annotations:26.1.0'
    }
}

答案 3 :(得分:6)

在gradle文件中修改以下行。

//From 
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
//To
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

答案 4 :(得分:3)

这种错误确实让我对Android Studio感到愤慨。

但无论如何,我的解决方案非常简单:编辑app.iml并更改com.android.support:support-annotations版本。在这种情况下,它很容易找到,只需ctrl+F并键入" 27.1.1" (它应该是唯一的命中)并更改为您的版本" 26.1.0"。

换句话说,从

更改它
<orderEntry type="library" scope="TEST" name="com.android.support:support-annotations:27.1.1@jar" level="project" />

<orderEntry type="library" scope="TEST" name="com.android.support:support-annotations:26.1.0@jar" level="project" />

答案 5 :(得分:1)

它只需要几步...... 1.转到module.app文件。 2.更改目标sdk版本并将sdk版本编译为最新版本(此处为27) 3.然后将appcompact版本更改为27.1.1 4.同步gradle文件

答案 6 :(得分:1)

转到build.gradle(Module:app)文件,将compile 'com.android.support:support-annotations:27.1.1'添加到依赖项中,然后再次点击“立即同步”。

答案 7 :(得分:0)

使用

implementation 'com.android.support:appcompat-v7:27.1.1'

代替

implementation 'com.android.support:appcompat-v7:26.1.1'

并将compileSdkVersion 26 更改为 27

答案 8 :(得分:-1)

您的根gradle文件应包含:

buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
    }
}

allprojects {
    repositories {
        jcenter()
        google ()
    }
}

模块gradle文件应包含以下库:

buildscript {
    repositories {
        jcenter()
        mavenCentral()
    }
}
apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    buildToolsVersion "27.0.3"

    defaultConfig {
        applicationId "your.package.name"
        minSdkVersion 17
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES.txt'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/dependencies.txt'
        exclude 'META-INF/LGPL2.1'
    }
}


repositories {
    jcenter()
    mavenCentral()
    maven { url 'https://maven.google.com' } // necessary for Android API 26
    maven { url 'https://maven.fabric.io/public' }
    maven { url "https://jitpack.io" }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:cardview-v7:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support:recyclerview-v7:27.1.1'
    implementation 'com.android.support:support-v4:27.1.1'

    implementation 'com.google.firebase:firebase-ads:15.0.0'

    implementation 'com.google.android.gms:play-services-location:15.0.0'
    implementation 'com.google.android.gms:play-services-maps:15.0.0'
}

这只是典型的简单gradle配置的一个例子。根据需要使用

答案 9 :(得分:-1)

使用支持库的最新稳定版本

在此处跟踪最新版本 https://mvnrepository.com/artifact/com.android.support

截至2018年9月28日,最新版本为28.0.0

  implementation 'com.android.support:appcompat-v7:28.0.0'
  implementation 'com.android.support:support-annotations:28.0.0'