Open AlvinStefanus opened 3 years ago
When I turn on proguard minifyEnabled true, each time the code opens the database, it gives me this:
minifyEnabled true
new transaction is queued, waiting for open operation to finish
If I turn off the minifyEnabled false it works fine.
minifyEnabled false
Please share the proguard config of how to do it correctly.
Thank you
-keep class io.liteglue.** { *; } Adding this to your proguard-rules.pro file should work.
-keep class io.liteglue.** { *; }
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