Android Studio runs blank, with no controls displayed

vue2 + Capacitor5.5.1 + gradle 8.0+ JDK 17

vue2 code:
HomeView.vue

<template>
  <div>
    <el-button type="primary" round @click="getCurrentPosition">获取位置</el-button>
    <el-row>
      <el-col :span="12">
        <div class="grid-content bg-purple">
          经度:<el-input v-model="latitude" placeholder="经度"></el-input>
        </div>
      </el-col>
      <el-col :span="12">
        <div class="grid-content bg-purple-light">
          纬度:<el-input v-model="longitude" placeholder="纬度"></el-input>
        </div>
      </el-col>
    </el-row>
    <el-button type="primary" round @click="takePicture">拍照</el-button><br>
    <el-button type="primary" round @click="startScan">开始扫码</el-button><br>
    <el-button type="primary" round @click="stopScan">停止扫码</el-button><br>
    <el-button type="primary" round @click="scan">第三方扫码</el-button><br>
    <el-button type="primary" round @click="getMsg">获取消息</el-button><br>
    <el-button type="primary" round @click="checkForUpdate">检查版本</el-button><br>
    <div style="border: 1px red solid; width: 10rem;height: 10rem;">
      <el-image :src="photo">
        <div slot="placeholder" class="image-slot">
          加载中<span class="dot">...</span>
        </div>
      </el-image>
    </div>



  </div>
</template>
<script>
// 官方插件(地理定位,拍照)
import { Geolocation } from '@capacitor/geolocation';
import { Camera, CameraResultType } from '@capacitor/camera';
//官方本地通知
import { LocalNotifications } from '@capacitor/local-notifications';
//官方推送通知
import { PushNotifications, PushNotificationToken } from '@capacitor/push-notifications';
// 社区扫码插件
import { BarcodeScanner } from '@capacitor-community/barcode-scanner';
// 第三方扫码插件
import { CapacitorQRScanner } from '@johnbraum/capacitor-qrscanner';
//第三方插件 modal application auto updater (支持直接更新、强制性更新、模态更新(弹框让用户确认))
import { CapacitorUpdater } from '@capgo/capacitor-updater'
import { Dialog } from '@capacitor/dialog'
export default {
  data() {
    return {
      photo: null,
      latitude: '',
      longitude: '',
    };
  },
  methods: {
    // 获取地理位置(得到经纬度,需要墙)
    async getCurrentPosition() {
      // 在这里编写按钮点击后的处理逻辑
      console.log('Button clicked!');
      // 在需要获取地理位置的地方调用以下代码
      const coordinates = await Geolocation.getCurrentPosition();
      this.latitude = coordinates.coords.latitude
      this.longitude = coordinates.coords.longitude
      console.log('Current position:', coordinates)
    },
    // 在需要拍照的地方调用该方法
    async takePicture() {
      const image = await Camera.getPhoto({
        quality: 90,
        allowEditing: false,
        resultType: CameraResultType.Uri
      });
      console.log("Current image", image.webPath)
      // 处理拍摄的照片,例如显示在页面上
      this.photo = image.webPath;
    },
    async startScan() {
      try {
        // 检查相机权限
        // 这只是一个简单的例子,可以查看更好的检查方法
        await BarcodeScanner.checkPermission({ force: true });
        // 使 WebView 的背景透明
        // 注意:如果你在使用 Ionic,可能需要进行更多的设置,可以查看下面的链接
        BarcodeScanner.hideBackground();
        const result = await BarcodeScanner.startScan(); // 开始扫描并等待结果
        // 如果扫描结果有内容
        if (result.hasContent) {
          console.log(result.content); // 输出扫描到的原始内容
        }
      } catch (error) {
        console.error('Error scanning:', error);
      }
    },
    stopScan() {
      BarcodeScanner.showBackground();
      BarcodeScanner.stopScan();
    },
    async scan() {
      try {
        let result = await CapacitorQRScanner.scan();
        console.log("第三方插件扫码结果", result);
      } catch (error) {
        console.error('Error scanning with third-party plugin:', error);
      }
    },
    getMsg() {
      LocalNotifications.schedule({
        notifications: [
          {
            title: '新消息',
            body: '你有一条新消息',
            id: 1,
            schedule: { at: new Date(Date.now() + 1000 * 5) }
          }
        ]
      });
    },
    pushMsg() {
      PushNotifications.requestPermission().then((permission) => {
        if (permission.granted) {
          // 注册推送通知
          PushNotifications.register();
        }
      });

      // // 监听推送通知
      // PushNotifications.addListener('registration',
      //   (token: PushNotificationToken) => {
      //     // 处理注册成功的逻辑
      //   }
      // );

      // PushNotifications.addListener('pushNotificationReceived',
      //   (notification: PushNotification) => {
      //     // 处理接收到推送通知的逻辑
      //   }
      // );

      // PushNotifications.addListener('pushNotificationActionPerformed',
      //   (notification: PushNotificationActionPerformed) => {
      //     // 处理用户对推送通知的操作逻辑
      //   }
      // );
    },
    //在需要检查更新的地方调用以下代码
    // async checkForUpdate() {
    //   const update = await CapacitorUpdater.notifyAppReady()
    // }
    //通过显示对话框要求用户更新来让用户决定:
    async checkForUpdate() {
      CapacitorUpdater.addListener('updateAvailable', async (res) => {
        try {
          const { value } = await Dialog.confirm({
            title: 'Update Available',
            message: `Version ${res.bundle.version} is available. Would you like to update now?`,
          })

          if (value)
            CapacitorUpdater.set(res.bundle)

        }
        catch (error) {
          console.log(error)
        }
      })

      CapacitorUpdater.notifyAppReady()

    }
  }
};
</script>

Android studio:

check logcat for errors
and also in chrome://inspect/#devices

logCat run all log

--------- beginning of main
--------- beginning of kernel
--------- beginning of system
---------------------------- PROCESS STARTED (7191) for package ionic.bonc.capacitor ----------------------------
2023-11-17 09:29:45.114  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 I  Late-enabling -Xcheck:jni
2023-11-17 09:29:45.168  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 I  Using CollectorTypeCC GC.
2023-11-17 09:29:45.169  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Unexpected CPU variant for x86: x86_64.
                                                                                                    Known variants: atom, sandybridge, silvermont, goldmont, goldmont-plus, tremont, kabylake, default
2023-11-17 09:29:45.250  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  DexFile /data/data/ionic.bonc.capacitor/code_cache/.studio/instruments-7b9ed48c.jar is in boot class path but is not in a known location
2023-11-17 09:29:45.269  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Redefining intrinsic method java.lang.Thread java.lang.Thread.currentThread(). This may cause the unexpected use of the original definition of java.lang.Thread java.lang.Thread.currentThread()in methods that have already been compiled.
2023-11-17 09:29:45.270  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Redefining intrinsic method boolean java.lang.Thread.interrupted(). This may cause the unexpected use of the original definition of boolean java.lang.Thread.interrupted()in methods that have already been compiled.
2023-11-17 09:29:45.273  7191-7191  Compatibil...geReporter ionic.bonc.capacitor                 D  Compat change id reported: 171979766; UID 10190; state: ENABLED
2023-11-17 09:29:45.273  7191-7191  Compatibil...geReporter ionic.bonc.capacitor                 D  Compat change id reported: 242716250; UID 10190; state: DISABLED
2023-11-17 09:29:45.299  7191-7191  ziparchive              ionic.bonc.capacitor                 W  Unable to open '/data/app/~~ZMxVXnxqyoDb94KE-mO0Tg==/ionic.bonc.capacitor-79qgkY490hBHd027odlMJg==/base.dm': No such file or directory
2023-11-17 09:29:45.299  7191-7191  ziparchive              ionic.bonc.capacitor                 W  Unable to open '/data/app/~~ZMxVXnxqyoDb94KE-mO0Tg==/ionic.bonc.capacitor-79qgkY490hBHd027odlMJg==/base.dm': No such file or directory
2023-11-17 09:29:45.465  7191-7191  nativeloader            ionic.bonc.capacitor                 D  Configuring clns-6 for other apk /data/app/~~ZMxVXnxqyoDb94KE-mO0Tg==/ionic.bonc.capacitor-79qgkY490hBHd027odlMJg==/base.apk. target_sdk_version=33, uses_libraries=, library_path=/data/app/~~ZMxVXnxqyoDb94KE-mO0Tg==/ionic.bonc.capacitor-79qgkY490hBHd027odlMJg==/lib/x86_64, permitted_path=/data:/mnt/expand:/data/user/0/ionic.bonc.capacitor
2023-11-17 09:29:45.479  7191-7191  GraphicsEnvironment     ionic.bonc.capacitor                 V  Currently set values for:
2023-11-17 09:29:45.479  7191-7191  GraphicsEnvironment     ionic.bonc.capacitor                 V    angle_gl_driver_selection_pkgs=[]
2023-11-17 09:29:45.479  7191-7191  GraphicsEnvironment     ionic.bonc.capacitor                 V    angle_gl_driver_selection_values=[]
2023-11-17 09:29:45.479  7191-7191  GraphicsEnvironment     ionic.bonc.capacitor                 V  ANGLE GameManagerService for ionic.bonc.capacitor: false
2023-11-17 09:29:45.480  7191-7191  GraphicsEnvironment     ionic.bonc.capacitor                 V  ionic.bonc.capacitor is not listed in per-application setting
2023-11-17 09:29:45.480  7191-7191  GraphicsEnvironment     ionic.bonc.capacitor                 V  Neither updatable production driver nor prerelease driver is supported.
2023-11-17 09:29:45.489  7191-7191  FirebaseApp             ionic.bonc.capacitor                 W  Default FirebaseApp failed to initialize because no default options were found. This usually means that com.google.gms:google-services was not applied to your gradle project.
2023-11-17 09:29:45.489  7191-7191  FirebaseInitProvider    ionic.bonc.capacitor                 I  FirebaseApp initialization unsuccessful
2023-11-17 09:29:45.522  7191-7216  libEGL                  ionic.bonc.capacitor                 D  loaded /vendor/lib64/egl/libEGL_emulation.so
2023-11-17 09:29:45.526  7191-7216  libEGL                  ionic.bonc.capacitor                 D  loaded /vendor/lib64/egl/libGLESv1_CM_emulation.so
2023-11-17 09:29:45.529  7191-7216  libEGL                  ionic.bonc.capacitor                 D  loaded /vendor/lib64/egl/libGLESv2_emulation.so
2023-11-17 09:29:45.543  7191-7191  AppCompatDelegate       ionic.bonc.capacitor                 D  Checking for metadata for AppLocalesMetadataHolderService : Service not found
2023-11-17 09:29:45.590  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Accessing hidden method Landroid/view/View;->computeFitSystemWindows(Landroid/graphics/Rect;Landroid/graphics/Rect;)Z (unsupported, reflection, allowed)
2023-11-17 09:29:45.591  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Accessing hidden method Landroid/view/ViewGroup;->makeOptionalFitsSystemWindows()V (unsupported, reflection, allowed)
2023-11-17 09:29:45.606  7191-7191  WebViewFactory          ionic.bonc.capacitor                 I  Loading com.google.android.webview version 113.0.5672.136 (code 567263637)
2023-11-17 09:29:45.612  7191-7191  ziparchive              ionic.bonc.capacitor                 W  Unable to open '/data/app/~~i0LcaNJRxuToIhixVsGIzg==/com.google.android.trichromelibrary_567263637-WToR0FLLu7MG7S5qfZ_sHw==/TrichromeLibrary.dm': No such file or directory
2023-11-17 09:29:45.612  7191-7191  ziparchive              ionic.bonc.capacitor                 W  Unable to open '/data/app/~~i0LcaNJRxuToIhixVsGIzg==/com.google.android.trichromelibrary_567263637-WToR0FLLu7MG7S5qfZ_sHw==/TrichromeLibrary.dm': No such file or directory
2023-11-17 09:29:45.612  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Entry not found
2023-11-17 09:29:45.616  7191-7191  nativeloader            ionic.bonc.capacitor                 D  Configuring clns-7 for other apk /data/app/~~i0LcaNJRxuToIhixVsGIzg==/com.google.android.trichromelibrary_567263637-WToR0FLLu7MG7S5qfZ_sHw==/TrichromeLibrary.apk. target_sdk_version=34, uses_libraries=ALL, library_path=/data/app/~~BCvcQy6OXY_iLZ4SoM6nHg==/com.google.android.webview-PW6ywpNOjHt2X9eSxcW4vg==/lib/x86_64:/data/app/~~BCvcQy6OXY_iLZ4SoM6nHg==/com.google.android.webview-PW6ywpNOjHt2X9eSxcW4vg==/WebViewGoogle.apk!/lib/x86_64:/data/app/~~i0LcaNJRxuToIhixVsGIzg==/com.google.android.trichromelibrary_567263637-WToR0FLLu7MG7S5qfZ_sHw==/TrichromeLibrary.apk!/lib/x86_64, permitted_path=/data:/mnt/expand
2023-11-17 09:29:45.621  7191-7191  nativeloader            ionic.bonc.capacitor                 D  Configuring clns-8 for other apk /data/app/~~BCvcQy6OXY_iLZ4SoM6nHg==/com.google.android.webview-PW6ywpNOjHt2X9eSxcW4vg==/WebViewGoogle.apk. target_sdk_version=34, uses_libraries=, library_path=/data/app/~~BCvcQy6OXY_iLZ4SoM6nHg==/com.google.android.webview-PW6ywpNOjHt2X9eSxcW4vg==/lib/x86_64:/data/app/~~BCvcQy6OXY_iLZ4SoM6nHg==/com.google.android.webview-PW6ywpNOjHt2X9eSxcW4vg==/WebViewGoogle.apk!/lib/x86_64:/data/app/~~i0LcaNJRxuToIhixVsGIzg==/com.google.android.trichromelibrary_567263637-WToR0FLLu7MG7S5qfZ_sHw==/TrichromeLibrary.apk!/lib/x86_64, permitted_path=/data:/mnt/expand
2023-11-17 09:29:45.740  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Accessing hidden method Landroid/os/Trace;->isTagEnabled(J)Z (unsupported, reflection, allowed)
2023-11-17 09:29:45.740  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Accessing hidden method Landroid/os/Trace;->traceBegin(JLjava/lang/String;)V (unsupported, reflection, allowed)
2023-11-17 09:29:45.741  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Accessing hidden method Landroid/os/Trace;->traceEnd(J)V (unsupported, reflection, allowed)
2023-11-17 09:29:45.741  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Accessing hidden method Landroid/os/Trace;->asyncTraceBegin(JLjava/lang/String;I)V (unsupported, reflection, allowed)
2023-11-17 09:29:45.741  7191-7191  .bonc.capacitor         ionic.bonc.capacitor                 W  Accessing hidden method Landroid/os/Trace;->asyncTraceEnd(JLjava/lang/String;I)V (unsupported, reflection, allowed)
2023-11-17 09:29:45.745  7191-7191  cr_WVCFactoryProvider   ionic.bonc.capacitor                 I  Loaded version=113.0.5672.136 minSdkVersion=29 isBundle=false multiprocess=true packageId=2
2023-11-17 09:29:45.762  7191-7222  cr_VariationsUtils      ionic.bonc.capacitor                 I  Failed reading seed file "/data/user/0/ionic.bonc.capacitor/app_webview/variations_seed_new"
2023-11-17 09:29:45.762  7191-7222  cr_VariationsUtils      ionic.bonc.capacitor                 I  Failed reading seed file "/data/user/0/ionic.bonc.capacitor/app_webview/variations_seed"
2023-11-17 09:29:45.773  7191-7191  cr_LibraryLoader        ionic.bonc.capacitor                 I  Successfully loaded native library
2023-11-17 09:29:45.775  7191-7191  cr_CachingUmaRecorder   ionic.bonc.capacitor                 I  Flushed 8 samples from 8 histograms.
2023-11-17 09:29:45.819  7191-7191  Compatibil...geReporter ionic.bonc.capacitor                 D  Compat change id reported: 183155436; UID 10190; state: ENABLED
2023-11-17 09:29:45.908  7191-7242  chromium                ionic.bonc.capacitor                 E  [ERROR:simple_file_enumerator.cc(21)] opendir /data/user/0/ionic.bonc.capacitor/cache/WebView/Default/HTTP Cache/Code Cache/js: No such file or directory (2)
2023-11-17 09:29:45.908  7191-7241  chromium                ionic.bonc.capacitor                 E  [ERROR:simple_file_enumerator.cc(21)] opendir /data/user/0/ionic.bonc.capacitor/cache/WebView/Default/HTTP Cache/Code Cache/wasm: No such file or directory (2)
2023-11-17 09:29:45.908  7191-7241  chromium                ionic.bonc.capacitor                 E  [ERROR:simple_index_file.cc(614)] Could not reconstruct index from disk
2023-11-17 09:29:45.908  7191-7242  chromium                ionic.bonc.capacitor                 E  [ERROR:simple_index_file.cc(614)] Could not reconstruct index from disk
2023-11-17 09:29:45.969  7191-7191  Compatibil...geReporter ionic.bonc.capacitor                 D  Compat change id reported: 214741472; UID 10190; state: ENABLED
2023-11-17 09:29:45.972  7191-7191  Compatibil...geReporter ionic.bonc.capacitor                 D  Compat change id reported: 171228096; UID 10190; state: ENABLED
2023-11-17 09:29:46.005  7191-7191  AutofillManager         ionic.bonc.capacitor                 D  Fill dialog is enabled:false, hints=[]
2023-11-17 09:29:46.020  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Starting BridgeActivity
2023-11-17 09:29:46.033  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: CapacitorCookies
2023-11-17 09:29:46.038  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: WebView
2023-11-17 09:29:46.040  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: CapacitorHttp
2023-11-17 09:29:46.042  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: BarcodeScanner
2023-11-17 09:29:46.044  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: Camera
2023-11-17 09:29:46.046  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: Dialog
2023-11-17 09:29:46.048  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: Geolocation
2023-11-17 09:29:46.050  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: LocalNotifications
2023-11-17 09:29:46.054  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: PushNotifications
2023-11-17 09:29:46.056  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: CapacitorUpdater
2023-11-17 09:29:46.072  7191-7191  Capacitor-updater       ionic.bonc.capacitor                 I  init for device 9380461e-73b9-4849-9d44-490ad8c97519
2023-11-17 09:29:46.072  7191-7191  Capacitor-updater       ionic.bonc.capacitor                 I  version native 1.0
2023-11-17 09:29:46.075  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Registering plugin instance: CapacitorQRScanner
2023-11-17 09:29:46.123  7191-7191  Capacitor               ionic.bonc.capacitor                 W  Unable to read file at path public/plugins
2023-11-17 09:29:46.124  7191-7191  Capacitor               ionic.bonc.capacitor                 D  Loading app at https://localhost
2023-11-17 09:29:46.135  7191-7247  cr_media                ionic.bonc.capacitor                 W  BLUETOOTH_CONNECT permission is missing.
2023-11-17 09:29:46.136  7191-7247  cr_media                ionic.bonc.capacitor                 W  registerBluetoothIntentsIfNeeded: Requires BLUETOOTH permission
2023-11-17 09:29:46.150  7191-7191  Capacitor/LN            ionic.bonc.capacitor                 D  LocalNotification received: null
2023-11-17 09:29:46.150  7191-7191  Capacitor/LN            ionic.bonc.capacitor                 D  Activity started without notification attached
2023-11-17 09:29:46.201  7191-7267  CapacitorCookies        ionic.bonc.capacitor                 I  Getting cookies at: 'https://api.capgo.app/stats'
2023-11-17 09:29:46.210  7191-7191  Capacitor-updater       ionic.bonc.capacitor                 I  Auto update is disabled
2023-11-17 09:29:46.211  7191-7191  Capacitor-updater       ionic.bonc.capacitor                 I  sendReadyToJs
2023-11-17 09:29:46.213  7191-7191  Capacitor-updater       ionic.bonc.capacitor                 I  onActivityStarted ionic.bonc.capacitor.MainActivity
2023-11-17 09:29:46.214  7191-7191  Capacitor               ionic.bonc.capacitor                 D  App started
2023-11-17 09:29:46.216  7191-7284  Capacitor-updater       ionic.bonc.capacitor                 I  semaphoreReady sendReadyToJs
2023-11-17 09:29:46.216  7191-7284  Capacitor-updater       ionic.bonc.capacitor                 I  semaphoreWait 10000
2023-11-17 09:29:46.217  7191-7285  Capacitor-updater       ionic.bonc.capacitor                 I  Wait for 10000ms, then check for notifyAppReady
2023-11-17 09:29:46.221  7191-7191  Capacitor               ionic.bonc.capacitor                 D  App resumed
2023-11-17 09:29:46.226  7191-7191  Compatibil...geReporter ionic.bonc.capacitor                 D  Compat change id reported: 237531167; UID 10190; state: DISABLED
2023-11-17 09:29:46.229  7191-7191  OpenGLRenderer          ionic.bonc.capacitor                 W  Unknown dataspace 0
2023-11-17 09:29:46.238  7191-7241  Capacitor               ionic.bonc.capacitor                 D  Handling local request: https://localhost/
2023-11-17 09:29:46.273  7191-7191  Choreographer           ionic.bonc.capacitor                 I  Skipped 46 frames!  The application may be doing too much work on its main thread.
2023-11-17 09:29:46.278  7191-7191  Compatibil...geReporter ionic.bonc.capacitor                 D  Compat change id reported: 193247900; UID 10190; state: ENABLED
2023-11-17 09:29:46.309  7191-7214  OpenGLRenderer          ionic.bonc.capacitor                 W  Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
2023-11-17 09:29:46.310  7191-7214  OpenGLRenderer          ionic.bonc.capacitor                 W  Failed to initialize 101010-2 format, error = EGL_SUCCESS
2023-11-17 09:29:46.362  7191-7214  Gralloc4                ionic.bonc.capacitor                 I  mapper 4.x is not supported
2023-11-17 09:29:46.374  7191-7214  OpenGLRenderer          ionic.bonc.capacitor                 E  Unable to match the desired swap behavior.
2023-11-17 09:29:46.426  7191-7207  OpenGLRenderer          ionic.bonc.capacitor                 I  Davey! duration=901ms; Flags=1, FrameTimelineVsyncId=42606, IntendedVsync=786456841486, Vsync=787223508122, InputEventId=0, HandleInputStart=787227321080, AnimationStart=787227324744, PerformTraversalsStart=787228524620, DrawStart=787327608196, FrameDeadline=786473508152, FrameInterval=787225778138, FrameStartTime=16666666, SyncQueued=787330054701, SyncStart=787330719453, IssueDrawCommandsStart=787331807762, SwapBuffers=787357213706, FrameCompleted=787358811811, DequeueBufferDuration=4332, QueueBufferDuration=436491, GpuCompleted=787358547718, SwapBuffersCompleted=787358811811, DisplayPresentTime=0, CommandSubmissionCompleted=787357213706, 
2023-11-17 09:29:46.499  7191-7241  Capacitor               ionic.bonc.capacitor                 D  Handling local request: https://localhost/%3C%=%20BASE_URL%20%%3Efavicon.ico
2023-11-17 09:29:46.611  7191-7241  Capacitor               ionic.bonc.capacitor                 E  Unable to open asset URL: https://localhost/%3C%=%20BASE_URL%20%%3Efavicon.ico
2023-11-17 09:29:46.612  7191-7241  Capacitor               ionic.bonc.capacitor                 E  Unable to open asset URL: https://localhost/%3C%=%20BASE_URL%20%%3Efavicon.ico
2023-11-17 09:29:46.614  7191-7241  Capacitor               ionic.bonc.capacitor                 E  Unable to open asset URL: https://localhost/%3C%=%20BASE_URL%20%%3Efavicon.ico
2023-11-17 09:29:46.615  7191-7241  Capacitor               ionic.bonc.capacitor                 E  Unable to open asset URL: https://localhost/%3C%=%20BASE_URL%20%%3Efavicon.ico
2023-11-17 09:29:46.726  7191-7311  .bonc.capacitor         ionic.bonc.capacitor                 W  Verification of androidx.emoji2.text.FontRequestEmojiCompatConfig androidx.emoji2.text.DefaultEmojiCompatConfig.create(android.content.Context) took 18446744073.709s (0.00 bytecodes/s) (1720B approximate peak alloc)
2023-11-17 09:29:47.892  7191-7214  EGL_emulation           ionic.bonc.capacitor                 D  app_time_stats: avg=371.49ms min=29.17ms max=961.19ms count=4
2023-11-17 09:29:51.921  7191-7349  ProfileInstaller        ionic.bonc.capacitor                 D  Installing profile for ionic.bonc.capacitor
2023-11-17 09:29:56.218  7191-7285  Capacitor-updater       ionic.bonc.capacitor                 I  Built-in bundle is active. Nothing to do.
2023-11-17 09:29:56.232  7191-7191  Capacitor-updater       ionic.bonc.capacitor                 E  Error send stats: {"error":"response_error","message":"Error send stats: com.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host \"api.capgo.app\": No address associated with hostname"}

I see two problems there.
It seem that you have a BASE_URL variable that has not been replaced with a proper value. I’m not familiar with vue, so not sure what it could be.
There is a problem with capgo.

There’s an error like this:
Error send stats: {"error":"response_error","message":"Error send stats: com.android.volley.NoConnectionError: java.net.UnknownHostException: Unable to resolve host \"api.capgo.app\": No address associated with hostname"}

I wonder if this is related to the intel plugin in SDK tools, my computer does not support this installation

Thank you, because the vue router BASE URL is not specified

the capgo error is from some capacitor cap-go plugin, probably live updates, so make sure it’s correctly configured.