Hi, I'm getting an error when testing my app on an iPad 2. Apparently the iPad 2 does not support 'gps', and I request the user's location using gps/location-services which require gps.
Now, when I run the app, I get an error since the iPad doesn't support GPS. When I remove gps from required device capabilities, then I see that the app at least loads, but it gives me an error when it tries to get the device location:
"2015-08-16 18:02:59.926 Ping[383:19279] -[PushNotification didFailToRegisterForRemoteNotificationsWithError:] [Line 88] didFailToRegisterForRemoteNotificationsWithError:Error Domain=NSCocoaErrorDomain Code=3000 "no valid 'aps-environment' entitlement string found for application" UserInfo=0x17046f940 {NSLocalizedDescription=no valid 'aps-environment' entitlement string found for application}"
What should I do? I need GPS, but if I require it, then some iPads will not be compatible. Help!