Android Question Get version of my app from Google Play

Juanmavalero

Member
Licensed User
Longtime User
Is there a way to get my app version on Google Play?

I would like to launch the update automatically

Thanks
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
Sub Process_Globals
    'These global variables will be declared once when the application starts.
    'These variables can be accessed from all modules.
    Dim app As AppVersion
End Sub
Sub Activity_Create(FirstTime As Boolean)
    'Do not forget to load the layout file created with the visual designer. For example:
    'Activity.LoadLayout("Layout1")
    app.Initialize("App")
End Sub
Sub App_version(newversion As String)
    Log($"App_version(${newversion})"$)
End Sub
Sub Activity_Resume
    app.CheckAppData("com.procoit.kioskbrowser","de")
End Sub

App_version(2.5.5)
 

Attachments

  • CheckAppVersionV1.0.zip
    316.1 KB · Views: 295
Upvote 0
Top