Created
February 8, 2021 18:51
-
-
Save NinoDLC/905814c7dbc4675aef82b45c51e5e5a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@NonNull | |
private String mapPhotoReference(@NonNull String photoReference) { | |
//noinspection SpellCheckingInspection | |
return "https://maps.googleapis.com/maps/api/place/photo?maxwidth=1080" | |
+ "&photoreference=" + photoReference | |
+ "&key=" + BuildConfig.GOOGLE_PLACES_KEY; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment