I'm trying to make "rate my app". i used this code:
Dim fURI As String
fURI = "market://details?id=~name~"
Dim Market As Intent
Market.Initialize(Market.ACTION_VIEW,fURI)
StartActivity (Market)
sadly i got error: error has occured in sub....... android.content.activitynotfoundexception: no activity found to handle intent {act=android.intent.action.view dat=market://details?id=name......
Your code looks correct, i have copied and pasted the code below from one of my apps and it works fine:
B4X:
Dim fURI As String
fURI = "market://details?id=lishsoft.android.saynoto0870"
Dim Market As Intent
Market.Initialize(Market.ACTION_VIEW,fURI)
StartActivity (Market)
ToastMessageShow("Thanks for rating this app",True)
I'm trying to make "rate my app". i used this code:
Dim fURI As String
fURI = "market://details?id=~name~"
Dim Market As Intent
Market.Initialize(Market.ACTION_VIEW,fURI)
StartActivity (Market)
sadly i got error: error has occured in sub....... android.content.activitynotfoundexception: no activity found to handle intent {act=android.intent.action.view dat=market://details?id=name......