mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
Conflicts: AndroidManifest.xml res/drawable-xhdpi/topbar_avatar.png res/drawable/assistant_button.xml res/layout-land/call.xml res/layout-land/call_incoming.xml res/layout-land/call_outgoing.xml res/layout-land/chatlist_cell.xml res/layout-land/main.xml res/layout/about.xml res/layout/assistant_account_creation.xml res/layout/assistant_linphone_login.xml res/layout/assistant_remote_provisioning_login.xml res/layout/assistant_topbar.xml res/layout/call.xml res/layout/call_incoming.xml res/layout/call_outgoing.xml res/layout/chat.xml res/layout/chatlist.xml res/layout/chatlist_cell.xml res/layout/conference_paused_row.xml res/layout/contact.xml res/layout/contact_edit.xml res/layout/contacts_list.xml res/layout/dialog.xml res/layout/edit_list.xml res/layout/history.xml res/layout/history_detail.xml res/layout/main.xml res/layout/side_menu_account_cell.xml res/mipmap-hdpi/ic_launcher.png res/mipmap-mdpi/ic_launcher.png res/mipmap-xhdpi/ic_launcher.png res/mipmap-xxhdpi/ic_launcher.png res/mipmap-xxxhdpi/ic_launcher.png res/values-ar/strings.xml res/values-de/strings.xml res/values-es/strings.xml res/values-fr/custom.xml res/values-fr/strings.xml res/values-he/strings.xml res/values-ja/strings.xml res/values-nl/strings.xml res/values-ru/strings.xml res/values-tr/strings.xml res/values/custom.xml res/values/non_localizable_custom.xml res/values/strings.xml res/values/styles.xml src/org/linphone/CallActivity.java src/org/linphone/ChatFragment.java src/org/linphone/ChatListFragment.java src/org/linphone/ContactDetailsFragment.java src/org/linphone/ContactsListFragment.java src/org/linphone/HistoryDetailFragment.java src/org/linphone/HistoryListFragment.java src/org/linphone/LinphoneActivity.java src/org/linphone/LinphoneManager.java src/org/linphone/LinphoneService.java src/org/linphone/assistant/RemoteProvisioningActivity.java
227 lines
10 KiB
XML
227 lines
10 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.linphone"
|
|
|
|
android:versionCode="1000" android:installLocation="auto">
|
|
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/>
|
|
|
|
<!-- Permissions for Push Notification -->
|
|
<permission android:name="com.orangecyberdefense.securephone.permission.C2D_MESSAGE" android:protectionLevel="signature" /> <!-- Change package ! -->
|
|
<uses-permission android:name="com.orangecyberdefense.securephone.permission.C2D_MESSAGE" /> <!-- Change package ! -->
|
|
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
|
<uses-permission android:name="android.permission.READ_CONTACTS"/>
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/>
|
|
<uses-permission android:name="android.permission.CALL_PHONE"/>
|
|
<!-- Needed to allow Linphone to install on tablets, since android.permission.CALL_PHONE implies android.hardware.telephony is required -->
|
|
<uses-feature android:name="android.hardware.telephony" android:required="false" />
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<!-- Needed to allow Linphone to install on tablets, since android.permission.CAMERA implies android.hardware.camera and android.hardware.camera.autofocus are required -->
|
|
<uses-feature android:name="android.hardware.camera" android:required="false" />
|
|
<uses-permission android:name="android.permission.READ_LOGS" />
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
<!-- Needed to store received images if the user wants to -->
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<!-- Needed to use our own Contact editor -->
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS"/>
|
|
<!-- Needed to route the audio to the bluetooth headset if available -->
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
|
|
<!-- Needed to pre fill the wizard email field (only if enabled in custom settings) -->
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
|
|
|
|
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true"/>
|
|
|
|
<application android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:largeHeap="true" android:allowBackup="true">
|
|
|
|
<activity android:name="org.linphone.LinphoneLauncherActivity"
|
|
android:label="@string/app_name"
|
|
android:windowSoftInputMode="adjustPan|stateHidden"
|
|
android:exported="true"
|
|
android:theme="@style/NoTitle">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.CALL" />
|
|
<action android:name="android.intent.action.CALL_PRIVILEGED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:scheme="tel" />
|
|
<data android:scheme="sip" /> />
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SENDTO" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:scheme="sip" />
|
|
<data android:scheme="imto" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<data android:mimeType="vnd.android.cursor.item/org.linphone.profile" /> <!-- Change package ! -->
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name="org.linphone.LinphoneActivity"
|
|
android:theme="@style/NoTitle"
|
|
android:screenOrientation="behind"
|
|
android:launchMode="singleTask">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".CallIncomingActivity"
|
|
android:theme="@style/NoTitle"
|
|
android:noHistory="true"
|
|
android:launchMode="singleTop"
|
|
android:screenOrientation="behind">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".CallOutgoingActivity"
|
|
android:theme="@style/NoTitle"
|
|
android:noHistory="true"
|
|
android:launchMode="singleTop"
|
|
android:screenOrientation="behind">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".CallActivity"
|
|
android:theme="@style/FullScreen"
|
|
android:noHistory="true"
|
|
android:launchMode="singleTop">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
|
|
<!--<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<data android:mimeType="audio/*" />
|
|
<data android:mimeType="video/*" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>-->
|
|
</activity>
|
|
|
|
<activity android:name=".assistant.AssistantActivity"
|
|
android:theme="@style/NoTitle"
|
|
android:screenOrientation="behind">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="org.linphone.assistant.RemoteProvisioningLoginActivity"
|
|
android:theme="@style/NoTitle"
|
|
android:screenOrientation="nosensor">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="org.linphone.assistant.RemoteProvisioningActivity"
|
|
android:theme="@style/NoTitle"
|
|
android:screenOrientation="nosensor">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<data android:scheme="linphone-config" /> <!-- Change if needed -->
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service android:name="org.linphone.LinphoneService"
|
|
android:label="@string/service_name"
|
|
android:stopWithTask="false"/>
|
|
|
|
<receiver android:name="org.linphone.NetworkManager">
|
|
<intent-filter><action android:name="android.net.conn.CONNECTIVITY_CHANGE"></action></intent-filter>
|
|
</receiver>
|
|
|
|
<receiver android:name="org.linphone.BluetoothManager" android:enabled="false">
|
|
</receiver>
|
|
|
|
<receiver android:name="org.linphone.BootReceiver">
|
|
<intent-filter><action android:name="android.intent.action.BOOT_COMPLETED"></action></intent-filter>
|
|
</receiver>
|
|
|
|
<receiver android:name="org.linphone.PhoneStateChangedReceiver">
|
|
<intent-filter><action android:name="android.intent.action.PHONE_STATE" /></intent-filter>
|
|
</receiver>
|
|
|
|
<receiver android:name="KeepAliveHandler" >
|
|
</receiver>
|
|
|
|
<!-- Needed for push notification -->
|
|
<receiver android:name="org.linphone.gcm.GCMReceiver" android:permission="com.google.android.c2dm.permission.SEND" >
|
|
<intent-filter>
|
|
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
|
|
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
|
|
<category android:name="com.orangecyberdefense.securephone" /> <!-- Change package ! -->
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<service android:name="org.linphone.gcm.GCMService" />
|
|
|
|
<activity android:name="org.linphone.tutorials.TutorialLauncherActivity"
|
|
android:theme="@style/NoTitle">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="org.linphone.tutorials.TutorialBuddyStatusActivity"
|
|
android:theme="@style/NoTitle">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="org.linphone.tutorials.TutorialChatRoomActivity"
|
|
android:theme="@style/NoTitle">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="org.linphone.tutorials.TutorialHelloWorldActivity"
|
|
android:theme="@style/NoTitle">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="org.linphone.tutorials.TutorialRegistrationActivity"
|
|
android:theme="@style/NoTitle">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|