AndroidManifest.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="org.uab.android.maps.simple"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-sdk
  7. android:minSdkVersion="14"
  8. android:targetSdkVersion="19" />
  9. <!-- Permission to connect to the Internet to obtain the map's tiles -->
  10. <uses-permission android:name="android.permission.INTERNET" />
  11. <!-- Permission to check the current Internet connection of the device -->
  12. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  13. <!-- Permission to write maps data to external storage -->
  14. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  15. <!-- Permission to access the Maps services -->
  16. <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
  17. <permission
  18. android:name="org.uab.deic.android.solutions.unit6.permission.MAPS_RECEIVE"
  19. android:protectionLevel="signature" />
  20. <uses-permission android:name="org.uab.deic.android.solutions.unit6.permission.MAPS_RECEIVE" />
  21. <!-- Enforce that the device has OpenGL v2 installed to use this application -->
  22. <uses-feature
  23. android:glEsVersion="0x00020000"
  24. android:required="true" />
  25. <application
  26. android:allowBackup="true"
  27. android:icon="@drawable/ic_launcher"
  28. android:label="@string/app_name"
  29. android:theme="@style/AppTheme" >
  30. <activity
  31. android:name=".MainActivity"
  32. android:label="@string/app_name" >
  33. <intent-filter>
  34. <action android:name="android.intent.action.MAIN" />
  35. <category android:name="android.intent.category.LAUNCHER" />
  36. </intent-filter>
  37. </activity>
  38. <!-- Metadata tag to inform on the GooglePlay Services version installed -->
  39. <meta-data
  40. android:name="com.google.android.gms.version"
  41. android:value="@integer/google_play_services_version" />
  42. <!-- GoogleMaps API Key obtained through the Google Developer Console -->
  43. <meta-data
  44. android:name="com.google.android.maps.v2.API_KEY"
  45. android:value="AIzaSyBv17vANOoCzA3jNa8yAaVXtPap6tlEmhg" />
  46. </application>
  47. </manifest>