Hi.
I have this issue when run this library in Android
Database location or iosDatabaseLocation setting is now mandatory in openDatabase call
My code:
this._DB = new PouchDB('curriculum.db', { adapter: 'cordova-sqlite' });
If I change my code for fix this issue to
this._DB = new PouchDB('curriculum.db', { adapter: 'cordova-sqlite', iosDatabaseLocation: 'Library', androidDatabaseImplementation: 2 });
the next error is shown
{
adapter: string,
iosDatabaseLocation: string,
androidDatabaseImplementation: number
} is not assignable to parameter of type 'DatabaseConfiguration'