3
我使用JSONPATH庫GSON重複輸入錯誤 - JSONPath與GSON
compile 'com.google.code.gson:gson:2.5'
compile 'com.jayway.jsonpath:json-path:2.1.0'
我已經使用這兩個庫。當我建立我的項目時,它不顯示任何錯誤。但是,當我跑我的項目,它顯示
Error:Execution failed for task '**:app:transformClassesWithJarMergingForDebug'.
com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: org/objectweb/asm/AnnotationVisitor.class**" error.
任何人可以幫助我嗎?
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId ""
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName '0.2'
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.google.code.gson:gson:2.4'
compile 'com.jayway.jsonpath:json-path:2.0.0'
}
這是我的build.gradle。
問題出在圖書館。它顯示重複的文件條目。
你需要表現出一定的代碼。 – Shawn
@Shawn我發佈了build.gradle文件 – droid23
compile'com.jayway.jsonpath:json-path:0.9.1'0 這個版本的jsonPath庫解決了這個問題。有人可以解釋爲什麼嗎? – droid23