blob: 13b16304e821bd8251b8a3c65ff8dc2be7e081bc [file] [log] [blame]
alision96ff9b72013-07-05 10:59:16 -04001<?xml version="1.0" encoding="utf-8"?>
Emeric Vigier0d6b7d92012-09-14 17:28:10 -04002<!--
alision96ff9b72013-07-05 10:59:16 -04003Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
Adrien Béraudffd32412012-08-07 18:39:23 -04004
alision96ff9b72013-07-05 10:59:16 -04005Author: Alexandre Lision <alexandre.lision@gmail.com>
6 Adrien Beraud <adrien.beraud@gmail.com>
Adrien Béraudffd32412012-08-07 18:39:23 -04007
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 3 of the License, or
11(at your option) any later version.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22Additional permission under GNU GPL version 3 section 7:
23
24If you modify this program, or any covered work, by linking or
25combining it with the OpenSSL project's OpenSSL library (or a
26modified version of that library), containing parts covered by the
27terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
28grants you additional permission to convey the resulting work.
29Corresponding Source for a non-source form of such a combination
30shall include the source code for the parts of OpenSSL used as well
31as that of the covered work.
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040032-->
Emeric Vigier2f625822012-08-06 11:09:52 -040033<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Alexandre Lision064e1e02013-10-01 16:18:42 -040034 package="org.sflphone"
Alexandre Lision08d782a2013-10-18 09:36:35 -040035 android:versionCode="5"
36 android:versionName="1.2.3.02" >
Emeric Vigier2f625822012-08-06 11:09:52 -040037
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040038 <uses-sdk
alision9f7a6ec2013-05-24 16:26:26 -040039 android:minSdkVersion="14"
Alexandre Lisionb5420e92013-09-23 14:16:32 -040040 android:targetSdkVersion="18" />
Emeric Vigier2f625822012-08-06 11:09:52 -040041
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040042 <uses-permission android:name="android.permission.INTERNET" />
43 <uses-permission android:name="android.permission.READ_CONTACTS" />
Alexandre Savard4d88fee2012-09-17 15:11:38 -040044 <uses-permission android:name="android.permission.READ_PROFILE" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040045 <uses-permission android:name="android.permission.CALL_PHONE" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040046 <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
47 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
48 <uses-permission android:name="android.permission.RECORD_AUDIO" />
alision17052d42013-04-22 10:39:38 -040049 <uses-permission android:name="android.permission.VIBRATE" />
Alexandre Lision1a6289b2013-07-19 09:26:47 -040050 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
alisione2a38e12013-04-25 14:20:20 -040051 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Alexandre Lision68855472013-10-10 16:20:46 -040052 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
alisione2a38e12013-04-25 14:20:20 -040053 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Alexandre Lisionb8add812013-10-24 11:42:42 -040054 <uses-permission android:name="android.permission.WAKE_LOCK" />
55 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Emeric Vigier2f625822012-08-06 11:09:52 -040056
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040057 <application
Alexandre Lision064e1e02013-10-01 16:18:42 -040058 android:name="org.sflphone.client.SFLphoneApplication"
alisioncc7bb422013-06-06 15:31:39 -040059 android:allowBackup="true"
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040060 android:icon="@drawable/ic_launcher"
Alexandre Lisionafd40e42013-10-15 13:48:37 -040061 android:label="@string/app_name" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040062 <activity
Alexandre Lision064e1e02013-10-01 16:18:42 -040063 android:name="org.sflphone.client.SFLPhoneHomeActivity"
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040064 android:label="@string/title_activity_sflphone_home"
Emeric Vigier2e5c4e22012-11-07 15:24:54 -050065 android:screenOrientation="portrait"
Alexandre Lisionafd40e42013-10-15 13:48:37 -040066 android:theme="@style/AppThemeWithOverlay"
alisioncc7bb422013-06-06 15:31:39 -040067 android:windowSoftInputMode="adjustPan" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040068 <intent-filter>
69 <action android:name="android.intent.action.MAIN" />
Adrien Béraudffd32412012-08-07 18:39:23 -040070
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040071 <category android:name="android.intent.category.LAUNCHER" />
72 </intent-filter>
73 </activity>
Emeric Vigier2e5c4e22012-11-07 15:24:54 -050074 <activity
Alexandre Lision064e1e02013-10-01 16:18:42 -040075 android:name="org.sflphone.client.SFLPhonePreferenceActivity"
Alexandre Lisionafd40e42013-10-15 13:48:37 -040076 android:screenOrientation="portrait"
77 android:theme="@style/AppThemeWithoutOverlay" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040078 <meta-data
79 android:name="android.support.PARENT_ACTIVITY"
Alexandre Lisione7f0c6d2013-10-02 17:34:16 -040080 android:value="org.sflphone.client.SFLPhoneHomeActivity" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040081 </activity>
alision5cfc35d2013-07-11 15:11:39 -040082 <activity
Alexandre Lision064e1e02013-10-01 16:18:42 -040083 android:name="org.sflphone.client.AccountWizard"
Alexandre Lisionafd40e42013-10-15 13:48:37 -040084 android:screenOrientation="portrait"
85 android:theme="@style/AppThemeWithoutOverlay" >
alision5cfc35d2013-07-11 15:11:39 -040086 <meta-data
87 android:name="android.support.PARENT_ACTIVITY"
Alexandre Lisione7f0c6d2013-10-02 17:34:16 -040088 android:value="org.sflphone.client.AccountPreferenceActivity" />
alision5cfc35d2013-07-11 15:11:39 -040089 </activity>
alisioncc7bb422013-06-06 15:31:39 -040090 <activity
Alexandre Lision227b59c2013-10-03 17:37:57 -040091 android:name="org.sflphone.client.AccountEditionActivity"
alisioncc7bb422013-06-06 15:31:39 -040092 android:label="@string/app_name"
Alexandre Lisionafd40e42013-10-15 13:48:37 -040093 android:screenOrientation="portrait"
94 android:theme="@style/AppThemeWithoutOverlay" />
alisioncc7bb422013-06-06 15:31:39 -040095 <activity
Alexandre Lision064e1e02013-10-01 16:18:42 -040096 android:name="org.sflphone.client.CallActivity"
alisioncc7bb422013-06-06 15:31:39 -040097 android:label="@string/app_name"
Alexandre Lision84208a32013-09-25 13:18:37 -040098 android:screenOrientation="portrait"
Alexandre Lision0bb52c92013-10-24 10:03:08 -040099 android:theme="@style/AppThemeWithoutOverlay"
Alexandre Lision84208a32013-09-25 13:18:37 -0400100 android:windowSoftInputMode="adjustPan" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400101 <intent-filter>
alisioncc7bb422013-06-06 15:31:39 -0400102 <action android:name="android.intent.action.CALL_PRIVILEGED" />
Alexandre Lisionafd40e42013-10-15 13:48:37 -0400103
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400104 <category android:name="android.intent.category.DEFAULT" />
Alexandre Lisionafd40e42013-10-15 13:48:37 -0400105
alisioncc7bb422013-06-06 15:31:39 -0400106 <data android:scheme="tel" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400107 </intent-filter>
alisioncc7bb422013-06-06 15:31:39 -0400108 </activity>
109
alision96ff9b72013-07-05 10:59:16 -0400110 <!-- <receiver -->
Alexandre Lision064e1e02013-10-01 16:18:42 -0400111 <!-- android:name="org.sflphone.receivers.ExternalCallReceiver" -->
alision96ff9b72013-07-05 10:59:16 -0400112 <!-- android:exported="true" > -->
113 <!-- <intent-filter> -->
114 <!-- <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> -->
alisioncc7bb422013-06-06 15:31:39 -0400115
116
alision96ff9b72013-07-05 10:59:16 -0400117 <!-- <category android:name="android.intent.category.DEFAULT" /> -->
118 <!-- </intent-filter> -->
119 <!-- </receiver> -->
alisioncc7bb422013-06-06 15:31:39 -0400120
Emeric Vigiereaf2c492012-09-19 14:38:20 -0400121 <service
Alexandre Lision064e1e02013-10-01 16:18:42 -0400122 android:name="org.sflphone.service.SipService"
alisioncc7bb422013-06-06 15:31:39 -0400123 android:exported="false" >
Emeric Vigiereaf2c492012-09-19 14:38:20 -0400124 <intent-filter>
125 <action android:name=".service.SipService" />
126 </intent-filter>
127 </service>
alision96ff9b72013-07-05 10:59:16 -0400128
129 <activity
Alexandre Lision064e1e02013-10-01 16:18:42 -0400130 android:name="org.sflphone.client.ActivityHolder"
Alexandre Lision0bb52c92013-10-24 10:03:08 -0400131 android:label="@string/title_activity_sflphone_home"
132 android:theme="@style/AppThemeWithoutOverlay" >
alision96ff9b72013-07-05 10:59:16 -0400133 </activity>
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400134 </application>
Emeric Vigier2f625822012-08-06 11:09:52 -0400135
Alexandre Lisionafd40e42013-10-15 13:48:37 -0400136</manifest>