Basically I am trying to implement a PLACE_PICKER for Android and I am getting this confusing error here:
int PLACE_PICKER_REQUEST = 1;
PlacePicker.I
For Fragment
try {
int PLACE_PICKER_REQUEST = 1;
PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder();
startActivityForResult(builder.build(getActivity()), PLACE_PICKER_REQUEST);
}catch (GooglePlayServicesNotAvailableException | GooglePlayServicesRepairableException ex){
ex.printStackTrace();
}