Пример #1
0
	public override  void SetOrientationUIIgnite (FuelSDK.ContentOrientation orientation) {
		iOSSetOrientationuiIgnite(orientation.ToString());
	}
Пример #2
0
	public void OnImplicitLaunch(FuelSDK.ApplicationState applicationState)
	{
		Debug.Log ("OnImplicitLaunch - application state: " + applicationState.ToString ());

		// apply implicit launch policy based on the given application state
	}
Пример #3
0
    /// <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);
    }
Пример #4
0
	public void OnNotificationDisabled(FuelSDK.NotificationType type) 
	{
		Debug.Log ("OnNotificationDisabled - disabled: " + type.ToString ());
		
		// update game notification UI widget for the given notification type
	}