You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Proguard keep deletes the members and functions with annotations.
When we use proguard, provigen is not working anymore.
I have tried to configure the proguard configuration, but I could not do it. What is the right way to do it? What do I need to add into the configuration?
The text was updated successfully, but these errors were encountered:
I ended up adding the following lines. I don't know if all of them is necessary but it is working now.
-keepnames class * {
@com.tjeannin.provigen.* public ;
}
-keepclassmembers class * {
@com.tjeannin.provigen.** public *;
}
-keep class * extends com.tjeannin.provigen.ProviGenBaseContract
-keep @com.tjeannin.provigen.* public class *
-keep @com.tjeannin.provigen.* public interface *
-dontwarn com.tjeannin.provigen.**
-keep class com.tjeannin.provigen.** { *; }
-libraryjars libs/provigen-1.6.jar
Proguard keep deletes the members and functions with annotations.
When we use proguard, provigen is not working anymore.
I have tried to configure the proguard configuration, but I could not do it. What is the right way to do it? What do I need to add into the configuration?
The text was updated successfully, but these errors were encountered: