storesafe / cordova-sqlite-storage

A Cordova/PhoneGap plugin to open and use sqlite databases on Android, iOS and Windows with HTML5/Web SQL API
Other
2.14k stars 713 forks source link

Stuck at opening database when proguard minifyEnabled true #981

Open AlvinStefanus opened 2 years ago

AlvinStefanus commented 2 years ago

When I turn on proguard minifyEnabled true, each time the code opens the database, it gives me this:

new transaction is queued, waiting for open operation to finish

If I turn off the minifyEnabled false it works fine.

Please share the proguard config of how to do it correctly.

Thank you

sean118 commented 2 years ago

-keep class io.liteglue.** { *; } Adding this to your proguard-rules.pro file should work.