@@ -22,15 +22,18 @@ Modify the `AndroidManifest` to include the new meta tag along with your API key
2222in ` App_Resources/Android/AndroidManifest.xml `
2323
2424``` xml
25+
2526<application
2627 android : name =" com.tns.NativeScriptApplication"
2728 android : allowBackup =" true"
2829 android : icon =" @mipmap/ic_launcher"
2930 android : label =" @string/app_name"
3031 android : theme =" @style/AppTheme"
31- android : hardwareAccelerated =" true"
32- >
33- <meta-data android : name =" com.google.android.geo.API_KEY" android : value =" youKey" />
32+ android : hardwareAccelerated =" true" >
33+
34+ <meta-data
35+ android : name =" com.google.android.geo.API_KEY"
36+ android : value =" youKey" />
3437</application >
3538```
3639
@@ -40,9 +43,8 @@ Modify the `Info.plist` to include the new meta tag along with your API key, the
4043in ` App_Resources/iOS/Info.plist `
4144
4245``` xml
43- <?xml version =" 1.0" encoding =" UTF-8" ?>
44- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
45- "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
46+ <?xml version =" 1.0" encoding =" UTF-8" ?>
47+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
4648<plist version =" 1.0" >
4749 <dict >
4850 <key >TNSGoogleMapsAPIKey</key >
@@ -63,10 +65,10 @@ Ensure you've included xmlns:map="@nativescript/google-maps" on the Page element
6365
6466``` xml
6567<map : MapView
66- ready =" onReady"
67- mapTap =" onTap"
68- mapLongPress =" onLongPress"
69- markerTap =" onMarkerTap"
68+ ready=" onReady"
69+ mapTap=" onTap"
70+ mapLongPress=" onLongPress"
71+ markerTap=" onMarkerTap"
7072/>
7173```
7274
0 commit comments