So I have GPS and accelerometer continuously running while app is in the background and this is achieved by adding location services in app background modes in plist. Works fine on iPhone 4S, I can see that these callback methods are being called properly when app is in background.
// accelerometer
[self.motionMgr startAccelerometerUpdatesToQueue:self.queue
withHandler:
^(CMAccelerometerData *accelerometerData, NSError *error){
}];
// GPS
- (void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation {}
On iPhone 3GS though, this only works when app is active. Once it goes to background, I'm only getting updates from location manager but not the accelerometer. When app is back on foreground, accelerometer updates start happening again.
Does anyone know if there's any issue with accelerometer/multitasking on 3GS? The 3GS phone is running iOS 4.3.1, app deployment target is 4.0, iOS 5 SDK.
Thanks in advance.
Edit: Anyone? Another thing I found when debugging was that [self.motionMgr isAccelerometerActive] returns true on 4S but false on 3GS both when running in background.