Home > Blockchain >  Capacitor: Unable to open asset URL:
Capacitor: Unable to open asset URL:

Time:08-30

On this image error look like this E/Capacitor: Unable to open asset URL: https://example.com/assets/ha-logo-favicon.png

this is capacitor.config.json not shown in the image:

{
  "appId": "com.example.android",
  "appName": "example",
  "webDir": "dist",
  "bundledWebRuntime": false,
  "server": {
    "hostname": "example.com",
    "androidScheme": "https"
  }
}
D/Capacitor: Handling local request: https://example.com/assets/ha-logo-favicon.png
E/Capacitor: Unable to open asset URL: https://example.com/assets/ha-logo-favicon.png
E/Capacitor: Unable to open asset URL: https://example.com/assets/ha-logo-favicon.png
E/Capacitor: Unable to open asset URL: https://example.com/assets/ha-logo-favicon.png
D/Capacitor: Handling local request: https://example.com/assets/ha-logo.png
E/Capacitor: Unable to open asset URL: https://example.com/assets/ha-logo.png
D/Capacitor: Handling local request: https://example.com/assets/ha-logo-text.png
E/Capacitor: Unable to open asset URL: https://example.com/assets/ha-logo-text.png
E/Capacitor: Unable to open asset URL: https://example.com/assets/ha-logo.png
I/roadinc.androi: Thread[5,tid=12189,WaitingInMainSignalCatcherLoop,Thread*=0xe18c7010,peer=0x12d8000

CodePudding user response:

{
  "appId": "com.example.android",
  "appName": "example",
  "webDir": "dist",
  "bundledWebRuntime": false,
  "server": {
    "hostname": "example.com",
    "androidScheme": "https",
    "url": "https//example.com"
  }
}
  • Related