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