web-dev-qa-db-ja.com

一貫性のない場所で観察されたパッケージID 'build-tools; 20.0.0'

  ./gradlew --parallel :app:assembleDebugTest

Android studio端末で上記のコマンドを実行すると、このエラーが発生しました。

エラー並列実行はインキュベーション機能です。 一貫性のない場所「sdk/build-tools/Android-4.4W」で観察されたパッケージID「build-tools; 20.0.0」(予想される「sdk/build-tools/20.0.0」)

Gradleファイル適用プラグイン: 'com.Android.application'

    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'
    }

リファレンス:CucumberAndroid Test link

15
Jithish P N

私は昨日同じエラーに直面しました

build-tools:20をアンインストールするとうまくいきました

これに対する答え issue は役に立ちました

11
Adeel Javed

フォルダの名前を変更する

「sdk/build-tools/Android-4.4W」->「sdk/build-tools/20.0.0」

5
张文枫

フォルダの名前を変更すると、「sdk/build-tools/Android-4.4W」->「sdk/build-tools/20.0.0」という問題が解決しました

0
manish bansal