मुझे एंड्रॉइड स्टूडियो (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.
क्या आप इस संदेश के साथ मेरी मदद कर सकते हैं? धन्यवाद!