- What is the BlackBerry Dynamics SDK?
- Requirements and support for platform-specific features
- Steps to get started with the BlackBerry Dynamics SDK
- Implementing SafetyNet attestation for BlackBerry Dynamics apps
- About the BlackBerry Dynamics SDK for Xamarin.Forms
- Sample apps
- Testing and troubleshooting
- Testing with Microsoft Visual Studio
- Implementing automated testing for BlackBerry Dynamics Xamarin apps
- Disable ARM v8 to avoid potential issues
- Deploying your BlackBerry Dynamics app
- Deploying certificates to BlackBerry Dynamics apps
- Legal notice
- BlackBerry Docs
- BlackBerry Dynamics Bindings for Xamarin.Android 7.0
- BlackBerry Dynamics Bindings for Xamarin.Android Development Guide
- Initialize your Activity for use with the BlackBerry Dynamics runtime
Initialize your Activity for use with the BlackBerry Dynamics runtime
Make sure to initialize each
Activity
of your app
for use with the BlackBerry Dynamics Runtime
.
In the OnCreate
method, pass the current instance of the
activity to the GDAndroid.Instance.ActivityInit
method. protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); GDAndroid.Instance.ActivityInit (this); // Set our view from the "main" layout resource SetContentView(Resource.Layout.Main); //Rest of Activity code below. … }