I have angular 19.0.6 and capacitor:
"@capacitor/android": "^7.4.3",
"@capacitor/angular": "^2.0.3",
"@capacitor/camera": "^7.0.2",
"@capacitor/core": "^7.4.3",
"@capacitor/ios": "^7.4.3",
When I open Android studio and emulator, my app launches just fine. However in iOS i cannot get it to work. I always end up with a blank white screen and the app is not launched. I have attached the image below:
My capacitor.config.ts:
import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.MyApp',
appName: 'MyApp',
webDir: 'dist/MyApp/browser'
};
export default config;
Any help would be welcome as I have run out of ideas what to try to fix this.