Several customers reported issues with our drive application. The only thing we found in common was they were all AT&T wireless. We tested this same app local office on three iPhone X's with Verizon Wireless and one with T-Mobile and they work perfectly. On the two AT&T iPhones X's here in the local office it's the same as our customers report. It's recording all position changes except the speed is always zero.
Version Number of Plugin: 4.5.0.6
Device Tested On: iPhoneX, iPhone 6s
Simulator Tested On: N/A
Version of VS: 7.5.3 (Build 7)
Version of Xamarin: 4.4.1.193
Versions of other things you are using: N/A
Steps to reproduce the Behavior
StartListeningAsync using Xamarin Geolocator
Expected Behavior
Returns Latitude, Longitude, and Speed as device is moved
Bug Information
Several customers reported issues with our drive application. The only thing we found in common was they were all AT&T wireless. We tested this same app local office on three iPhone X's with Verizon Wireless and one with T-Mobile and they work perfectly. On the two AT&T iPhones X's here in the local office it's the same as our customers report. It's recording all position changes except the speed is always zero.
Version Number of Plugin: 4.5.0.6 Device Tested On: iPhoneX, iPhone 6s Simulator Tested On: N/A Version of VS: 7.5.3 (Build 7) Version of Xamarin: 4.4.1.193 Versions of other things you are using: N/A
Steps to reproduce the Behavior
StartListeningAsync using Xamarin Geolocator
Expected Behavior
Returns Latitude, Longitude, and Speed as device is moved
Actual Behavior
Latitude & Longitude are returned with no speed
Code snippet
void Geolocator_PositionChanged(object sender, PositionEventArgs e) { var position = e.Position; Speed = position.Speed; }
Screenshotst