ez-vcard icon indicating copy to clipboard operation
ez-vcard copied to clipboard

Android proguard description

Open z4hyoung opened this issue 6 years ago • 4 comments

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 { *; }

z4hyoung avatar Jun 05 '18 08:06 z4hyoung

Not familiar with that, sorry.

mangstadt avatar Jun 07 '18 20:06 mangstadt

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

tibbi avatar Aug 24 '18 11:08 tibbi

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.**

divyangdivasaliwala avatar Jun 13 '22 05:06 divyangdivasaliwala

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

Try this

hoangchungk53qx1 avatar Mar 15 '24 08:03 hoangchungk53qx1