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.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=".ui.ImportBackupActivity"
 50            android:label="@string/restore_backup"
 51            android:launchMode="singleTask"
 52            android:exported="true">
 53            <intent-filter>
 54                <action android:name="android.intent.action.VIEW" />
 55                <category android:name="android.intent.category.DEFAULT" />
 56
 57                <data android:mimeType="application/vnd.conversations.backup" />
 58                <data android:scheme="content" />
 59            </intent-filter>
 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="file" />
 66            </intent-filter>
 67            <intent-filter>
 68                <action android:name="android.intent.action.VIEW" />
 69
 70                <category android:name="android.intent.category.DEFAULT" />
 71                <category android:name="android.intent.category.BROWSABLE" />
 72
 73                <data android:scheme="content" />
 74                <data android:host="*" />
 75                <data android:mimeType="*/*" />
 76                <data android:pathPattern=".*\\.ceb" />
 77                <data android:pathPattern=".*\\..*\\.ceb" />
 78                <data android:pathPattern=".*\\..*\\..*\\.ceb" />
 79                <data android:pathPattern=".*\\..*\\..*\\..*\\.ceb" />
 80                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.ceb" />
 81                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
 82                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
 83            </intent-filter>
 84            <intent-filter>
 85                <action android:name="android.intent.action.VIEW" />
 86
 87                <category android:name="android.intent.category.DEFAULT" />
 88                <category android:name="android.intent.category.BROWSABLE" />
 89
 90                <data android:scheme="file" />
 91                <data android:host="*" />
 92                <data android:mimeType="*/*" />
 93                <data android:pathPattern=".*\\.ceb" />
 94                <data android:pathPattern=".*\\..*\\.ceb" />
 95                <data android:pathPattern=".*\\..*\\..*\\.ceb" />
 96                <data android:pathPattern=".*\\..*\\..*\\..*\\.ceb" />
 97                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.ceb" />
 98                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
 99                <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\.ceb" />
100            </intent-filter>
101        </activity>
102    </application>
103</manifest>