EasyWayLocation
EasyWayLocation copied to clipboard
This library contain all utils related to google location. like, getting lat or long, Address and Location Setting dialog, many more...
Geocoder returns empty lists. Please follow the link below. https://developer.android.com/reference/android/location/Geocoder#isPresent() You should probably add the isPresent() method and if it returns false then use the geocoding API as fallback.
Need proguard rules for this lib
can you please share proguard settings
If you update ``` implementation 'com.google.android.gms:play-services-location:20.0.0' ``` to ``` implementation 'com.google.android.gms:play-services-location:21.0.0' ``` The lib crash on `checkLocationSetting()`, specifically: ``` SettingsClient client = LocationServices.getSettingsClient(context); Task task = client.checkLocationSettings(builder.build()); ``` when executing...
2023-03-28 10:49:13.024 24616-24616/com.carlosvicente.uberkotlin E/AndroidRuntime: FATAL EXCEPTION: main Process: com.carlosvicente.uberkotlin, PID: 24616 java.lang.NullPointerException: Attempt to read from field 'double com.google.android.gms.maps.model.LatLng.latitude' on a null object reference at com.example.easywaylocation.draw_path.RouteEvaluator.evaluate(RouteEvaluator.java:11) at com.example.easywaylocation.draw_path.RouteEvaluator.evaluate(RouteEvaluator.java:8) at android.animation.KeyframeSet.getValue(KeyframeSet.java:202)...
How can I change the size of the polyline when the origin coordinates change? without having to delete it and redo it?