-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
26 lines (21 loc) · 974 Bytes
/
Copy pathAndroidManifest.xml
File metadata and controls
26 lines (21 loc) · 974 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Declared so the capture notification can show on API 33+; the host
app is responsible for requesting it at runtime (see README). -->
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<application>
<provider
android:name="dev.sharingan.internal.SharinganInitProvider"
android:authorities="${applicationId}.sharingan-init"
android:exported="false" />
<activity
android:name="dev.sharingan.SharinganActivity"
android:exported="false"
android:label="Sharingan"
android:launchMode="singleTop"
android:theme="@style/Theme.Sharingan" />
<receiver
android:name="dev.sharingan.internal.SharinganNotificationReceiver"
android:exported="false" />
</application>
</manifest>