This repository was archived by the owner on Aug 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathAndroidManifest.xml
52 lines (40 loc) · 2.08 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="io.sentry.sample">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk
tools:overrideLibrary="io.sentry.android"/>
<application
android:name=".MyApplication"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- NOTE: Replace the test DSN below with YOUR OWN DSN to see the events from this app in your Sentry project/dashboard -->
<meta-data android:name="io.sentry.dsn" android:value="https://f7f320d5c3a54709be7b28e0f2ca7081@sentry.io/1808954" />
<!-- how to enable Sentry's debug mode-->
<meta-data android:name="io.sentry.debug" android:value="true" />
<!-- how to set custom debug level-->
<!-- <meta-data android:name="io.sentry.debug.level" android:value="info" />-->
<!-- To change the time used to watch for ANR. By default it's 4 seconds (4000 below as it's in milliseconds) -->
<meta-data android:name="io.sentry.anr.timeout-interval-mills" android:value="1000" />
<!-- Raise ANR events even if the debugger is attached -->
<!-- <meta-data android:name="io.sentry.anr.report-debug" android:value="true" />-->
<!-- how to disable ANR-->
<!-- <meta-data android:name="io.sentry.anr.enable" android:value="false" />-->
<!-- how to disable the auto-init-->
<!-- <meta-data android:name="io.sentry.auto-init" android:value="false" />-->
<!-- how to disable the NDK-->
<!-- <meta-data android:name="io.sentry.ndk.enable" android:value="false" />-->
</application>
</manifest>