Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Only available in Native Mobile Apps projects
The DeviceName
keyword can be used in Native Mobile projects to display the make and model information of the mobile device.
This function is SQL compatible. For more information about SQL compatibility, see our documentation.
Returns a Text value with the make and model of the mobile device.
Only available in Native Mobile Apps projects
The IsDevelopmentBuild
keyword can be used in Native Mobile projects to check if the current build is the Development Build from the Modeler.
The counterpart is the IsDistributionBuild.
This function is SQL compatible. For more information about SQL compatibility, see our documentation.
Returns a Boolean / YesNo value:
True/Yes
if the app is installed using the Development Build.
False/No
if the app is not running the Development Build.
Only available in Native Mobile Apps projects
The DeviceId
keyword can be used in Native Mobile projects to display the unique Device ID of the mobile device.
This function is SQL compatible. For more information about SQL compatibility, see our documentation.
Returns a Text value with the unique identifier of the mobile device.
These keywords are only available in Native Mobile Apps projects
Only available in Native Mobile Apps projects
The IsDistributionBuild
keyword can be used in Native Mobile projects to check if the current build is the Distribution Build from the Modeler, which can be used for distribution via public App Stores.
The counterpart is .
This function is SQL compatible. For more information about SQL compatibility, see our .
Returns a Boolean / YesNo value:
True/Yes
if the app is installed using the Distribution Build.
False/No
if the app is not running the Distribution Build.
Only available in Native Mobile Apps projects
The BuildVersion
keyword can be used in Native Mobile projects to check and display the Build Version information of the App as set in its app/portal-settings.
This function is SQL compatible. For more information about SQL compatibility, see our documentation.
Returns a Text value, showing the Build Version as it is defined in the App Settings. Example: "1.0.0"
The ConnectivityTypes
keyword can be used to check and display the available connection types which are supported by the client device.
This applies to any device (Ethernet typically for laptop/desktop browsers).
If you want a certain feature to be available on mobile devices only when they are on mobile data and not on Wi-Fi, you can use the Syntax example stated below.
This function is SQL compatible. For more information about SQL compatibility, see our documentation.
Returns an Array of text value, showing the available connection types.
Possible values are: "wifi", "mobile" and "ethernet".
Only available in Native Mobile Apps projects
The BatteryLife
keyword can be used in Native Mobile projects to check and display the remaining battery life in percentage in a label. It yields a numeric value between 0 and 100.
This function is SQL compatible. For more information about SQL compatibility, see our documentation.
Returns a Numeric value between 0 and 100, representing the percentage of available battery life of the mobile device.