mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
79 lines
No EOL
2.7 KiB
XML
79 lines
No EOL
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<!-- To be able to display contacts list & match calling/called numbers -->
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
|
|
<application
|
|
android:name=".LinphoneApplication"
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:label="@string/app_name"
|
|
android:enableOnBackInvokedCallback="true"
|
|
android:theme="@style/Theme.Linphone"
|
|
tools:targetApi="34">
|
|
|
|
<activity
|
|
android:name=".ui.main.MainActivity"
|
|
android:windowSoftInputMode="adjustResize"
|
|
android:exported="true"
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ui.assistant.AssistantActivity"
|
|
android:launchMode="singleTask"
|
|
android:resizeableActivity="true" />
|
|
|
|
<activity
|
|
android:name=".ui.voip.VoipActivity"
|
|
android:launchMode="singleTask"
|
|
android:turnScreenOn="true"
|
|
android:showWhenLocked="true"
|
|
android:resizeableActivity="true"
|
|
android:supportsPictureInPicture="true" />
|
|
|
|
<!-- Services -->
|
|
|
|
<service android:name="org.linphone.core.tools.firebase.FirebaseMessaging"
|
|
android:enabled="true"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<!-- Receivers -->
|
|
|
|
<receiver android:name=".core.CorePushReceiver"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="org.linphone.core.action.PUSH_RECEIVED"/>
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<!-- Providers -->
|
|
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="@string/file_provider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/provider_paths" />
|
|
</provider>
|
|
|
|
</application>
|
|
|
|
</manifest> |