Back to project page couchbase-lite-android.
The source code is released under:
Apache License
If you think the Android project couchbase-lite-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.couchbase.lite.android; // www.j a v a 2s . c o m import com.couchbase.lite.storage.SQLiteStorageEngine; import com.couchbase.lite.storage.SQLiteStorageEngineFactory; /** * Android SQLiteStorageEngineFactory implementation */ public class AndroidSQLiteStorageEngineFactory implements SQLiteStorageEngineFactory { @Override public SQLiteStorageEngine createStorageEngine() { return new AndroidSQLiteStorageEngine(); } }