找不到名称为“默认”的Android Studio Gradle配置

我在使用Android Studio(0.1.5)编译应用程序时遇到问题。该应用程序使用2个库,其中包括以下内容:


settings.gradle


include ':myapp',':library',':android-ColorPickerPreference'

的build.gradle


buildscript {

    repositories {

        mavenCentral()

    }

    dependencies {

        classpath 'com.android.tools.build:gradle:0.4'

    }

}

apply plugin: 'android'


dependencies {

    compile files('libs/android-support-v4.jar')

    compile project(':library')

    compile project(':android-ColorPickerPreference')


}


android {

    compileSdkVersion 17

    buildToolsVersion "17.0.0"


    defaultConfig {

        minSdkVersion 7

        targetSdkVersion 16

    }

}

编译时收到以下消息:


  Gradle: A problem occurred configuring project ':myapp'.

   > Failed to notify project evaluation listener.

   > Configuration with name 'default' not found.

您能帮我这个消息吗?谢谢!


LEATH
浏览 704回答 3
3回答

哆啦的时光机

我忘了拉所有子模块。所以我的compile project(':something')无法解决。解git submodule update --init
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android