You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like there are a couple of issues with the Eclair-specific code:
1) The booleans to enable/disable the services in the manifest file are
reversed:
<service android:enabled="@bool/pre_froyo"
android:name=".services.PlacesUpdateService"> and <service
android:enabled="@bool/froyo_or_later"
android:name=".services.EclairPlacesUpdateService">
should be
<service android:enabled="@bool/froyo_or_later"
android:name=".services.PlacesUpdateService"> and <service
android:enabled="@bool/pre_froyo"
android:name=".services.EclairPlacesUpdateService">
2) Several classes do
PlacesConstants.SUPPORTS_ECLAIR ? EclairPlacesUpdateService.class :
PlacesUpdateService.class
but should do
PlacesConstants.SUPPORTS_FROYO ? PlacesUpdateService.class :
EclairPlacesUpdateService.class
3) LegacyPlacesUpdateRequester is never instantiated in
PlatformSpecificImplementationFactory.getLocationUpdateRequester()
Original issue reported on code.google.com by [email protected] on 5 Oct 2011 at 11:23
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 5 Oct 2011 at 11:23The text was updated successfully, but these errors were encountered: