It's possilbe?
i need to see update available fo my apps.
Simile to:
B4X:
Dim i As Intent
i.Initialize("", "")
i.SetComponent("com.google.android.gms/com.google.android.gms.security.settings.VerifyAppsSettingsActivity")
StartActivity(i)
I have made a free app and a paid app, I want to provide a link that when clicked, will open up the google play store on my paid app's page so it can be purchased easily from there. Any pointers as to how to open the Play Store app with this info? Or do I need to invoke a browser somehow? Thanks
open the app in appgallery... Private ii As Intent Dim appid As Int=xxxxxx ii.Initialize(ii.ACTION_VIEW, "https://appgallery.cloud.huawei.com/marketshare/app/C" & appid) StartActivity(ii)