Custom message with rate app

Can you attach a custom message to the rate app popup? For example, if I wanted to say ‘To support future development, please leave us a rating’, could I do that with the showPopup?

local options = { iOSAppId = "1234567890", nookAppEAN = "0987654321", supportedAndroidStores = { "google", "samsung", "amazon", "nook" }, } native.showPopup("rateApp", options)  

The native.showPopup is what shows the actual app store screen after the user decides to rate your app.  You would build your “Please support us” message in to  your UI using a display.newText() or a graphic of some sort, make it a touch button to launch native.showPopup.

Rob

Thank you Rob!

Hi All,

from where I get the numbers mentioned in  :

iOSAppId = “1234567890”,
nookAppEAN = “0987654321”,
supportedAndroidStores = { “google”, “samsung”, “amazon”, “nook” },

so if i have app in google play now and planning to publish one for apple store?

Thanks

Abdulaziz

The iOSAppId comes from iTunes Connect.

The nookAppEAN comes from the B&N Developer portal app listing page.

Thanks Rob,

i assumed for google play it is detected automatically… correct ?

Regards

Abdul

The native.showPopup is what shows the actual app store screen after the user decides to rate your app.  You would build your “Please support us” message in to  your UI using a display.newText() or a graphic of some sort, make it a touch button to launch native.showPopup.

Rob

Thank you Rob!

Google, Samsung and Amazon use the App’s Package Name (com.yourcompany.yourapp) to identify your app and Corona knows that information already.

Rob

thanks sir

Hi All,

from where I get the numbers mentioned in  :

iOSAppId = “1234567890”,
nookAppEAN = “0987654321”,
supportedAndroidStores = { “google”, “samsung”, “amazon”, “nook” },

so if i have app in google play now and planning to publish one for apple store?

Thanks

Abdulaziz

The iOSAppId comes from iTunes Connect.

The nookAppEAN comes from the B&N Developer portal app listing page.

Thanks Rob,

i assumed for google play it is detected automatically… correct ?

Regards

Abdul

Google, Samsung and Amazon use the App’s Package Name (com.yourcompany.yourapp) to identify your app and Corona knows that information already.

Rob

thanks sir