what I am trying to do is implement couchbase lite. I am using the official documentation but do not quite get it
I used
implementation 'com.couchbase.lite:couchbase-lite-android:2.0.0'
but for some reason, on the databasemanager class, gives me an error
// tag::initCouchbaseLite[]
public void initCouchbaseLite(Context context) {
CouchbaseLite.init(context);
}
// end::initCouchbaseLite[]
the "CouchBaseLite" is highlighted and says cannot resolve reference. I cannot seem to get it to work
Any help or suggestion on what to look for would be great, thanks