Registration of iOS app icon size 20x20
is required. Please follow the steps below to register.
From Cordova10, the WebView used in iOS has been updated from the conventional “UIWebView” to “WKWebView”. Please note that UIWebView is no longer available for Cordova10 projects.
From Cordova 10, Cordova comes standard with the same functions as the “Custom Scheme” plugin. Therefore, the “Custom Scheme” plugin is no longer required, and if it is used in the project, it will be deleted from the project When you upgrade your project to cordova10.
In addition, the following settings will be added to “config.xml” in order to use the functions installed in Cordova.
<platform name="ios">
<preference name="scheme" value="monaca-app"/>
<preference name="hostname" value="localhost"/>
</platform>
The security of the data storage area has changed in Android 10 (API level 29), which is used as standard from Cordova 10. This change may require additional settings for some plugins.
For the plugin provided by Monaca, “cordova-plugin-media-capture” is applicable. In Monaca Debugger for Android, “requestLegacyExternalStorage” is set to access the data storage destination of “cordova-plugin-media-capture”.
When using “cordova-plugin-media-capture” in a built app or custom build debugger, you need to add the andorid namespace
to the widget tag in config.xml and add requestLegacyExternalStora
.
<widget xmlns:android="http://schemas.android.com/apk/res/android">
<platform name="android">
<edit-config file="AndroidManifest.xml" target="/manifest/application" mode="merge">
<application android:requestlegacyexternalstorage="true"/>
</edit-config>
</platform>