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