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