jianzhongli / MathView

A library for displaying math formula in Android apps.
Apache License 2.0
1.01k stars 188 forks source link

What are the proguard rules to be added for the library ? #9

Open rjhashlearn opened 8 years ago

rjhashlearn commented 8 years ago

Unable to make a build a with proguard enabled.

rajeefmk commented 8 years ago

Add these in your proguard file

-dontwarn com.x5.* -keep class com.x5.template.* { ; } -keep class com.x5.util.* { *; }

Jawnnypoo commented 6 years ago

This is what it took for me:

-dontwarn com.x5.**
-keep class com.x5.template.** { *; }
-keep class com.x5.util.** { *; }