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
 11            android:name="com.cheogram.android.DownloadDefaultStickers"
 12            android:foregroundServiceType="dataSync" />
 13        <service android:name="com.cheogram.android.ConnectionService"
 14            android:label="Cheogram"
 15            android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE"
 16            android:exported="true">
 17            <intent-filter>
 18                <action android:name="android.telecom.ConnectionService" />
 19            </intent-filter>
 20        </service>
 21
 22        <activity
 23            android:name=".ui.ManageAccountActivity"
 24            android:label="@string/title_activity_manage_accounts"
 25            android:exported="false"
 26            android:launchMode="singleTask" />
 27        <activity
 28            android:name=".ui.WelcomeActivity"
 29            android:label="@string/app_name"
 30            android:exported="false"
 31            android:launchMode="singleTask" />
 32        <activity
 33            android:name=".ui.PickServerActivity"
 34            android:label="@string/get_jabber_id"
 35            android:exported="false"
 36            android:launchMode="singleTask" />
 37        <activity
 38            android:name=".ui.MagicCreateActivity"
 39            android:label="@string/get_jabber_id"
 40            android:exported="false"
 41            android:launchMode="singleTask" />
 42        <activity
 43            android:name=".ui.EasyOnboardingInviteActivity"
 44            android:label="@string/invite_to_app"
 45            android:exported="false"
 46            android:launchMode="singleTask" />
 47        <activity
 48            android:name=".ui.ImportBackupActivity"
 49            android:label="@string/restore_backup"
 50            android:launchMode="singleTask"
 51            android:exported="true">
 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="content" />
 58            </intent-filter>
 59            <intent-filter>
 60                <action android:name="android.intent.action.VIEW" />
 61                <category android:name="android.intent.category.DEFAULT" />
 62
 63                <data android:mimeType="application/vnd.conversations.backup" />
 64                <data android:scheme="file" />
 65            </intent-filter>
 66            <intent-filter>
 67                <action android:name="android.intent.action.VIEW" />
 68
 69                <category android:name="android.intent.category.DEFAULT" />
 70                <category android:name="android.intent.category.BROWSABLE" />
 71
 72                <data android:scheme="content" />
 73                <data android:host="*" />
 74                <data android:mimeType="*/*" />
 75                <data android:pathPattern=".*\\.ceb" />
 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            </intent-filter>
 83            <intent-filter>
 84                <action android:name="android.intent.action.VIEW" />
 85
 86                <category android:name="android.intent.category.DEFAULT" />
 87                <category android:name="android.intent.category.BROWSABLE" />
 88
 89                <data android:scheme="file" />
 90                <data android:host="*" />
 91                <data android:mimeType="*/*" />
 92                <data android:pathPattern=".*\\.ceb" />
 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            </intent-filter>
100        </activity>
101    </application>
102</manifest>