からを抽出していた がLocationReceiver
ありました。しかし、今は非推奨になっています。何に変更すればよいですか?FusedLocationProviderApi.KEY_LOCATION_CHANGED
Location
Intent
KEY_LOCATION_CHANGED
現在のコード:
@Override
public void onReceive(Context context, Intent intent) {
final Location location = (Location) intent.getExtras().get(FusedLocationProviderApi.KEY_LOCATION_CHANGED);
if (location != null) {
float accuracy = location.getAccuracy();
Log.d(LocationReceiver.class.getSimpleName(), "*** Accuracy is: " + accuracy + " ***");
} else {
Log.d(LocationReceiver.class.getSimpleName(), "*** location object is null ***");
}
}