difuse-phone-android/AndroidManifest.xml

120 lines
5.5 KiB
XML
Raw Normal View History

2010-01-18 17:04:25 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.linphone"
2012-07-31 15:39:54 +00:00
android:versionCode="2000" android:versionName="2.0" android:installLocation="auto">
2012-07-27 15:17:09 +00:00
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="16"/>
<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" />
<uses-permission android:name="android.permission.READ_LOGS" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true"/>
2011-03-10 14:52:55 +00:00
<!-- Don't remove the space after android:debuggable: it prevents ndk-build to try including gdbserver and crash gcc -->
2012-07-23 14:30:55 +00:00
<application android:label="@string/app_name" android:debuggable ="true" android:icon="@drawable/logo_linphone_57x57" android:largeHeap="true">
<activity android:name="org.linphone.LinphoneLauncherActivity"
android:label="@string/app_name"
2012-06-21 08:05:25 +00:00
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
2010-06-25 09:23:49 +00:00
<action android:name="android.intent.action.CALL" />
<action android:name="android.intent.action.CALL_PRIVILEGED" />
2010-06-25 09:23:49 +00:00
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="tel" />
<data android:scheme="sip" />
2010-01-18 17:04:25 +00:00
</intent-filter>
2011-03-09 10:17:49 +00:00
<intent-filter>
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
2012-06-21 08:05:25 +00:00
<data android:scheme="sip" />
2011-03-09 10:17:49 +00:00
<data android:scheme="imto" />
</intent-filter>
2011-12-13 11:04:47 +00:00
</activity>
2012-07-31 15:39:54 +00:00
<!-- Behind : Hack to force the portrait on phones and landscape on tablets thanks to a hack in LinphoneLauncherActivity -->
2011-12-13 11:04:47 +00:00
<activity android:name="org.linphone.LinphoneActivity"
2012-06-21 08:05:25 +00:00
android:theme="@android:style/Theme.NoTitleBar"
2012-07-31 15:39:54 +00:00
android:screenOrientation="behind"
2012-07-23 15:09:36 +00:00
android:launchMode="singleTask">
2011-12-13 11:04:47 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:name="org.linphone.IncomingCallActivity"
2012-07-31 15:39:54 +00:00
android:theme="@android:style/Theme.NoTitleBar"
2012-07-23 15:09:36 +00:00
android:launchMode="singleTop"
android:screenOrientation="behind">
2011-09-27 08:15:51 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
2012-06-21 08:05:25 +00:00
<activity android:name="org.linphone.InCallActivity"
android:theme="@android:style/Theme.NoTitleBar"
2012-07-20 15:17:58 +00:00
android:noHistory="true"
2012-07-23 14:30:55 +00:00
android:launchMode="singleInstance">
2012-07-20 14:20:16 +00:00
<intent-filter>
2012-06-21 08:05:25 +00:00
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:name=".AccountPreferencesActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="behind">
2012-06-21 08:05:25 +00:00
</activity>
2012-07-20 15:17:58 +00:00
2012-06-21 08:05:25 +00:00
<activity android:name=".PreferencesActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="behind">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:name=".setup.SetupActivity"
android:theme="@android:style/Theme.NoTitleBar"
android:screenOrientation="behind">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
2012-07-23 14:30:55 +00:00
<service android:name="org.linphone.LinphoneService" android:stopWithTask="false"/>
2012-06-21 08:05:25 +00:00
<receiver android:name="org.linphone.NetworkManager">
<intent-filter><action android:name="android.net.conn.CONNECTIVITY_CHANGE"></action></intent-filter>
</receiver>
2012-06-21 08:05:25 +00:00
<receiver android:name="org.linphone.BootReceiver">
<intent-filter><action android:name="android.intent.action.BOOT_COMPLETED"></action></intent-filter>
</receiver>
2012-06-21 08:05:25 +00:00
<receiver android:name="org.linphone.PhoneStateChangedReceiver">
<intent-filter><action android:name="android.intent.action.PHONE_STATE" /></intent-filter>
</receiver>
</application>
2010-01-18 17:04:25 +00:00
</manifest>