我在使用 Android Studio (0.1.5)编译我的应用程序时遇到了问题。 这个应用程序使用了两个图书馆,我已经包括如下:
设置
include ':myapp',':library',':android-ColorPickerPreference'
建造,分级
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.
你能帮我留言吗? 谢谢!