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.
이 메시지를 좀 도와 주시겠습니까? 감사!