gpt4 book ai didi

android - 带有 Retrofit gradle 问题的简单 XML

转载 作者:行者123 更新时间:2023-11-29 01:25:54 24 4
gpt4 key购买 nike

我在编译用于改造的简单 xml 转换器时遇到了问题:

Warning:Dependency xpp3:xpp3:1.1.3.3 is ignored for debug as it may be conflicting with the internal version provided by Android.
In case of problem, please repackage it with jarjar to change the class packages

我检查了另一个答案以了解常见的解决方案,比如插入

  compile ('com.squareup.retrofit:converter-simplexml:1.9.0') {
exclude group: 'xpp3', module: 'xpp3'
exclude group: 'stax', module: 'stax-api'
exclude group: 'stax', module: 'stax'
}

(或没有 group 类型),multiDexEnabled true 或清理项目。

但是问题还是出现了。我想它可能与 jdk 1.8 版本有关,或者可能是我不确定的棘手问题。

gradle.build

apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'


android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "com.task.projectname"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}


buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}


dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile ('com.squareup.retrofit:converter-simplexml:1.9.0') {
exclude group: 'xpp3', module: 'xpp3'
exclude group: 'stax', module: 'stax-api'
exclude group: 'stax', module: 'stax'
}

compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.squareup.okhttp:okhttp:2.4.0'
compile 'org.simpleframework:simple-xml:2.7.1'
compile 'com.google.code.gson:gson:2.4'

// other dependencies
}

谢谢!

最佳答案

这似乎很奇怪,但是当我删除转换器依赖项时,它运行良好。

compile 'com.squareup.retrofit:converter-simplexml:1.9.0'

关于android - 带有 Retrofit gradle 问题的简单 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34093718/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com