-
Notifications
You must be signed in to change notification settings - Fork 171
Open
Labels
Description
When ever i run the intent
it does not shows the address it only shows the co ordinates
I tried using .withGooglePlacesApiKey(String.valueOf(R.string.google_maps_key))
but didn't work
I also put <meta-data android:name="com.google.android.geo.API_KEY" android:value="@string/google_maps_key" />
in manifest
but no working and search bar is also not working.
Intent intent = new LocationPickerActivity.Builder()
.withDefaultLocaleSearchZone()
.shouldReturnOkOnBackPressed()
.withSatelliteViewHidden()
.withGooglePlacesApiKey(String.valueOf(R.string.google_maps_key))
.withGoogleTimeZoneEnabled()
.withSearchZone("hi_IN")
.build(getContext());
startActivityForResult(intent,1);