Hi,
I am trying to make it so that when users are prompted to rate my app the native popup appears without leaving the app.
I have done this with a native popup for the App Store,
local appPage = { iOSAppId = "1062628473" } native.showPopup( "appStore", appPage )
However, I have been receiving errors no matter what I do (even when downloading the plugin).
Here are the plugins that I have in my build.settings:
plugins = { ["CoronaProvider.gameNetwork.apple"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true } }, ["CoronaProvider.native.popup.activity"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true } }, ["CoronaProvider.native.popup.activity.appStore"] = { publisherId = "com.coronalabs", supportedPlatforms = { iphone=true } }, },
However, once I build the app I get this error:

Yet, when I run the app in the simulator it prompts me to install the following plugin:
WARNING: CoronaProvider.native.popup.activity is not configured in build.settings
Any help is greatly appreciated.