Reputation: 1
I want to run docx4j
on Android. I'm downloaded this eclipse project and extract the jar
that when I import into my Android project and run, the application crashed with error message:
java.lang.NoClassDefFoundError: org.apache.log4j.Logger
.
Including log4j
in Android project and app crashed with other errors and etc. Can anyone share how they have been dealt with this problem ?
Upvotes: 0
Views: 1682
Reputation: 15878
Try https://github.com/plutext/AndroidDocxToHtml
See further http://www.docx4java.org/blog/2012/05/jaxb-can-be-made-to-run-on-android/
http://www.docx4java.org/forums/android-f19/images-t1977.html explains how to use Proguard to keep below the method limit with dex files
Upvotes: 1