Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_VIEW,"market://detailsid=yourapp.package.name")
StartActivity(Intent1)
Do you mean this ?
B4X:Dim Intent1 As Intent Intent1.Initialize(Intent1.ACTION_VIEW,"market://detailsid=yourapp.package.name") StartActivity(Intent1)
This will open your app link in google play app.
Where "yourapp.package.name" is the name of your app on the market - google play.
Intent1.Initialize(Intent1.ACTION_VIEW,"market://details?id=yourapp.package.name")