Further configure your mobile client
In this topic, you learn how to further configure your mobile client.
Prerequisites
-
You have configured the general information of your mobile client in Configure general information about your mobile client.
Procedure
-
In the Cockpit, go to Administration and click Mobile Client.
Result: The table of existing mobile clients open.
-
Click your mobile client.
Result: The settings of the mobile client open in the General tab.
-
You can use the Custom Config editor to add XML code to edit your mobile application. Here’s an example:
<plugin name="cordova-plugin-device" source="npm" /> <plugin name="cordova-plugin-camera" source="npm" /> <platform name="ios"> <preference name="BackupWebStorage" value="none" /> <preference name="DisallowOverscroll" value="true" /> <!-- Add more iOS-specific preferences as needed --> </platform> <edit-config target="NSMicrophoneUsageDescription" file="*-Info.plist" mode="merge"> <string>Need microphone access to record sounds</string> </edit-config> <edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge"> <string>Need location access to find things nearby</string> </edit-config>
-
In Push:IOS, you can download configuration files from the firebase platform to push your mobile client to IOS devices.
-
In Push:Android, you can download configuration files from the firebase platform to push your mobile client to Android devices.
-
In Media, you can enter an icon and a splashscreen for your mobile client that is derived from the media library.
-
Click Save.