namespace UnityEngine.Purchasing
{
///
/// The type of Android store being run.
///
public enum AndroidStore
{
///
/// GooglePlay Store
///
GooglePlay, //<= Map to AppStore
///
/// Amazon App Store.
///
AmazonAppStore, //
///
/// Unity Distribution Portal, which manages other stores internally.
///
///
UDP, //
///
/// No Android Store specified. Usually the case if not using Android.
///
NotSpecified
}
///
/// A meta enum to bookend the app Stores for Android. Mapped from AndroidStore values.
/// Is distinct from AndroidStore to avoid non-unique Enum.Parse and Enum.ToString lookup conflicts.
/// Note these must be synchronized with constants in the AppStore enum.
///
public enum AndroidStoreMeta
{
///
/// The first Android App Store.
///
AndroidStoreStart = AndroidStore.GooglePlay,
///
/// The last Android App Store.
///
AndroidStoreEnd = AndroidStore.UDP
}
}