From bbb96ed765e61a24398db731d2acee0f26f1e144 Mon Sep 17 00:00:00 2001 From: Olyster <31543081+Olyster@users.noreply.github.com> Date: Mon, 5 Apr 2021 17:34:28 -0400 Subject: [PATCH] feat(sqlite):add androidDatabaseLocation Support (#3564) * Update index.ts * Update index.ts Fix aterisk alignment to pass test --- src/@ionic-native/plugins/sqlite/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/@ionic-native/plugins/sqlite/index.ts b/src/@ionic-native/plugins/sqlite/index.ts index ef1a13734..580b4afbd 100644 --- a/src/@ionic-native/plugins/sqlite/index.ts +++ b/src/@ionic-native/plugins/sqlite/index.ts @@ -23,6 +23,10 @@ export interface SQLiteDatabaseConfig { * iOS Database Location. Example: 'Library' */ iosDatabaseLocation?: string; + /** + * support arbitrary database location on android with https://github.com/litehelpers/cordova-sqlite-evcore-extbuild-free + */ + androidDatabaseLocation?: string; /** * support opening pre-filled databases with https://github.com/litehelpers/cordova-sqlite-ext */