Location tagging

I am trying to enable a location tagging service in my app, but am running into a problem regarding the build.settings.

I have included the following code, which seems to work when I build my app for an iOS device:

[lua]UIRequiredDeviceCapabilities = {

    “location-services”,

    “gps”,

},[/lua]

However, when I submit to the app store, I receive a message stating that I cannot submit an app that will not work on all iOS devices. Why is this? Is there a way I can set these device capabilities as optional?

Thanks

Hi @zabace,

Specifying the features there indicates that they are required. Try omitting that table entirely.

Brent

Hi @zabace,

Specifying the features there indicates that they are required. Try omitting that table entirely.

Brent