You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ready to use address selection activity using Google Maps.
3
+
4
+
# Demo
5
+
6
+
# Implementation
7
+
8
+
## Enable Google Maps and Places APIs
9
+
* Go to google maps api page from google cloud console from [here](https://console.cloud.google.com/google/maps-apis/apis/maps-android-backend.googleapis.com/metrics?). Enable it from the top of the page.
10
+
* Go to google places api page from google cloud console from [here](https://console.cloud.google.com/google/maps-apis/apis/places-backend.googleapis.com/metrics?). Enable it from the top of the page.
11
+
12
+
## Get the API Key from Console
13
+
14
+
* Follow [this](https://developers.google.com/maps/documentation/android-sdk/get-api-key) link and get API key from Google Cloud Console.
15
+
16
+
* In AndroidManifest.xml, add the following element as a child of the <application> element, by inserting it just before the closing </application> tag:
17
+
```xml
18
+
<meta-data
19
+
android:name="com.google.android.geo.API_KEY"
20
+
android:value="YOUR_API_KEY"/>
21
+
```
22
+
23
+
# Dependency
24
+
25
+
```groovy
26
+
allprojects {
27
+
repositories {
28
+
...
29
+
maven { url 'https://jitpack.io' }
30
+
}
31
+
}
32
+
33
+
dependencies {
34
+
implementation ''
35
+
}
36
+
```
37
+
38
+
39
+
License
40
+
--------
41
+
42
+
43
+
Copyright 2019 Mert Şimşek
44
+
45
+
Licensed under the Apache License, Version 2.0 (the "License");
46
+
you may not use this file except in compliance with the License.
47
+
You may obtain a copy of the License at
48
+
49
+
http://www.apache.org/licenses/LICENSE-2.0
50
+
51
+
Unless required by applicable law or agreed to in writing, software
52
+
distributed under the License is distributed on an "AS IS" BASIS,
53
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
54
+
See the License for the specific language governing permissions and
0 commit comments