oplogy/app/src/main/AndroidManifest.xml

73 lines
2.7 KiB
XML
Raw Normal View History

2024-05-28 05:14:36 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
2024-06-18 06:14:32 +00:00
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION"
tools:ignore="CoarseFineLocation" />
2024-05-28 05:14:36 +00:00
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Oplogy"
tools:ignore="ExtraText"
2024-06-18 06:14:32 +00:00
tools:targetApi="31">
<activity
android:name=".SettingView"
android:exported="false" />
2024-06-18 06:14:32 +00:00
<activity
android:name=".SetUpActivity"
android:exported="false" />
<!--
TODO: Before you run your application, you need a Google Maps API key.
2024-06-05 05:18:43 +00:00
To get one, follow the directions here:
2024-06-05 05:18:43 +00:00
https://developers.google.com/maps/documentation/android-sdk/get-api-key
2024-06-07 04:12:21 +00:00
Once you have your API key (it starts with "AIza"), define a new property in your
project's local.properties file (e.g. MAPS_API_KEY=Aiza...), and replace the
"YOUR_API_KEY" string in this file with "${MAPS_API_KEY}".
-->
2024-06-05 05:18:43 +00:00
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="AIzaSyBQ1Ak-I2NL5TP4K59ZI0VgzKk6HNZuusw" />
2024-06-05 05:18:43 +00:00
<activity
android:name=".Maps"
android:exported="false"
android:label="@string/title_activity_maps" />
<activity
android:name=".TutorialActivity"
android:exported="false" />
<activity
android:name=".SubmissionActivity"
android:exported="false" />
<activity
android:name=".RootSearchActivity"
android:exported="false" />
<activity
android:name=".CreateUUID"
android:exported="false" />
<activity
android:name=".DialogFragment"
android:exported="false" />
2024-05-28 05:14:36 +00:00
<activity
android:name=".MainActivity"
android:exported="true"
2024-06-18 06:14:32 +00:00
tools:ignore="DuplicateActivity">
2024-05-28 05:14:36 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
2024-06-18 06:14:32 +00:00
</manifest>