gradle 观察到程序包ID '构建工具;位置不一致的“20.0.0

btxsgosb  于 2023-01-26  发布在  其他
关注(0)|答案(4)|浏览(151)
./gradlew --parallel :app:assembleDebugTest

当我在android studio终端中运行上述命令时,我得到了这个错误。

错误并行执行是一个酝酿中的特性。观察到的包ID为“build-tools;“20.0.0”在不一致的位置“sdk/构建工具/android-4.4W”(应为“sdk/构建工具/20.0.0”)

Gradle文件应用插件:'com.安卓.应用程序'

android {
            compileSdkVersion 22
            buildToolsVersion '23.0.2'
            packagingOptions {
                    exclude 'LICENSE.txt'
            }
            defaultConfig {
                    applicationId "package"
                    minSdkVersion 15
                    targetSdkVersion 22
                    versionCode 1
                    versionName "1.0"
                    testApplicationId "package.test"
                    testInstrumentationRunner "package.test.Instrumentation"
            }
            buildTypes {
                    release {
                            minifyEnabled false
                            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                    }
            }
            sourceSets {
                    androidTest {
                            assets.srcDirs = ['src/androidTest/assets']
                    }
            }
            adbOptions {
                    timeOutInMs 60000 // set timeout to 1 minute
            }
    }

    dependencies {
            compile fileTree(dir: 'libs', include: ['*.jar'])
            compile 'com.android.support:appcompat-v7:22.2.1'
            compile project(':sdk')
            androidTestCompile('com.android.support.test:runner:0.4') {
                    exclude module: 'support-annotations'
            }
            androidTestCompile('com.android.support.test:rules:0.4') {
                    exclude module: 'support-annotations'
            }
            androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.1') {
                    exclude module: 'support-annotations'
            }

            androidTestCompile 'org.mockito:mockito-core:1.+'
            androidTestCompile 'com.google.dexmaker:dexmaker:1.2'
            androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'
            androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.2.1') {
                    exclude module: 'support-annotations'
                    exclude group: 'com.android.support', module: 'appcompat'
                    exclude group: 'com.android.support', module: 'support-v4'
                    exclude module: 'recyclerview-v7'
            }

            androidTestCompile 'info.cukes:cucumber-android:1.2.0@jar'
            androidTestCompile 'info.cukes:cucumber-picocontainer:1.2.0'
    }

参考:** cucumber **安卓测试link

q1qsirdb

q1qsirdb1#

我昨天也犯了同样的错误
卸载构建工具:20为我工作
关于此issue的答案很有帮助

oewdyzsn

oewdyzsn2#

重命名文件夹
“软件开发包/构建工具/安卓-4.4W”-〉“软件开发包/构建工具/20.0.0”

o4hqfura

o4hqfura3#

您可能有两个版本相同的生成工具文件夹。在这种情况下,您可能有两个20.0.0版本的生成工具文件夹。删除其中任何一个都可以解决此问题。

否则,您的构建工具已损坏。因此,请删除该文件夹或使用android studio或SDK管理器卸载它,然后重新安装。

brtdzjyr

brtdzjyr4#

如果警告是不言自明的,你们为什么要复杂化?
观察到程序包ID '构建工具;"20.0.0"在不一致的位置"sdk/构建工具/android-4.4W"(应为"sdk/构建工具/20.0.0")
只需相应地修改位置

sudo mv sdk/build-tools/android-4.4W sdk/build-tools/20.0.0

相关问题