Control whether the BlackBerry Dynamics Launcher displays in a BlackBerry
Dynamics app
BlackBerry Dynamics Launcher
displays in a BlackBerry
Dynamics
appAs of the
BlackBerry Dynamics SDK for Cordova
version 13.0, the BlackBerry Dynamics Launcher
is integrated with the SDK and does not need to be downloaded and integrated separately. After you add cordova-plugin-bbd-base
, the BlackBerry Dynamics Launcher
is integrated and displayed by default. You can use cordova-plugin-bbd-launcher
to hide the BlackBerry Dynamics Launcher
in an app, and to show it again:iOS
Action | Steps |
---|---|
Do not display the BlackBerry Dynamics Launcher | Add the following property in <app> /platforms/ios/<app-name> /Info.plistGDDisableAutomaticLauncherManagement = YES |
Show the BlackBerry Dynamics Launcher | Change the following property in <app> /platforms/ios/<app-name> /Info.plistGDDisableAutomaticLauncherManagement = NO |
Android
Action | Steps |
---|---|
Do not display the BlackBerry Dynamics Launcher | Add the following property in <app> /platforms/android/app/src/main/assets/com.blackberry.dynamics.settings.json"AutomaticLauncherManagement": "false" |
Show the BlackBerry Dynamics Launcher | Change the following property in <app> /platforms/android/app/src/main/assets/com.blackberry.dynamics.settings.json"AutomaticLauncherManagement": "true" |