Using SimpleXML with Android and Gradle

后端 未结 4 1999
暗喜
暗喜 2021-01-30 05:26

I\'m having troubles trying to compile an Android application with Gradle 0.5.+ and Android Studio, using SimpleXML.

This is the error:

Gradle: Execution         


        
4条回答
  •  走了就别回头了
    2021-01-30 05:34

    I think you need to exclude some of dependencies.

    compile('org.simpleframework:simple-xml:2.7.+'){
        exclude module: 'stax'
        exclude module: 'xpp3'
    }
    

提交回复
热议问题