File tree Expand file tree Collapse file tree 2 files changed +26
-3
lines changed
Expand file tree Collapse file tree 2 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ android {
3737 }
3838 release {
3939 minifyEnabled = true
40+ proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
4041 }
4142 }
4243}
Original file line number Diff line number Diff line change 1212# If your project uses WebView with JS, uncomment the following
1313# and specify the fully qualified class name to the JavaScript interface
1414# class:
15- #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16- # public *;
17- #}
15+ -keepclassmembers class com.devgrapher.ocebook.readium.ReadiumContext.JsInterface {
16+ public *;
17+ }
18+
19+ -keepnames class com.koushikdutta.async.** { *; }
20+ -keep class com.koushikdutta.async.* { *;}
21+
22+ -dontwarn android.support.v4.**
23+ -keepnames class android.support.v4.** { *; }
24+ -keep class android.support.v4.* { *; }
25+
26+ -dontwarn android.support.v7.**
27+ -keepnames class android.support.v7.** { *; }
28+ -keep class android.support.v7.* { *; }
29+
30+ -keepnames class org.** { *; }
31+ -keep class org.** { *; }
32+
33+ -keepclassmembers class *.R$ {
34+ public static *;
35+ }
36+
37+ -keep class *.R$
38+
39+ -keepattributes Annotation
You can’t perform that action at this time.
0 commit comments