-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
130 lines (121 loc) · 5.68 KB
/
AndroidManifest.xml
File metadata and controls
130 lines (121 loc) · 5.68 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="co.edgesecure.app">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature android:name="android.hardware.bluetooth" android:required="false" />
<uses-feature android:name="android.hardware.bluetooth_le" android:required="false" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
<uses-feature android:name="android.hardware.camera.flash" android:required="false" />
<uses-feature android:name="android.hardware.fingerprint" android:required="false" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<queries>
<package android:name="com.bankid.bus" />
<intent>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" />
</intent>
</queries>
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:usesCleartextTraffic="true"
android:theme="@style/AppTheme">
<meta-data android:name="io.sentry.auto-init" android:value="false" />
<meta-data android:name="com.google.firebase.messaging.default_notification_icon"
android:resource="@mipmap/edge_logo_hollow" />
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:exported="true"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize"
android:theme="@style/BootTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter android:label="Edge Deep Links" android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" />
<data android:host="deep.edge.app" />
<data android:host="dl.edge.app" />
<data android:host="return.edge.app" />
</intent-filter>
<intent-filter android:label="Edge Deep Links">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="edge" />
<data android:scheme="airbitz" />
</intent-filter>
<intent-filter android:label="Address Requests">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="edge-ret" />
<data android:scheme="airbitz-ret" />
<data android:scheme="reqaddr" />
</intent-filter>
<intent-filter android:label="Payment Links">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="bitcoin" />
<data android:scheme="bitcoincash" />
<data android:scheme="ethereum" />
<data android:scheme="dash" />
<data android:scheme="litecoin" />
</intent-filter>
<intent-filter android:label="Wallet Connect">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="wc" />
</intent-filter>
<meta-data
android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
</activity>
<!-- To disable the activity lifecycle breadcrumbs integration -->
<meta-data
android:name="io.sentry.breadcrumbs.activity-lifecycle"
android:value="false"
/>
<!-- To disable the app lifecycle breadcrumbs integration -->
<meta-data
android:name="io.sentry.breadcrumbs.app-lifecycle"
android:value="false"
/>
<!-- To disable the system events breadcrumbs integration -->
<meta-data
android:name="io.sentry.breadcrumbs.system-events"
android:value="false"
/>
<!-- To disable the app components breadcrumbs integration -->
<meta-data
android:name="io.sentry.breadcrumbs.app-components"
android:value="false"
/>
<!-- To disable the user interaction breadcrumbs integration -->
<meta-data
android:name="io.sentry.breadcrumbs.user-interaction"
android:value="false"
/>
</application>
</manifest>