Reputation: 14571
I am developing a GPS Tracking app which can come into security category in app Store. I have some problems regarding some things that I have used whether apple will approve it or not or there is some alternate for the problems
I have used
bgTask = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
[[UIApplication sharedApplication] endBackgroundTask:bgTask];
bgTask = UIBackgroundTaskInvalid;
}];
Also using voip
BOOL backgroundAccepted = [[UIApplication sharedApplication] setKeepAliveTimeout:timer handler:^{
[self beginLogging];
}];
Its keeping a function alive in background where I am sending some tracking data to the server
This app is meant for security purpose and may be used by police. How to get this approve. Any modifications or alternatives in which apple can approve this. Any feature which I have to discard. Any suggestions? Thanks
Upvotes: 0
Views: 95
Reputation:
I'm not sure if this will get approved. Seems a bit dodgy. But if its only intended for a certain police force then how about distributing it only to them? Not via the App Store. Or in fact Apple do have some kind of enterprise app distribution on the App Store too now which limits you app to select people that you allow access to, so maybe thats a better alternative?
Upvotes: 1