2016-10-21 63 views
0

你好,我有一個問題,thise錯誤錯誤:找不到名稱爲「default」的配置。谷歌不知道

Error:Configuration with name 'default' not found. 

我的build.gradle:projeck

buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:2.2.2' 

     // NOTE: Do not place your application dependencies here; they belong 
     // in the individual module build.gradle files 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
    } 
} 

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

我的build.gradle:應用

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 24 
    buildToolsVersion "24.0.3" 
    defaultConfig { 
     applicationId "com.atry.paradox.listdrop" 
     minSdkVersion 15 
     targetSdkVersion 24 
     versionCode 1 
     versionName "1.0" 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile project(':library2') 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    }) 
    compile 'com.android.support:appcompat-v7:24.2.1' 
    testCompile 'junit:junit:4.12' 
} 

我的設置。 gradle

include ':app', ':library2' 

我在谷歌上尋找這個錯誤,但我找到了將副本庫2複製到主文件的建議。我有同一個文件庫2,我有應用程序,構建,gradle ...

請問我在哪裏做錯誤?

感謝

+0

你能否給出你想要做什麼的更多細節; stackoverflow不適用於代碼審查。我認爲你正在嘗試做一些與android應用有關的事情,但你需要提供更好的上下文。 – jhaagsma

+0

我想將導入庫導入新項目。在mainActivity中什麼都不是。這只是一個新項目,我只在其上編譯項目(':library2')和:'library2',並將library2文件複製到項目文件中。 – user6651666

+0

我解決了我的問題......但我不知道如何.. :) – user6651666

回答

0

這取決於由settings.gradle文件:

include ':app', ':library2' 

搖籃正在尋找2個項目(應用程序和library2)。
這些項目中的每一個都必須包含build.gradle文件。

root 
|--build.gradle 
|--settings.gradle 
|--app 
|----build.gradle 
|--library2 
|----build.gradle 

此錯誤:

Error:Configuration with name 'default' not found. 

發生,如果一個模塊(或更多)好好嘗試一下有build.gradle文件。

檢查您的library2文件夾是否具有build.gradle和正確的結構。

相關問題