내 Android 앱을 실행하는 동안이 오류가 발생합니다 (청소 후 빌드했지만 오류는 여전히 존재합니다)
- 동기화 : OK
- 프로젝트 만들기 : OK
- 청소 : OK
- 실행 : 오류
오류 : 작업 ': app : dexDebug'.com.android.ide.common.process.ProcessException에 대한 실행 실패 : org.gradle.process.internal.ExecException : 프로세스 'command'C : \ Program Files \ Java \ jdk1.7.0 _25 \ bin \ java.exe ''0이 아닌 종료 값 2로 완료
내 gradle 파일 :
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')
}
편집 : "compile fileTree (dir : 'libs', include : [ '* .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')
잘 작동합니다.