Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android proguard description #84

Open
z4hyoung opened this issue Jun 5, 2018 · 4 comments
Open

Android proguard description #84

z4hyoung opened this issue Jun 5, 2018 · 4 comments

Comments

@z4hyoung
Copy link

z4hyoung commented Jun 5, 2018

Hi,

Do we have any description for Android proguard configurations? That will help us to avoid crash during runtime due to such as reflection. Below is configuration in my project.

-keep,includedescriptorclasses class ezvcard.property.** { *; }
-keep enum ezvcard.VCardVersion { *; }
@mangstadt
Copy link
Owner

Not familiar with that, sorry.

@tibbi
Copy link

tibbi commented Aug 24, 2018

except those I also needed
-dontwarn ezvcard.io.json.**
-dontwarn freemarker.**

@divyangdivasaliwala
Copy link

Hi,

Do we have any description for Android proguard configurations? That will help us to avoid crash during runtime due to such as reflection. Below is configuration in my project.

-keep,includedescriptorclasses class ezvcard.property.** { *; }
-keep enum ezvcard.VCardVersion { *; }

Try this:
-keep,includedescriptorclasses class ezvcard.** { ; }
-keep enum ezvcard.VCardVersion { ; }
-dontwarn ezvcard.io.json.

-dontwarn freemarker.**

@hoangchungk53qx1
Copy link

-keep,includedescriptorclasses class ezvcard.** { ; }
-keep enum ezvcard.VCardVersion { ; }
-dontwarn ezvcard.io.json.

-dontwarn freemarker.**
-keep,includedescriptorclasses class ezvcard.property.** { *; }

Try this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants