Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android JSOUP ExceptionInInitializerError

Tags:

android

jsoup

I updated my dex classes with amigo library (it's changing one apk for another apk with the same key and signature, all is working except JSOUP)

Error:

FATAL EXCEPTION: Thread-1567 Process: com.smedic.tubtub, PID: 26102 java.lang.ExceptionInInitializerError at org.jsoup.nodes.Document$OutputSettings.(Document.java:372) at org.jsoup.nodes.Document.(Document.java:19) at org.jsoup.parser.TreeBuilder.initialiseParse(TreeBuilder.java:32) at org.jsoup.parser.TreeBuilder.parse(TreeBuilder.java:42) at org.jsoup.parser.HtmlTreeBuilder.parse(HtmlTreeBuilder.java:56) at org.jsoup.parser.Parser.parseInput(Parser.java:32) at org.jsoup.helper.DataUtil.parseByteData(DataUtil.java:104) at org.jsoup.helper.HttpConnection$Response.parse(HttpConnection.java:666) at org.jsoup.helper.HttpConnection.get(HttpConnection.java:225) at com.power.mati.VideosAdapter$4.run(VideosAdapter.java:177) at java.lang.Thread.run(Thread.java:818) Caused by: java.lang.IllegalStateException: Could not read resource entities-xhtml.properties. Make sure you copy resources for org.jsoup.nodes.Entities at org.jsoup.nodes.Entities.load(Entities.java:289) at org.jsoup.nodes.Entities.access$000(Entities.java:25) at org.jsoup.nodes.Entities$EscapeMode.(Entities.java:48)

Any idea how to fix it?

I am using jars and maven, same situation.

like image 819
ramzixp Avatar asked Nov 20 '16 12:11

ramzixp


2 Answers

I saw something similar and my solution is in proguard

-keep class org.jsoup.**
like image 104
Louis Tsai Avatar answered Nov 15 '22 22:11

Louis Tsai


Update the library, use this one :

implementation 'org.jsoup:jsoup:1.13.1'

Your problem will be resolved...

like image 27
Sai Avatar answered Nov 15 '22 22:11

Sai