diff --git a/android/app/capacitor.build.gradle b/android/app/capacitor.build.gradle
index 5f72c9ea..a035cf07 100644
--- a/android/app/capacitor.build.gradle
+++ b/android/app/capacitor.build.gradle
@@ -9,8 +9,8 @@ android {
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
dependencies {
- implementation project(':byteowls-capacitor-oauth2')
implementation project(':capacitor-app')
+ implementation project(':capacitor-browser')
implementation project(':capacitor-clipboard')
implementation project(':capacitor-dialog')
implementation project(':capacitor-haptics')
diff --git a/android/app/src/debug/res/values/strings.xml b/android/app/src/debug/res/values/strings.xml
index ddb4bf3d..30492100 100644
--- a/android/app/src/debug/res/values/strings.xml
+++ b/android/app/src/debug/res/values/strings.xml
@@ -3,7 +3,7 @@
audiobookshelf
audiobookshelf
com.audiobookshelf.app
- com.audiobookshelf.app.debug
+ audiobookshelf
Add widget
Simple widget for audiobookshelf playback
Jump Forward
diff --git a/android/app/src/main/assets/capacitor.plugins.json b/android/app/src/main/assets/capacitor.plugins.json
index 0c6f1cf9..91ba9d08 100644
--- a/android/app/src/main/assets/capacitor.plugins.json
+++ b/android/app/src/main/assets/capacitor.plugins.json
@@ -1,12 +1,12 @@
[
- {
- "pkg": "@byteowls/capacitor-oauth2",
- "classpath": "com.byteowls.capacitor.oauth2.OAuth2ClientPlugin"
- },
{
"pkg": "@capacitor/app",
"classpath": "com.capacitorjs.plugins.app.AppPlugin"
},
+ {
+ "pkg": "@capacitor/browser",
+ "classpath": "com.capacitorjs.plugins.browser.BrowserPlugin"
+ },
{
"pkg": "@capacitor/clipboard",
"classpath": "com.capacitorjs.plugins.clipboard.ClipboardPlugin"
diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml
index 5048dff1..30492100 100644
--- a/android/app/src/main/res/values/strings.xml
+++ b/android/app/src/main/res/values/strings.xml
@@ -3,7 +3,7 @@
audiobookshelf
audiobookshelf
com.audiobookshelf.app
- com.audiobookshelf.app
+ audiobookshelf
Add widget
Simple widget for audiobookshelf playback
Jump Forward
diff --git a/android/capacitor.settings.gradle b/android/capacitor.settings.gradle
index 4cd3db7b..4d93d79d 100644
--- a/android/capacitor.settings.gradle
+++ b/android/capacitor.settings.gradle
@@ -2,12 +2,12 @@
include ':capacitor-android'
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor')
-include ':byteowls-capacitor-oauth2'
-project(':byteowls-capacitor-oauth2').projectDir = new File('../node_modules/@byteowls/capacitor-oauth2/android')
-
include ':capacitor-app'
project(':capacitor-app').projectDir = new File('../node_modules/@capacitor/app/android')
+include ':capacitor-browser'
+project(':capacitor-browser').projectDir = new File('../node_modules/@capacitor/browser/android')
+
include ':capacitor-clipboard'
project(':capacitor-clipboard').projectDir = new File('../node_modules/@capacitor/clipboard/android')
diff --git a/components/connection/ServerConnectForm.vue b/components/connection/ServerConnectForm.vue
index c7ee4f57..b6ebbf83 100644
--- a/components/connection/ServerConnectForm.vue
+++ b/components/connection/ServerConnectForm.vue
@@ -79,9 +79,10 @@