MeteoriteDB

Log | Files | Refs | README

AndroidManifest.xml (2158B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     xmlns:tools="http://schemas.android.com/tools">
      4 
      5     <uses-permission android:name="android.permission.INTERNET" />
      6     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
      7     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
      8     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
      9 
     10     <permission
     11         android:name="com.anchit.locationapi.maps.permission.MAPS_RECEIVE"
     12         android:protectionLevel="signature" />
     13 
     14     <application
     15         android:allowBackup="true"
     16         android:dataExtractionRules="@xml/data_extraction_rules"
     17         android:fullBackupContent="@xml/backup_rules"
     18         android:icon="@mipmap/ic_launcher"
     19         android:label="@string/app_name"
     20         android:supportsRtl="true"
     21         android:theme="@style/Theme.Projectassignment"
     22         tools:targetApi="31">
     23         <activity
     24             android:name=".AboutActivity"
     25             android:exported="false" />
     26         <!--
     27              TODO: Before you run your application, you need a Google Maps API key.
     28 
     29              To get one, follow the directions here:
     30 
     31                 https://developers.google.com/maps/documentation/android-sdk/get-api-key
     32 
     33              Once you have your API key (it starts with "AIza"), define a new property in your
     34              project's local.properties file (e.g. MAPS_API_KEY=Aiza...), and replace the
     35              "YOUR_API_KEY" string in this file with "${MAPS_API_KEY}".
     36         -->
     37         <meta-data
     38             android:name="com.google.android.geo.API_KEY"
     39             android:value="" />
     40 
     41         <activity
     42             android:name=".MeteoriteActivity"
     43             android:exported="false" />
     44         <activity
     45             android:name=".MainActivity"
     46             android:exported="true">
     47             <intent-filter>
     48                 <action android:name="android.intent.action.MAIN" />
     49 
     50                 <category android:name="android.intent.category.LAUNCHER" />
     51             </intent-filter>
     52         </activity>
     53     </application>
     54 
     55 </manifest>