From a21e2f6a7c8f36a282bc0348e49b386662b1f5cb Mon Sep 17 00:00:00 2001 From: DF1E Date: Thu, 12 Feb 2015 18:28:34 +0100 Subject: [PATCH] fix ReadingActivity I had no problems on stock android but on cyanogenmod I got crashes without this --- proguard-project.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/proguard-project.txt b/proguard-project.txt index 1f0a043..e1acdcd 100644 --- a/proguard-project.txt +++ b/proguard-project.txt @@ -36,6 +36,11 @@ -keep public class com.android.vending.licensing.ILicensingService -keep public class acr.browser.lightning.reading.* +# this will fix a force close in ReadingActivity +-keep public class org.jsoup.** { + public *; +} + # Without this rule, openFileChooser does not get called on KitKat -keep class acr.browser.lightning.LightningView$LightningChromeClient { void openFileChooser(android.webkit.ValueCallback);