In the documentation for the ageRange plugin (https://docs.coronalabs.com/plugin/ageRange/index.html), the build.settings changes for iOS are incorrect. They identify ["com.apple.developer.declared-age-range"] = true as a plist item, but it should be in the entitlements section. (See below)
settings =
{
iphone =
{
entitlements =
{
["com.apple.developer.declared-age-range"] = true,
},
},
}
Developers will also need to add Declared Age Range as an Entitlement to their project Identifiers and then create a new Provisioning Profile.
In the documentation for the ageRange plugin (https://docs.coronalabs.com/plugin/ageRange/index.html), the build.settings changes for iOS are incorrect. They identify ["com.apple.developer.declared-age-range"] = true as a plist item, but it should be in the entitlements section. (See below)
settings =
{
iphone =
{
entitlements =
{
["com.apple.developer.declared-age-range"] = true,
},
},
}
Developers will also need to add Declared Age Range as an Entitlement to their project Identifiers and then create a new Provisioning Profile.