document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.           package="com.okedroid.googlemaps">
  4.  
  5.     <!--
  6.          The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
  7.          Google Maps Android API v2, but you must specify either coarse or fine
  8.          location permissions for the \'MyLocation\' functionality.
  9.     -->
  10.     <uses-permission android:name="android.permission.INTERNET" />
  11.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  12.     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
  13.  
  14.     <application
  15.         android:allowBackup="true"
  16.         android:icon="@mipmap/ic_launcher"
  17.         android:label="@string/app_name"
  18.         android:supportsRtl="true"
  19.         android:theme="@style/AppTheme">
  20.  
  21.         <!--
  22.              The API key for Google Maps-based APIs is defined as a string resource.
  23.              (See the file "res/values/google_maps_api.xml").
  24.              Note that the API key is linked to the encryption key used to sign the APK.
  25.              You need a different API key for each encryption key, including the release key that is used to
  26.              sign the APK for publishing.
  27.              You can define the keys for the debug and release targets in src/debug/ and src/release/.
  28.         -->
  29.         <meta-data
  30.             android:name="com.google.android.geo.API_KEY"
  31.             android:value="@string/google_maps_key"/>
  32.  
  33.         <activity
  34.             android:name=".MapsActivity"
  35.             android:label="@string/title_activity_maps">
  36.             <intent-filter>
  37.                 <action android:name="android.intent.action.MAIN"/>
  38.  
  39.                 <category android:name="android.intent.category.LAUNCHER"/>
  40.             </intent-filter>
  41.         </activity>
  42.     </application>
  43.  
  44. </manifest>
');