Android Question May I know, how to redirect to android google Play store

lkching7

Member
Licensed User
Longtime User
look like a simple question, but really no idea how to redirect user goto google play store .
 

tdocs2

Well-Known Member
Licensed User
Longtime User
NJ,

Simple and to the point! Excellent!

For those who might be stomped by the <>, this is what I actually used - real good app:

B4X:
Sub Button1_Click
Private GooglePlay As Intent

GooglePlay.Initialize(GooglePlay.ACTION_VIEW, "market://details?id=com.phoneinfo.free")

StartActivity(GooglePlay)   

End Sub

Best regards.

Sandy
 
Upvote 0
Top