Class Utilities
Provides a cross-platform interface to access commonly used native features.
Inheritance
System.Object
Utilities
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: VoxelBusters.EssentialKit
Assembly: cs.temp.dll.dll
Syntax
public static class Utilities
Methods
OpenApplicationSettings()
Declaration
public static void OpenApplicationSettings()
OpenAppStorePage()
Opens the app store website page associated with this app.
Declaration
public static void OpenAppStorePage()
OpenAppStorePage(PlatformConstant[])
Opens the app store page associated with the specified application id.
Declaration
public static void OpenAppStorePage(params PlatformConstant[] applicationIds)
Parameters
Type | Name | Description |
---|---|---|
PlatformConstant[] | applicationIds | An array of string values, that holds app id's of each supported platform. |
Examples
The following code example shows how to open store link.
using UnityEngine;
using System.Collections;
using VoxelBusters.EssentialKit;
public class ExampleClass : MonoBehaviour
{
public void OpenStorePage ()
{
Utility.OpenStoreLink(PlatformValue.Android("com.example.app"), PlatformValue.IOS("ios-app-id"));
}
}
OpenAppStorePage(String)
Opens the app store website page associated with the specified application id.
Declaration
public static void OpenAppStorePage(string applicationId)
Parameters
Type | Name | Description |
---|---|---|
System.String | applicationId | Application id. |
RequestStoreReview()
Creates a request to open the store review window.
Declaration
public static void RequestStoreReview()