Advertisement
Guest User

AndroidManifest.xml

a guest
Oct 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.deanb.findmyseshmap">
  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.ACCESS_FINE_LOCATION" />
  11. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  12. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  13. <uses-permission android:name="android.permission.INTERNET" />
  14. <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
  15.  
  16. <application
  17. android:allowBackup="true"
  18. android:icon="@mipmap/ic_launcher"
  19. android:label="@string/app_name"
  20. android:roundIcon="@mipmap/ic_launcher_round"
  21. android:supportsRtl="true"
  22. android:theme="@style/AppTheme">
  23.  
  24. <!--
  25. The API key for Google Maps-based APIs is defined as a string resource.
  26. (See the file "res/values/google_maps_api.xml").
  27. Note that the API key is linked to the encryption key used to sign the APK.
  28. You need a different API key for each encryption key, including the release key that is used to
  29. sign the APK for publishing.
  30. You can define the keys for the debug and release targets in src/debug/ and src/release/.
  31. -->
  32. <meta-data
  33. android:name="com.google.android.geo.API_KEY"
  34. android:value="@string/google_maps_key" />
  35.  
  36. <activity
  37. android:name=".MapsActivity"
  38. android:label="FindMySesh Map">
  39. <intent-filter>
  40. <action android:name="android.intent.action.MAIN" />
  41.  
  42. <category android:name="android.intent.category.LAUNCHER" />
  43. </intent-filter>
  44. </activity>
  45. </application>
  46.  
  47. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement