When I use xcode to run my app, it works. But when i use the terminal/ionic extension for livereload, the app gets stuck on the splashscreen.
const config: CapacitorConfig = {
appId: myappid",
appName: "myappname",
webDir: "www",
loggingBehavior: "debug",
plugins: {
SplashScreen: {
launchAutoHide: false,
launchShowDuration: 500,
showSpinner: true,
spinnerColor: "#000000",
splashFullScreen: true,
splashImmersive: false,
},
},
server: {
hostname: "quackquack.in",
androidScheme: "https",
allowNavigation: ["quackquack.in",],
cleartext: true,
},
ios: {
scheme: "QuackQuack",
cordovaLinkerFlags: ["-ObjC"],
},
};
export default config;
Is there anything that I should be doing when using livereload? Thanks