Advertisement
Guest User

AndroidManifest.xml

a guest
Sep 5th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 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.aaronminijob.minijob">
  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.  
  12. <application
  13. android:allowBackup="true"
  14. android:icon="@mipmap/ic_launcher"
  15. android:label="@string/app_name"
  16. android:supportsRtl="true"
  17. android:largeHeap="true"
  18. android:theme="@style/AppTheme">
  19. <activity
  20. android:name=".MainActivity"
  21. android:label="@string/app_name"
  22. android:theme="@style/AppTheme.NoActionBar">
  23. <intent-filter>
  24. <action android:name="android.intent.action.MAIN" />
  25.  
  26. <category android:name="android.intent.category.LAUNCHER" />
  27. </intent-filter>
  28. </activity>
  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" android:label="@string/title_activity_maps"></activity>
  35. </application>
  36.  
  37.  
  38. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement