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 ...
請問我在哪裏做錯誤?
感謝
你能否給出你想要做什麼的更多細節; stackoverflow不適用於代碼審查。我認爲你正在嘗試做一些與android應用有關的事情,但你需要提供更好的上下文。 – jhaagsma
我想將導入庫導入新項目。在mainActivity中什麼都不是。這只是一個新項目,我只在其上編譯項目(':library2')和:'library2',並將library2文件複製到項目文件中。 – user6651666
我解決了我的問題......但我不知道如何.. :) – user6651666