Projektarbeit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AndroidManifest.xml 2.2KB

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