D
Deleted member 103
Guest
Hi,
I asked this question yesterday in the wrong forum, I hope I am now in the correct forum.
How can I convert this B4a functions in B4i?
Thank you.
I asked this question yesterday in the wrong forum, I hope I am now in the correct forum.
How can I convert this B4a functions in B4i?
Thank you.
B4X:
Sub getVersion As String
Dim pm As PackageManager
Return pm.GetVersionName(GetPackageName)
End Sub
Sub GetVersionCode As Int
Dim pm As PackageManager
Return pm.GetVersionCode(GetPackageName)
End Sub
Sub GetApplicationLabel As String
Dim pm As PackageManager
Return pm.GetApplicationLabel(GetPackageName)
End Sub
Sub GetPackageName As String
Dim r As Reflector
Return r.GetStaticField("anywheresoftware.b4a.BA", "packageName")
End Sub