I have an Android project that requires the Jsoup library. I've tried everything I can think of to get the jar shaded into the APK.. I just can't get it working. Logcat tells me:

FATAL EXCEPTION: main
java.lang.NoClassDefFoundError: org.jsoup.Jsoup

Does anyone know how to include/shade a maven artifact into an APK with Android Studio?

有帮助吗?

解决方案

I have found the answer. The trick is to append ":sources". See an example here: http://www.alonsoruibal.com/my-gradle-tips-and-tricks/

其他提示

I have seen the same type of error every time someone else adds a library with Gradle. Build is usually successful but app crashes when it tries to use the new library. Running task clean with Gradle helps.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top