Ios Version Stops

I´ve got a Ionic 5 application, using Capacitor and it runs fine on android. However, running on IOS it stops and the screen goes blank. This is what I see in the Debug pane in Xcode

**2021-09-22 21:10:23.129174+0200 App[691:199823] DiskCookieStorage changing policy from 2 to 0, cookie file: file:///private/var/mobile/Containers/Data/Application/4F2E5F79-7B1F-4D0A-9D5A-079BC2033910/Library/Cookies/Cookies.binarycookies**
**⚡️ Loading app at capacitor://localhost...**
**⚡️ WebView loaded**
**⚡️ [log] - onscript loading complete**
**To Native Cordova -> File requestAllPaths File1394141922 ["options": []]**

The only thing I can think of, is that I am reading multiple files from the assets folder. Other than that, I am drawing up blank.

Can you explain the process you’re using here? The only way I know of to “read” anything from inside assets is via HTTP. If you’re attempting to use device filesystem plugins, they won’t work, because “assets” isn’t actually a “folder”. It’s baked into the app binary itself, and the faux-httpd included in Capacitor is the only way to access anything in there.

Yeah, I´m using this.http.get(’/assets/data/´)

Using import {HttpClient} from ‘@angular/common/http’;

I was however able to install it to the phone using ionic capacitor run ios -l --external, then it was running on the phone.

Using ionic capacitor run ios it will just be a blank white screen.