i want to use google map place picker in my android app but the Place Picker is deprecated and is not included in the new Places SDK. Please tell me how to implement the latest SDK in my android app
new LatLng(47.64299816, -122.14351988));
PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder();
builder.setLatLngBounds(latLngBounds);
try {
startActivityForResult(builder.build(this), PLACE_PICKER_REQ_CODE);
} catch (Exception e) {
Log.e(TAG, e.getStackTrace().toString());
}
Here is the alternative.
here you will get the latlng of selected place.