public override void SetOrientationUIIgnite (FuelSDK.ContentOrientation orientation) { iOSSetOrientationuiIgnite(orientation.ToString()); }
public void OnImplicitLaunch(FuelSDK.ApplicationState applicationState) { Debug.Log ("OnImplicitLaunch - application state: " + applicationState.ToString ()); // apply implicit launch policy based on the given application state }
/// <summary> /// Retrieves the AndroidJavaObject PropellerSDKNotificationType equivalent to the given NotificationType /// </summary> /// <returns> /// The AndroidJavaObject PropellerSDKNotificationType equivalent to the given notification type, null otherwise /// </returns> /// <param name='notificationType'> /// The notification type whose equivalent will be retrieved /// </param> private static AndroidJavaObject getFuelSDKOrientationType(FuelSDK.ContentOrientation orientation) { string orientationTypeValue = orientation.ToString(); AndroidJavaClass fuelSDKNotificationTypeClass = new AndroidJavaClass("com.fuelpowered.lib.fuelsdk.fuelorientationtype"); return fuelSDKNotificationTypeClass.CallStatic<AndroidJavaObject>("findByValue", orientationTypeValue); }
public void OnNotificationDisabled(FuelSDK.NotificationType type) { Debug.Log ("OnNotificationDisabled - disabled: " + type.ToString ()); // update game notification UI widget for the given notification type }