Android Question how to show developer apps in play store?

jchal

Active Member
Licensed User
Longtime User
i undesrtand sofar the use of
B4X:
Dim Intent1 As Intent
                Intent1.Initialize(Intent1.ACTION_VIEW, "market://details?id=com.myapp.co")
        StartActivity(Intent1)
i tred to use this lines of code but it did not work
B4X:
Dim Intent1 As Intent
        Intent1.Initialize(Intent1.ACTION_VIEW, "market://developer?id=mydeveloperID")
      
        StartActivity(Intent1)
ehat is the correct code?
 
Top