Yes, our “appStore” popup feature does support the Samsung app store. I’ve tested this for myself. You would code it as follows…
[lua]local options =
{
androidAppPackageName = “your.non.trial.app”,
supportedAndroidStores = { “samsung” },
}
native.showPopup(“appStore”, options)[/lua]
One thing I highly recommend is to set the [lua]supportedAndroidStores[/lua] to only the “samsung” app store. This is in case the Samsung app reviewer’s Android device has both the Google Play and Samsung app stores installed on his/her device, because in that case Corona is forced to guess which app store it should bring up and it may guess wrong and pick Google Play. If you indicate that your app only supports the “samsung” app store, then it will only choose their store in this case. I hope this makes sense.
Also, the [lua]androidAppPackageName[/lua] is an optional setting and if you do not provide it, then this API will use the currently running app’s package name by default. But since you said this is a trial app that is advertising the paid version, then you set this to your non-trial app’s package name.
I hope this helps! [import]uid: 32256 topic_id: 32718 reply_id: 130329[/import]