internal static AndroidPlatformConfiguration Create()
 {
     return(new AndroidPlatformConfiguration(C.AndroidPlatformConfiguration_Construct()));
 }
 internal void SetOptionalIntentHandlerForUI(Action <IntPtr> intentHandler)
 {
     Misc.CheckNotNull(intentHandler);
     C.AndroidPlatformConfiguration_SetOptionalIntentHandlerForUI(SelfPtr(),
                                                                  InternalIntentHandler, Callbacks.ToIntPtr(intentHandler));
 }
 protected override void CallDispose(HandleRef selfPointer)
 {
     C.AndroidPlatformConfiguration_Dispose(selfPointer);
 }
 internal void SetActivity(System.IntPtr activity)
 {
     C.AndroidPlatformConfiguration_SetActivity(SelfPtr(), activity);
 }