public static void executeGetCancelKey()
        {
            using (AndroidJavaClass androidJavaClass = new AndroidJavaClass("jp.crooz.neptune.NPDevice"))
            {
                for (;;)
                {
                    int num = androidJavaClass.CallStatic <int>("getIsCancelKey", new object[0]);
                    if (num == 1)
                    {
                        break;
                    }
                    if (num == 2)
                    {
                        goto Block_3;
                    }
                }
                goto IL_3F;
Block_3:
                NpDeviceInfoAndroid.cancelBackKey();
IL_3F:
                androidJavaClass.CallStatic("setIsCancelKey", new object[]
                {
                    0
                });
            }
        }
Exemplo n.º 2
0
 public static void SetLowMemoryCallBack(string gameObjectName, INpOnLowMemoryListener listener)
 {
     if (listener == null)
     {
         global::Debug.LogError("INpOnLowMemoryListener is Null.");
         return;
     }
     NpDeviceInfoAndroid.SetLowMemoryCallBack(gameObjectName, listener);
 }
Exemplo n.º 3
0
        public static void Popup(string title, string message)
        {
            NpDeviceInfoAndroid.Popup(title, message);
            Thread thread = new Thread(delegate()
            {
                NpDeviceInfo.executeGetCancelKey();
            });

            thread.Start();
        }
Exemplo n.º 4
0
 public static int GetMemoryUse()
 {
     return(NpDeviceInfoAndroid.GetMemoryUse());
 }
Exemplo n.º 5
0
 public static int GetTotalFreeMem()
 {
     return(NpDeviceInfoAndroid.GetSystemAvailMem());
 }
Exemplo n.º 6
0
 public static int GetSystemThreshold()
 {
     return(NpDeviceInfoAndroid.GetSystemThreshold());
 }
Exemplo n.º 7
0
 public static int GetDalvikHeepMaxMemory()
 {
     return(NpDeviceInfoAndroid.GetDalvikHeepMaxMemory());
 }
Exemplo n.º 8
0
 public static int GetHeepUsedMemory()
 {
     return(NpDeviceInfoAndroid.GetHeepUsedMemory());
 }
Exemplo n.º 9
0
        public static string GetExternalCacheDir()
        {
            string empty = string.Empty;

            return(NpDeviceInfoAndroid.GetExternalCacheDir());
        }
Exemplo n.º 10
0
 public static bool GetIsSDCardEnable()
 {
     return(NpDeviceInfoAndroid.GetIsSDCardEnable());
 }
Exemplo n.º 11
0
 public static void ReleaseLowMemoryCallBack()
 {
     NpDeviceInfoAndroid.ReleaseLowMemoryCallBack();
 }
Exemplo n.º 12
0
 public static void PushBackKey(string title, string message)
 {
     NpDeviceInfoAndroid.PushBackKey(title, message);
 }
Exemplo n.º 13
0
 public static string GenerateUUID()
 {
     return(NpDeviceInfoAndroid.GetUuid());
 }
Exemplo n.º 14
0
        public static string GetAdid()
        {
            string empty = string.Empty;

            return(NpDeviceInfoAndroid.GetGuid());
        }
Exemplo n.º 15
0
        public static string GetLocaleCountryCode()
        {
            string empty = string.Empty;

            return(NpDeviceInfoAndroid.GetLocaleCountryCode());
        }
Exemplo n.º 16
0
        public static string GetLocaleLanguageAndCountry()
        {
            string empty = string.Empty;

            return(NpDeviceInfoAndroid.GetLocaleLanguageAndCountry());
        }
Exemplo n.º 17
0
        public static string GetPlatform()
        {
            string empty = string.Empty;

            return(NpDeviceInfoAndroid.GetPlatform());
        }
Exemplo n.º 18
0
        public static string GetFilesDir()
        {
            string empty = string.Empty;

            return(NpDeviceInfoAndroid.GetFilesDir());
        }
Exemplo n.º 19
0
        public static string GetDeviceModel()
        {
            string empty = string.Empty;

            return(NpDeviceInfoAndroid.GetDeviceModel());
        }
Exemplo n.º 20
0
 public static float GetFreeStorageSpaceForSDCard()
 {
     return(NpDeviceInfoAndroid.GetFreeStorageSpaceForSDCard());
 }
Exemplo n.º 21
0
        public static string GetOSVersion()
        {
            string empty = string.Empty;

            return(NpDeviceInfoAndroid.GetOSVersion());
        }
Exemplo n.º 22
0
 private static void executeGetCancelKey()
 {
     NpDeviceInfoAndroid.executeGetCancelKey();
 }