I get this error:
03-04 09:55:55.915: W/dalvikvm(20171): Exception Ljava/lang/NullPointerException; thrown while initializing La/a/b/k; 03-04 09:55:55.915: W/dalvikvm(20171): Exception Ljava/lang/ExceptionInInitializerError; thrown while initializing La/a/b/l; 03-04 09:55:55.925: W/dalvikvm(20171): threadid=13: thread exiting with uncaught exception (group=0x40ab3300) 03-04 09:55:55.945: E/AndroidRuntime(20171): FATAL EXCEPTION: AsyncTask
With this piece of code:
class Subscribe extends AsyncTask<String, Void, Result> { @Override protected Result doInBackground(String... s) {
This is only in release mode. I am using Jsoup 1.7.2. What's wrong? And as I can see, the errors crashed into "... 17 more," since I assume that the key lies there ...
This is the same question as the error using AsyncTask only when launching the release apk ... please help :( , but it does not answer.
This is cracking me!
source share