Hi !
Can you tell me what are the Proguard rules for CouchbaseLite v3.0.0-beta02 ?
I tried the same as 2.8 :
-keep class com.couchbase.lite.ConnectionStatus { <init>(...); }
-keep class com.couchbase.lite.LiteCoreException { static <methods>; }
-keep class com.couchbase.lite.internal.core.C4* {
static <methods>;
<fields>;
<init>(...);
}
but when I build with “minifyEnabled true” it seems that I can’t access my database.
I have nothing in Logcat indicating that rules are missing, the only Couchbase related log is :
ContextImpl: Failed to ensure directory: /storage/extSdCard/Android/data/com.mypackage.com/files/CouchbaseLiteTemp
Thanks for your help !