I am using place picker API and I didn't understand why it takes time when it is launched for the first time?
After the first run/launch, when we open it for the second time, it works fine.
Here's the code which I've implemented on a button click:
PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder();
try {
startActivityForResult(builder.build(ImageStickerActivity.this), PLACE_PICKER_REQUEST);
} catch (GooglePlayServicesRepairableException e) {
e.printStackTrace();
} catch (GooglePlayServicesNotAvailableException e) {
e.printStackTrace();
}