blob: 7197f66e3a87a05ef010a122210e189e1d310cc1 [file] [log] [blame]
alisionf76de3b2013-04-16 15:35:22 -04001<!--
2Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
3
4Author: Adrien Beraud <adrien.beraud@gmail.com>
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 3 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20Additional permission under GNU GPL version 3 section 7:
21
22If you modify this program, or any covered work, by linking or
23combining it with the OpenSSL project's OpenSSL library (or a
24modified version of that library), containing parts covered by the
25terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
26grants you additional permission to convey the resulting work.
27Corresponding Source for a non-source form of such a combination
28shall include the source code for the parts of OpenSSL used as well
29as that of the covered work.
30-->
Emeric Vigier2f625822012-08-06 11:09:52 -040031<manifest xmlns:android="http://schemas.android.com/apk/res/android"
alisionf76de3b2013-04-16 15:35:22 -040032 package="com.savoirfairelinux.sflphone"
Emeric Vigier2f625822012-08-06 11:09:52 -040033 android:versionCode="1"
alisionf76de3b2013-04-16 15:35:22 -040034 android:versionName="1.0" >
Emeric Vigier2f625822012-08-06 11:09:52 -040035
alisionf76de3b2013-04-16 15:35:22 -040036 <uses-sdk
alision9f7a6ec2013-05-24 16:26:26 -040037 android:minSdkVersion="14"
alisione2a38e12013-04-25 14:20:20 -040038 android:targetSdkVersion="17" />
Emeric Vigier2f625822012-08-06 11:09:52 -040039
alisionf76de3b2013-04-16 15:35:22 -040040 <uses-permission android:name="android.permission.INTERNET" />
41 <uses-permission android:name="android.permission.READ_CONTACTS" />
42 <uses-permission android:name="android.permission.READ_PROFILE" />
43 <uses-permission android:name="android.permission.CALL_PHONE" />
Adrien Béraudea28cd52013-04-26 17:40:46 +100044 <!-- <uses-permission android:name="android.permission.CALL_PRIVILEGED" /> -->
alisionf76de3b2013-04-16 15:35:22 -040045 <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
46 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
47 <uses-permission android:name="android.permission.RECORD_AUDIO" />
alision17052d42013-04-22 10:39:38 -040048 <uses-permission android:name="android.permission.VIBRATE" />
alisione2a38e12013-04-25 14:20:20 -040049 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
50 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
alisionf76de3b2013-04-16 15:35:22 -040051
52 <application
53 android:name=".client.SFLphoneApplication"
54 android:debuggable="true"
Emeric Vigier2f625822012-08-06 11:09:52 -040055 android:icon="@drawable/ic_launcher"
alisionf76de3b2013-04-16 15:35:22 -040056 android:label="@string/app_name"
Adrien Béraudea28cd52013-04-26 17:40:46 +100057 android:theme="@style/AppTheme"
58 android:allowBackup="true" >
alisionf76de3b2013-04-16 15:35:22 -040059 <activity
60 android:name=".client.SFLPhoneHomeActivity"
61 android:label="@string/title_activity_sflphone_home"
62 android:screenOrientation="portrait"
alision9f7a6ec2013-05-24 16:26:26 -040063 android:windowSoftInputMode="adjustPan"
alisionf76de3b2013-04-16 15:35:22 -040064 android:theme="@style/AppTheme" >
65 <intent-filter>
66 <action android:name="android.intent.action.MAIN" />
Emeric Vigier2f625822012-08-06 11:09:52 -040067
alisionf76de3b2013-04-16 15:35:22 -040068 <category android:name="android.intent.category.LAUNCHER" />
69 </intent-filter>
70 </activity>
alision9f7a6ec2013-05-24 16:26:26 -040071
alisionf76de3b2013-04-16 15:35:22 -040072 <activity
73 android:name=".client.SFLPhonePreferenceActivity"
74 android:screenOrientation="portrait" >
75 <meta-data
76 android:name="android.support.PARENT_ACTIVITY"
77 android:value="com.savoirfairelinux.sflphone.client.SFLPhoneHome" />
78 </activity>
alisionf76de3b2013-04-16 15:35:22 -040079 <activity android:name=".client.AccountPreferenceActivity"
80 android:label="@string/app_name"
81 android:screenOrientation="portrait"/>
82 <activity android:name=".client.CallActivity"
83 android:label="@string/app_name"
84 android:screenOrientation="portrait"/>
85 <receiver
86 android:name=".client.receiver.NewOutgoingCallReceiver"
87 android:exported="true" >
88 <intent-filter>
89 <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
90
91 <category android:name="android.intent.category.DEFAULT" />
92 </intent-filter>
93 </receiver>
94 <service
Adrien Béraudea28cd52013-04-26 17:40:46 +100095 android:name=".service.SipService"
96 android:exported="false">
alisionf76de3b2013-04-16 15:35:22 -040097 <intent-filter>
98 <action android:name=".service.SipService" />
99 </intent-filter>
100 </service>
Emeric Vigier2f625822012-08-06 11:09:52 -0400101 </application>
102
103</manifest>