blob: 35feb0aea281ab3de98ec6793aca44d7664409fa [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 Lision681d0292013-11-22 12:47:34 -050035 android:versionCode="9"
36 android:versionName="1.2.3.10" >
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" />
Alexandre Lisiona2f32e32013-10-24 14:17:02 -040056
57 <uses-feature
58 android:name="android.hardware.wifi"
59 android:required="false" />
60 <uses-feature
61 android:name="android.hardware.telephony"
62 android:required="false" />
63 <uses-feature
64 android:name="android.hardware.microphone"
65 android:required="true" />
66 <uses-feature
67 android:name="android.hardware.bluetooth"
68 android:required="false" />
69 <uses-feature
70 android:name="android.hardware.screen.portrait"
71 android:required="false" />
72
73
74
75
Emeric Vigier2f625822012-08-06 11:09:52 -040076
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040077 <application
alisioncc7bb422013-06-06 15:31:39 -040078 android:allowBackup="true"
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040079 android:icon="@drawable/ic_launcher"
Alexandre Lisionafd40e42013-10-15 13:48:37 -040080 android:label="@string/app_name" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040081 <activity
Alexandre Lision4ab53972013-11-04 16:59:18 -050082 android:name="org.sflphone.client.HomeActivity"
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040083 android:label="@string/title_activity_sflphone_home"
Emeric Vigier2e5c4e22012-11-07 15:24:54 -050084 android:screenOrientation="portrait"
Alexandre Lisionafd40e42013-10-15 13:48:37 -040085 android:theme="@style/AppThemeWithOverlay"
alisioncc7bb422013-06-06 15:31:39 -040086 android:windowSoftInputMode="adjustPan" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040087 <intent-filter>
88 <action android:name="android.intent.action.MAIN" />
Adrien Béraudffd32412012-08-07 18:39:23 -040089
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040090 <category android:name="android.intent.category.LAUNCHER" />
91 </intent-filter>
92 </activity>
Emeric Vigier2e5c4e22012-11-07 15:24:54 -050093 <activity
Alexandre Lision4ab53972013-11-04 16:59:18 -050094 android:name="org.sflphone.client.SettingsActivity"
Alexandre Lisionafd40e42013-10-15 13:48:37 -040095 android:screenOrientation="portrait"
96 android:theme="@style/AppThemeWithoutOverlay" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040097 <meta-data
98 android:name="android.support.PARENT_ACTIVITY"
Alexandre Lisione7f0c6d2013-10-02 17:34:16 -040099 android:value="org.sflphone.client.SFLPhoneHomeActivity" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400100 </activity>
alision5cfc35d2013-07-11 15:11:39 -0400101 <activity
Alexandre Lision064e1e02013-10-01 16:18:42 -0400102 android:name="org.sflphone.client.AccountWizard"
Alexandre Lisionafd40e42013-10-15 13:48:37 -0400103 android:screenOrientation="portrait"
104 android:theme="@style/AppThemeWithoutOverlay" >
alision5cfc35d2013-07-11 15:11:39 -0400105 <meta-data
106 android:name="android.support.PARENT_ACTIVITY"
Alexandre Lisione7f0c6d2013-10-02 17:34:16 -0400107 android:value="org.sflphone.client.AccountPreferenceActivity" />
alision5cfc35d2013-07-11 15:11:39 -0400108 </activity>
alisioncc7bb422013-06-06 15:31:39 -0400109 <activity
Alexandre Lision227b59c2013-10-03 17:37:57 -0400110 android:name="org.sflphone.client.AccountEditionActivity"
alisioncc7bb422013-06-06 15:31:39 -0400111 android:label="@string/app_name"
Alexandre Lisionafd40e42013-10-15 13:48:37 -0400112 android:screenOrientation="portrait"
113 android:theme="@style/AppThemeWithoutOverlay" />
alisioncc7bb422013-06-06 15:31:39 -0400114 <activity
Alexandre Lision2e52d392013-11-06 15:14:31 -0500115 android:name="org.sflphone.client.DetailHistoryActivity"
116 android:label="@string/app_name"
117 android:screenOrientation="portrait"
118 android:theme="@style/AppThemeWithoutOverlay" />
119 <activity
Alexandre Lision064e1e02013-10-01 16:18:42 -0400120 android:name="org.sflphone.client.CallActivity"
alisioncc7bb422013-06-06 15:31:39 -0400121 android:label="@string/app_name"
Alexandre Lision84208a32013-09-25 13:18:37 -0400122 android:screenOrientation="portrait"
Alexandre Lision0bb52c92013-10-24 10:03:08 -0400123 android:theme="@style/AppThemeWithoutOverlay"
Alexandre Lision84208a32013-09-25 13:18:37 -0400124 android:windowSoftInputMode="adjustPan" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400125 <intent-filter>
alisioncc7bb422013-06-06 15:31:39 -0400126 <action android:name="android.intent.action.CALL_PRIVILEGED" />
Alexandre Lisionafd40e42013-10-15 13:48:37 -0400127
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400128 <category android:name="android.intent.category.DEFAULT" />
Alexandre Lisionafd40e42013-10-15 13:48:37 -0400129
alisioncc7bb422013-06-06 15:31:39 -0400130 <data android:scheme="tel" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400131 </intent-filter>
alisioncc7bb422013-06-06 15:31:39 -0400132 </activity>
133
alision96ff9b72013-07-05 10:59:16 -0400134 <!-- <receiver -->
Alexandre Lision064e1e02013-10-01 16:18:42 -0400135 <!-- android:name="org.sflphone.receivers.ExternalCallReceiver" -->
alision96ff9b72013-07-05 10:59:16 -0400136 <!-- android:exported="true" > -->
137 <!-- <intent-filter> -->
138 <!-- <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> -->
alisioncc7bb422013-06-06 15:31:39 -0400139
140
alision96ff9b72013-07-05 10:59:16 -0400141 <!-- <category android:name="android.intent.category.DEFAULT" /> -->
142 <!-- </intent-filter> -->
143 <!-- </receiver> -->
alisioncc7bb422013-06-06 15:31:39 -0400144
Emeric Vigiereaf2c492012-09-19 14:38:20 -0400145 <service
Alexandre Lision064e1e02013-10-01 16:18:42 -0400146 android:name="org.sflphone.service.SipService"
alisioncc7bb422013-06-06 15:31:39 -0400147 android:exported="false" >
Emeric Vigiereaf2c492012-09-19 14:38:20 -0400148 <intent-filter>
149 <action android:name=".service.SipService" />
150 </intent-filter>
151 </service>
alision96ff9b72013-07-05 10:59:16 -0400152
153 <activity
Alexandre Lision064e1e02013-10-01 16:18:42 -0400154 android:name="org.sflphone.client.ActivityHolder"
Alexandre Lision0bb52c92013-10-24 10:03:08 -0400155 android:label="@string/title_activity_sflphone_home"
156 android:theme="@style/AppThemeWithoutOverlay" >
alision96ff9b72013-07-05 10:59:16 -0400157 </activity>
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400158 </application>
Emeric Vigier2f625822012-08-06 11:09:52 -0400159
Alexandre Lisionafd40e42013-10-15 13:48:37 -0400160</manifest>