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 <activity
24 android:name=".ui.ManageAccountActivity"
25 android:label="@string/title_activity_manage_accounts"
26 android:exported="false"
27 android:launchMode="singleTask" />
28 <activity
29 android:name=".ui.WelcomeActivity"
30 android:label="@string/app_name"
31 android:exported="false"
32 android:launchMode="singleTask" />
33 <activity
34 android:name=".ui.PickServerActivity"
35 android:label="@string/get_jabber_id"
36 android:exported="false"
37 android:launchMode="singleTask" />
38 <activity
39 android:name=".ui.MagicCreateActivity"
40 android:label="@string/get_jabber_id"
41 android:exported="false"
42 android:launchMode="singleTask" />
43 <activity
44 android:name=".ui.EasyOnboardingInviteActivity"
45 android:label="@string/invite_to_app"
46 android:exported="false"
47 android:launchMode="singleTask" />
48 <activity
49 android:name="com.cheogram.android.WebxdcStore"
50 android:label="Widgets"
51 android:exported="false"
52 android:launchMode="standard" />
53 <activity
54 android:name=".ui.ImportBackupActivity"
55 android:label="@string/restore_backup"
56 android:launchMode="singleTask"
57 android:exported="true">
58 <intent-filter>
59 <action android:name="android.intent.action.VIEW" />
60 <category android:name="android.intent.category.DEFAULT" />
61
62 <data android:mimeType="application/vnd.conversations.backup" />
63 <data android:scheme="content" />
64 </intent-filter>
65 <intent-filter>
66 <action android:name="android.intent.action.VIEW" />
67 <category android:name="android.intent.category.DEFAULT" />
68
69 <data android:mimeType="application/vnd.conversations.backup" />
70 <data android:scheme="file" />
71 </intent-filter>
72 <intent-filter>
73 <action android:name="android.intent.action.VIEW" />
74
75 <category android:name="android.intent.category.DEFAULT" />
76 <category android:name="android.intent.category.BROWSABLE" />
77
78 <data android:scheme="content" />
79 <data android:host="*" />
80 <data android:mimeType="*/*" />
81 <data android:pathPattern=".*\\.ceb" />
82 <data android:pathPattern=".*\\..*\\.ceb" />
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 </intent-filter>
89 <intent-filter>
90 <action android:name="android.intent.action.VIEW" />
91
92 <category android:name="android.intent.category.DEFAULT" />
93 <category android:name="android.intent.category.BROWSABLE" />
94
95 <data android:scheme="file" />
96 <data android:host="*" />
97 <data android:mimeType="*/*" />
98 <data android:pathPattern=".*\\.ceb" />
99 <data android:pathPattern=".*\\..*\\.ceb" />
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 </intent-filter>
106 </activity>
107 </application>
108</manifest>