Hi everyone and thank you for your help.
I have been attempting to add an AppRever ad to my project. The ad displays properly in the simulator but will not build for android devices.
I get an error:
[Build Error #5]
Error:
You are not currently subscribed to the following plugins
com.apprever:plugin.apprever
How do I fix this error?
Here is the code for my build.settings file:
-- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { orientation = { default = "landscapeLeft", supported = { "landscapeLeft, landscapeRight", } }, plugins = { ["plugin.apprever"] = { -- required publisherId = "com.apprever", }, -- ["CoronaProvider.ads.vungle"] = -- { -- -- required -- publisherId = "com.vungle", -- }, }, android = { usesPermissions = { "android.permission.INTERNET", --"android.permission.ACCESS\_NETWORK\_STATE", --"android.permission.READ\_PHONE\_STATE", --"android.permission.WRITE\_EXTERNAL\_STORAGE", --"android.permission.ACCESS\_WIFI\_STATE", }, }, iphone = { plist = { UIStatusBarHidden = false, UIPrerenderedIcon = true, -- set to false for "shine" overlay --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend --[[ -- iOS app URL schemes: CFBundleURLTypes = { { CFBundleURLSchemes = { "fbXXXXXXXXXXXXXX", -- example scheme for facebook "coronasdkapp", -- example second scheme } } } --]] } }, --[[ -- Android permissions androidPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE", "android.permission.READ\_PHONE\_STATE", "android.permission.WRITE\_EXTERNAL\_STORAGE", "android.permission.ACCESS\_WIFI\_STATE", }, ]]-- }
Thank you for your help in advance!