I am having problems using Poi to read xlsx files in Android. In my gradle, I have:
- compile fileTree (dir: 'libs', include: '* .jar')
- compile 'org.apache.poi: poi: 3.14'
- compile 'org.apache.poi: poi-ooxml: 3.14'
There is a libs folder xmlbeans-2.6.0.jar. I used to have a problem with a duplicate entry:
org / Apache / XMLBeans / XML / Stream / Location.class
but I can solve with https://issues.apache.org/jira/browse/XMLBEANS-499
Now I get an error with a repeating error:
org / Apache / XMLBeans / XML / Stream / BindigConfig.class
Can someone help me?
source
share