Just a couple minutes after I uploaded the apk on Google Play I got this exception reported on Crashlytics coming from a device, which is definitely not mine, ruing the latest version of the app (the one that I just uploaded).
Fatal Exception: java.lang.IllegalArgumentException: provider=network
at android.os.Parcel.readException(Parcel.java:1331)
at android.os.Parcel.readException(Parcel.java:1281)
at android.location.ILocationManager$Stub$Proxy.requestLocationUpdates(ILocationManager.java:646)
at android.location.LocationManager._requestLocationUpdates(LocationManager.java:589)
at android.location.LocationManager.requestLocationUpdates(LocationManager.java:453)
at com.my.app.StubLib.android_location_LocationManager_requestLocationUpdates(StubLib.java:2342)
at com.my.app.services.TrackingService$9.run(TrackingService.java:548)
at android.os.Handler.handleCallback(Handler.java:605)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4424)
at java.lang.reflect.Method.invokeNative(Method.java)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.inteal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
at com.android.inteal.os.ZygoteInit.main(ZygoteInit.java:551)
at dalvik.system.NativeStart.main(NativeStart.java)
I find particularly interesting this part:
at com.my.app.StubLib.android_location_LocationManager_requestLocationUpdates(StubLib.java:2342)
What is StubLib? I don't have neither such pachage or class under com.my.app
In my experience the updates are not rolled out nearly this fast so my guess it that the fatal exception was generated by some automated Google Play testing/verification device.
Crashlytics reports the the device as a rooted Galaxy Nexus ruing Android 4.0.4
I have never experienced or gotten reported this exception before, the code implementing LocationManager is pretty standard and this particular update didn't include any changes regarding the location manager which was ruing fine for quite some time now (let me know if you need to see the code).
Should I be worried about this error report?
