Hi,
somebody know how Adding Play Store link in lua ? Im trying to add link in my app for android that take will take you to the play sotre and the user can do a review to my app .
Or is any way to make a review option for my app ?
Thanks
Hi,
somebody know how Adding Play Store link in lua ? Im trying to add link in my app for android that take will take you to the play sotre and the user can do a review to my app .
Or is any way to make a review option for my app ?
Thanks
Yes it’s pretty easy to do.
Here’s how:
local options = { supportedAndroidStores = { "google" }, } native.showPopup("rateApp", options)
And don’t forget to look at the API doc for more details:
http://docs.coronalabs.com/api/library/native/showPopup.html
Cheers,
Naomi
Yes it’s pretty easy to do.
Here’s how:
local options = { supportedAndroidStores = { "google" }, } native.showPopup("rateApp", options)
And don’t forget to look at the API doc for more details:
http://docs.coronalabs.com/api/library/native/showPopup.html
Cheers,
Naomi