- What is the BlackBerry Dynamics SDK?
- Requirements and support for platform-specific features
- Software requirements
- Using an entitlement ID and version to uniquely identify a BlackBerry Dynamics app
- FIPS compliance
- Declaring a URL type to support BlackBerry Dynamics features
- App UI restrictions
- Requirements and prerequisites for iOS platform features
- Supported TLS protocols and cipher suites
- Steps to get started with the BlackBerry Dynamics SDK
- Integrating optional features
- Preventing password autofill in the app UI
- Enforcing local compliance actions
- Adding custom policies for your app to the UEM management console
- Add a watermark to the screens in a BlackBerry Dynamics app
- Allow unencrypted data to be copied to the pasteboard
- Replace the default splash screen for inactive apps
- Prompt the user to update a BlackBerry Dynamics app
- Support for Apple Watch
- Adding a custom logo and colors with the branding API
- Using zero sign-on for SaaS services through BlackBerry Enterprise Identity
- Integrating BlackBerry Enterprise Mobility Server services
- Enabling microphone and camera support with WebRTC
- Implementing the BlackBerry Dynamics Launcher
- Integrating BlackBerry Analytics
- Sample apps
- Testing and troubleshooting
- Deploying your BlackBerry Dynamics app
- Deploying certificates to BlackBerry Dynamics apps
- BlackBerry Docs
- BlackBerry Dynamics SDK for iOS 13.0
- BlackBerry Dynamics SDK for iOS Development Guide
- Implementing the BlackBerry Dynamics Launcher
- Hide or show the BlackBerry Dynamics Launcher
Hide or show the BlackBerry Dynamics Launcher
BlackBerry Dynamics Launcher
You have the option to disable the
BlackBerry Dynamics Launcher
button throughout your app, or to show or hide it on certain views.Disable the
BlackBerry Dynamics Launcher
button in your appUpdate info.plist to include a key named
GDDisableAutomaticLauncherManagement
with a boolean type and a value of YES.Hide or show the
BlackBerry Dynamics Launcher
button on a viewIf you are using
Swift
, use isLauncherButtonHidden
in the class that sets up the view:
- Hide the button:GDiOS.sharedInstance().getManagedLauncherViewController().isLauncherButtonHidden = true
- Show the button:GDiOS.sharedInstance().getManagedLauncherViewController().isLauncherButtonHidden = false
If you are using
Objective-C
, use the GTLauncherViewController.launcherButtonHidden
boolean property in the class that sets up the view:
- Hide the button:GTLauncherViewController *launcherVC = (GTLauncherViewController *)viewController;launcherVC.launcherButtonHidden = YES;
- Show the button:GTLauncherViewController *launcherVC = (GTLauncherViewController *)viewController;launcherVC.launcherButtonHidden = NO;