未找到名为“default"的配置.安卓工作室 [英] Configuration with name 'default' not found. Android Studio

查看:29
本文介绍了未找到名为“default"的配置.安卓工作室的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 Android Studio 应用.它有一个库依赖项(Android-Bootstrap),当我尝试同步 gradle 时,它​​给了我一个错误:

I have an Android Studio app. It has a library dependency (Android-Bootstrap), when I try to sync gradle, it gives me an error:

未找到名为default"的配置.

Configuration with name 'default' not found.

我的结构是:

-FTPBackup
   -fotobackup
     -build.gradle
   -Libraries
     -Android-Bootstrap
       -Settings.gradle
       -build.gradle
-Settings.gradle
-Build.gradle

FTPBackup settings.gradle 和 build.gradle:

The FTPBackup settings.gradle and build.gradle:

include ':fotobackup'
include ':libraries:Android-Bootstrap',':Android-Bootstrap'

<小时>

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.9.+'
    }
}

allprojects {
    repositories {
        mavenCentral()
    }
}

而fotobackup里面的build.gradle是:

And the build.gradle inside fotobackup is:

apply plugin: 'android'

android {
    compileSdkVersion 19
    buildToolsVersion '19.0.3'

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

apply plugin: 'android'

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:support-v4:+'
    compile project (':libraries:Android-Bootstrap')
}

库是从 https://github.com/Bearded-Hen/Android-下载的Bootstrap,它有 build.gradle、设置等.

The library is downloaded from https://github.com/Bearded-Hen/Android-Bootstrap and it has build.gradle, settings etc.

怎么了?

推荐答案

一方面,拥有多个 settings.gradle 文件不好——它只看顶部-一级.

For one, it doesn't do good to have more than one settings.gradle file -- it only looks at the top-level one.

当您收到此未找到名称为‘默认’的配置"错误时,这确实令人困惑,但这意味着 Gradle 正在某处寻找模块(或 build.gradle)文件,但没有找到.就您而言,您的 settings.gradle 文件中有此内容:

When you get this "Configuration with name 'default' not found" error, it's really confusing, but what it means is that Gradle is looking for a module (or a build.gradle) file someplace, and it's not finding it. In your case, you have this in your settings.gradle file:

include ':libraries:Android-Bootstrap',':Android-Bootstrap'

这让 Gradle 在 FTPBackup/libraries/Android-Bootstrap 寻找一个库.如果您使用的是区分大小写的文件系统(并且您没有在问题中错误输入 Libraries,而您的意思是 libraries),它可能找不到 FTPBackup/由于大小写不同,库/Android-Bootstrap.它还在 FTPBackup/Android-Bootstrap 寻找另一个库,但它肯定找不到,因为该目录不存在.

which is making Gradle look for a library at FTPBackup/libraries/Android-Bootstrap. If you're on a case-sensitive filesystem (and you haven't mistyped Libraries in your question when you meant libraries), it may not find FTPBackup/Libraries/Android-Bootstrap because of the case difference. It's also looking for another library at FTPBackup/Android-Bootstrap, and it's definitely not going to find one because that directory isn't there.

这应该有效:

include ':Libraries:Android-Bootstrap'

您的 dependencies 块中需要相同的区分大小写的规范:

You need the same case-sensitive spec in your dependencies block:

compile project (':Libraries:Android-Bootstrap')

这篇关于未找到名为“default"的配置.安卓工作室的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆