web-dev-qa-db-ja.com

エラー:その名前のタスクが既に存在するため、タスク 'clean'を追加できません

Gradleからビルドしているときに問題が発生しました。これは私が直面しているエラーです:

エラー:その名前のタスクが既に存在するため、タスク 'clean'を追加できません。

これが私のGradleです

apply plugin: 'com.Android.application'Android {
compileSdkVersion 28
buildToolsVersion "25.0.1"
defaultConfig {
    applicationId "net.accedegh.retrofitlibrary"
    minSdkVersion 17
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
    }
}dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.Android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.Android.support', module: 'support-annotations'
})
//noinspection GradleCompatible
implementation 'com.Android.support:appcompat-v7:28.0.0'
implementation "com.Android.support:recyclerview-v7:28.0.0"
implementation 'com.Android.support:cardview-v7:28.0.0'
implementation 'com.squareup.retrofit2:retrofit:2.1.0'
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
implementation 'com.squareup.picasso:picasso:2.4.0'
implementation 'com.github.jd-alexander:LikeButton:0.2.0'
implementation'com.github.bumptech.glide:glide:3.7.0'compile 'com.github.varunest:sparkbutton:1.0.3'
implementation 'com.Android.support:design:28.0.0'
androidTestCompile 'junit:junit:4.12'}

トップレベル build.gradleファイル

// Top-level build file where you can add configuration options common to all sub-projects/modules. 
buildscript { 
    repositories { 
        jcenter() 
        google() 
    } 

   dependencies { 
        classpath 'com.Android.tools.build:gradle:3.3.2' 
       // NOTE: Do not place your application dependencies here; they belong 
       // in the individual module build.gradle files 
   } 
} 

allprojects { 
    repositories { 
        maven { 
            url 'maven.google.com' 
            name 'Google' 
        } 
    } 

    task clean(type: Delete) { 
        delete rootProject.buildDir 
    } 
}

誰かが知っている場合の解決策を教えてください。

4
Muhammad Zubair

このタスクはプロジェクトレベルで定義されていますbuild.gradle(コメントに投稿されたとおり):

task clean(type: Delete) { 
    delete rootProject.buildDir 
}

Android StudioのGradleラッパーにはすでにcleanタスクが定義されているので、再定義する必要はありません。プロジェクトレベルからそのタスクを削除するだけですbuild.gradleファイル。

15
Michael Dodd