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.BIND_TELECOM_CONNECTION_SERVICE" />
 6
 7    <application tools:ignore="GoogleAppIndexingWarning">
 8        <!-- INSERT -->
 9
10        <service
11            android:name="com.cheogram.android.DownloadDefaultStickers"
12            android:foregroundServiceType="dataSync" />
13        <service android:name="com.cheogram.android.ConnectionService"
14            android:label="Cheogram"
15            android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE"
16            android:exported="true">
17            <intent-filter>
18                <action android:name="android.telecom.ConnectionService" />
19            </intent-filter>
20        </service>
21
22        <activity
23            android:name=".ui.ManageAccountActivity"
24            android:label="@string/title_activity_manage_accounts"
25            android:launchMode="singleTask" />
26        <activity
27            android:name=".ui.WelcomeActivity"
28            android:label="@string/app_name"
29            android:launchMode="singleTask" />
30        <activity
31            android:name=".ui.PickServerActivity"
32            android:label="@string/get_jabber_id"
33            android:launchMode="singleTask" />
34        <activity
35            android:name=".ui.MagicCreateActivity"
36            android:label="@string/get_jabber_id"
37            android:launchMode="singleTask" />
38        <activity
39            android:name=".ui.EasyOnboardingInviteActivity"
40            android:label="@string/invite_to_app"
41            android:launchMode="singleTask" />
42        <activity
43            android:name=".ui.ImportBackupActivity"
44            android:label="@string/restore_backup"
45            android:launchMode="singleTask"
46            android:exported="true">
47            <intent-filter>
48                <action android:name="android.intent.action.VIEW" />
49                <category android:name="android.intent.category.DEFAULT" />
50
51                <data android:mimeType="application/vnd.conversations.backup" />
52                <data android:scheme="content" />
53            </intent-filter>
54            <intent-filter>
55                <action android:name="android.intent.action.VIEW" />
56                <category android:name="android.intent.category.DEFAULT" />
57
58                <data android:mimeType="application/vnd.conversations.backup" />
59                <data android:scheme="file" />
60            </intent-filter>
61            <intent-filter>
62                <action android:name="android.intent.action.VIEW" />
63
64                <category android:name="android.intent.category.DEFAULT" />
65                <category android:name="android.intent.category.BROWSABLE" />
66
67                <data android:scheme="content" />
68                <data android:host="*" />
69                <data android:mimeType="*/*" />
70                <data android:pathPattern=".*\\.ceb" />
71                <data android:pathPattern=".*\\..*\\.ceb" />
72                <data android:pathPattern=".*\\..*\\..*\\.ceb" />
73                <data android:pathPattern=".*\\..*\\..*\\..*\\.ceb" />
74                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.ceb" />
75                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
76                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
77            </intent-filter>
78            <intent-filter>
79                <action android:name="android.intent.action.VIEW" />
80
81                <category android:name="android.intent.category.DEFAULT" />
82                <category android:name="android.intent.category.BROWSABLE" />
83
84                <data android:scheme="file" />
85                <data android:host="*" />
86                <data android:mimeType="*/*" />
87                <data android:pathPattern=".*\\.ceb" />
88                <data android:pathPattern=".*\\..*\\.ceb" />
89                <data android:pathPattern=".*\\..*\\..*\\.ceb" />
90                <data android:pathPattern=".*\\..*\\..*\\..*\\.ceb" />
91                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.ceb" />
92                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
93                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
94            </intent-filter>
95        </activity>
96    </application>
97</manifest>