मुझे यह त्रुटि मेरे Android एप्लिकेशन को निष्पादित करने में मिल रही है (मैंने इसे साफ़ किया और फिर इसे बनाया, लेकिन त्रुटि अभी भी मौजूद है)
- सिंक: ठीक है
- प्रोजेक्ट बनाएं: ठीक है
- स्वच्छ: ठीक है
- रन: त्रुटि
त्रुटि: कार्य के लिए निष्पादन विफल रहा: 'app: dexDebug'। _25 \ bin \ java.exe '' गैर-शून्य निकास मान 2 के साथ समाप्त हुआ
मेरी ग्रेड फ़ाइल:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.rzr.rzevallosr.miappdepruebas"
minSdkVersion 19
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
// This library handles authentication and authorization
compile 'com.spotify.sdk:spotify-auth:1.0.0-beta9@aar'
// This library handles music playback
compile 'com.spotify.sdk:spotify-player:1.0.0-beta9@aar'
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:recyclerview-v7:21.0.+'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.2.0'
compile 'com.squareup.okhttp:okhttp:2.2.0'
compile files('libs/spotify-web-api-android-master-0.1.0.jar')
compile files('libs/okio-1.3.0.jar')
}
संपादित करें: मैंने "फ़ाइल संकलित नहीं किया है (dir: 'libs', शामिल हैं: ['* .jar'])" यह दो बार मेरे पुस्तकालयों को संकलित कर रहा था, इसलिए मैं सिर्फ टिप्पणी करता हूं:
//compile 'com.squareup.retrofit:retrofit:1.9.0'
//compile 'com.squareup.okhttp:okhttp-urlconnection:2.2.0'
//compile 'com.squareup.okhttp:okhttp:2.2.0'
//compile files('libs/spotify-web-api-android-master-0.1.0.jar')
//compile files('libs/okio-1.3.0.jar')
और यह ठीक काम करता है।