-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
47 lines (38 loc) · 1.76 KB
/
AndroidManifest.xml
File metadata and controls
47 lines (38 loc) · 1.76 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.urbanairship.reactnative">
<application>
<meta-data
android:name="com.urbanairship.autopilot"
android:value="com.urbanairship.reactnative.ReactAutopilot" />
<service
android:name="com.urbanairship.reactnative.AirshipHeadlessEventService"
android:exported="false"
android:stopWithTask="true" />
<activity
android:name="com.urbanairship.android.framework.proxy.CustomMessageCenterActivity"
android:label="@string/ua_message_center_title"
android:theme="@style/Theme.AppCompat.DayNight"
android:launchMode="singleTask"
android:exported="false">
<intent-filter>
<action android:name="com.urbanairship.VIEW_RICH_PUSH_INBOX" />
<data android:scheme="message" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="com.urbanairship.VIEW_RICH_PUSH_INBOX" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.urbanairship.android.framework.proxy.CustomMessageActivity"
android:theme="@style/Theme.AppCompat.DayNight"
android:exported="false">
<intent-filter>
<action android:name="com.urbanairship.VIEW_RICH_PUSH_MESSAGE" />
<data android:scheme="message" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>