Android Studio Gradle Sync错误:配置名称'默认'未找到

时间:2015-06-02 15:46:13

标签: android android-studio gradle

我正在使用BottomSheet库创建BottomSheet menu,如Google文档中所述。

我将BottomSheet库添加到我的项目中但是当我与gradle同步时,我收到错误消息。我尝试了Error: Configuration with name 'default' not found in Android Studio中列出的所有答案以及stackoverflow上列出的其他解决方案,但问题仍然存在。

以下是我项目的build.gradle和设置文件:

BottomSheet /的build.gradle

buildscript {
    repositories {
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:1.2.3'
    }
}

allprojects {
    group = POM_GROUP_ID
    version = POM_VERSION

    repositories {
        jcenter()
      }

    tasks.withType(JavaCompile) {
        options.encoding = "UTF-8"
    }
}


task wrapper(type: Wrapper) {
    gradleVersion = '1.12'
}

应用程序/的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.example.khsingh.stockysingh"
        minSdkVersion 15
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.0.0'
    compile "com.android.support:appcompat-v7:21.0.+"
    compile project(":BottomSheet")



}

根/的build.gradle

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

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.1.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files

    }
}

allprojects {
    repositories {
        jcenter()
    }
}

settings.gradle

include ':app', ':BottomSheet'
project(':BottomSheet').projectDir = new File('library/BottomSheet')

1 个答案:

答案 0 :(得分:0)

将此添加到您的app/build.gradle

compile 'com.cocosw:bottomsheet:1.+@aar'

如果在任何情况下,您希望在应用中拥有完整的库源代码,请按照以下说明下载库源代码:

  
      
  1. 右键点击Android Studio中应用程序的根目录(左视图)
  2.   
  3. 选择"打开模块设置"
  4.   
  5. 选择" +"新窗口左上角的图标
  6.   
  7. 选择"从gradle / eclipse项目导入"。
  8.   

现在库应该在您的工作区中。

  
      
  1. 从模块列表中选择您的应用
  2.   
  3. 点击"依赖关系"
  4.   
  5. 点击绿色" +"在右侧并选择"库依赖"
  6.   
  7. 选择BottomSheets库
  8.   
  9. 应用
  10.   

Android Studio现在应该自动将库插入您的应用并成功同步