Merge pull request #191 from DF1E/fix-readingactivity

fix ReadingActivity
This commit is contained in:
Anthony Restaino 2015-02-18 13:54:56 -05:00
commit f1cc80eb28

View File

@ -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);