Cordova does not create AndroidManifest.xml

Cordova CLI v8.0 will use [email protected] by default. As most of the cordova plugins do not support [email protected] yet, you can also try using the older one by specifying version: cordova platform add [email protected] Or, if you feel comfortable to use [email protected], you can also wait for a update on cordova-plugi-admobpro to support the [email protected], … Read more

Cordova app not displaying correctly on iPhone X (Simulator)

I found the solution to the white bars here: Set viewport-fit=cover on the viewport <meta> tag, i.e.: <meta name=”viewport” content=”initial-scale=1, width=device-width, height=device-height, viewport-fit=cover”> The white bars in UIWebView then disappear: The solution to remove the black areas (provided by @dpogue in a comment below) is to use LaunchStoryboard images with cordova-plugin-splashscreen to replace the legacy … Read more