lost icon indicating copy to clipboard operation
lost copied to clipboard

A drop-in replacement for Google Play services location APIs for Android

Results 51 lost issues
Sort by recently updated
recently updated
newest added

Rx has become widely used in the Android community. We should consider deploying our own artifact which provides extensions to allow developers using Rx seamless integration with Lost. There are...

We should not be using `Location#getTime` for elapsed time computation but are doing so for earlier versions of Android because `Location#getElapsedRealtimeNano` is not available. https://github.com/mapzen/lost/blob/master/lost/src/main/java/com/mapzen/android/lost/internal/SystemClock.java#L13-L19 https://developer.android.com/reference/android/location/Location.html#getElapsedRealtimeNanos() Consider creating another, reliable...

### Description Connect lost api client, request location updates and receive locations back to foreground (in onPause method you disconnect the client and connect it in onResume method). Knowing that,...

### Description Could be interesting to have a table of features like the picture below to describe LOST's feature set. ![image](https://user-images.githubusercontent.com/1163880/28277727-d2f4574a-6ae8-11e7-9999-27e43e783b85.png)

enhancement

Currently, Lost can ([and occasionally does](https://github.com/mapzen/lost/issues/218)) throw `RemoteExceptions` when making calls to/from the service. Since these are checked exceptions, we should provide a way for the developer to handle recovering...

### Description Getting a Runtime Exception and app crashes with the following log (taken from Google Play Console): `java.lang.RuntimeException: at com.mapzen.android.lost.internal.FusedLocationProviderServiceDelegate.reportLocation(FusedLocationProviderServiceDelegate.java:78) at com.mapzen.android.lost.internal.FusionEngine.onLocationChanged(FusionEngine.java:196) at android.location.LocationManager$ListenerTransport._handleMessage(LocationManager.java:286) at android.location.LocationManager$ListenerTransport.access$000(LocationManager.java:215) at android.location.LocationManager$ListenerTransport$2.handleMessage(LocationManager.java:238) at...

### How to config proguard-rules.pro file? when use the lost.jar, whether need to config proguard-rules.pro file?

### Description Currently LOST only allows connection callbacks to be added using the builder object for API clients. This causes some strangeness when dealing with resuming from background per #221.

### Problematic In indoor for example, user can wait a long time to receive a new location. ### Proposal So to avoid this, you can have a kind of timer...

enhancement