/ app / src / main / AndroidManifest.xml
AndroidManifest.xml
 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  
 7      <application
 8          android:allowBackup="true"
 9          android:dataExtractionRules="@xml/data_extraction_rules"
10          android:fullBackupContent="@xml/backup_rules"
11          android:icon="@mipmap/ic_launcher"
12          android:label="@string/app_name"
13          android:roundIcon="@mipmap/ic_launcher_round"
14          android:supportsRtl="true"
15          android:theme="@style/Theme.Maps"
16          tools:targetApi="31">
17          <activity
18              android:name=".MainActivity"
19              android:exported="true"
20              android:label="@string/app_name"
21              android:theme="@style/Theme.Maps">
22              <intent-filter>
23                  <action android:name="android.intent.action.MAIN" />
24                  <category android:name="android.intent.category.LAUNCHER" />
25              </intent-filter>
26          </activity>
27          <meta-data android:name="io.sentry.dsn" android:value="https://af0c08f9f5024146b729d57cfc8cd558@app.glitchtip.com/6321" />
28      </application>
29  
30  </manifest>