I am still a little confuse with this rate button. I am hoping to release for Amazon and Google PlayStore. The issue is that Amazon seems to also be selling Android apps. Also would I need to use system.getInfo(“targetAppStore”) for this? I am trying to avoid to have two builds (one for Amazon Kindle) and one for Google Playstore.
I am thinking of something like:
******
local optionsRating =
{
supportedAndroidStores = { “google”, “amazon” },
}
– Then in a button event have:
native.showPopup(“rateApp”, optionsRating)
******
Would that piece of code works for both Amazon (Kindle/general Android) and Google Play Store? Or is Amazon would likely reject the app because I am using “google” in the option table?
Finally, I did not put any app ID (like I used to do with IOS) since my understanding (I could be wrong) that both Amazon and PlayStore simply use the current loaded app to automagically figure out the app the user is trying to review. Unlike IOS where you have to specify the app ID. My understanding for google and amazon I only need the to setup an app ID if I want to review a different app than the one calling the review link.
I hope I making some sense:)
This is the last piece of the puzzle I need to figure before sending my first Android implementation of ios app to both Amazon and the Play Stores!
Thank you guys.
Mo