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
Thanks for this great SQlite2XL library. However, this library is causing signed APK unable to be generated when proguard is enable. Here are some lines of warning:
Warning:org.apache.poi.hssf.usermodel.DummyGraphics2d: can't find superclass or interface java.awt.Graphics2D
Warning:org.apache.poi.hssf.usermodel.EscherGraphics: can't find superclass or interface java.awt.Graphics
Warning:org.apache.poi.hssf.usermodel.EscherGraphics2d: can't find superclass or interface java.awt.Graphics2D
I tried to add -keep class java.awt.** { *; } to my proguard but this is still not working. How to solve this problem?
The text was updated successfully, but these errors were encountered:
Thanks for this great SQlite2XL library. However, this library is causing signed APK unable to be generated when proguard is enable. Here are some lines of warning:
I tried to add
-keep class java.awt.** { *; }
to my proguard but this is still not working. How to solve this problem?The text was updated successfully, but these errors were encountered: