- VERSION 5.03.02

- Se agregó código para las promos por monto.
- Se agregó codigo para validar la hora del telefono con la hora del servidor.
This commit is contained in:
2025-03-04 13:25:42 -06:00
parent d87a3c3c63
commit 267a0e7bf9
13 changed files with 318 additions and 61 deletions

View File

@@ -29,10 +29,16 @@ End Sub
' Determine if the app already has MANAGE_EXTERNAL_STORAGE call Environment.isExternalStorageManager()
' Return True if this app already has MANAGE_EXTERNAL_STORAGE permission
Public Sub HasPermission As Boolean
Dim has As Boolean
Dim jo As JavaObject
jo.InitializeStatic("android.os.Environment")
has = jo.RunMethod("isExternalStorageManager", Null)
Dim has As Boolean = False
Try
Dim jo As JavaObject
jo.InitializeStatic("android.os.Environment")
If jo.RunMethod("isExternalStorageManager", Null) <> Null Then
has = jo.RunMethod("isExternalStorageManager", Null)
End If
Catch
Log(LastException)
End Try
Return has
End Sub