blob: 67fe68ba7322738d7595228d85e7e02c7f35e1a4 [file] [log] [blame]
Emeric Vigier0d6b7d92012-09-14 17:28:10 -04001<!--
Adrien Béraudffd32412012-08-07 18:39:23 -04002Copyright (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.
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040030-->
Emeric Vigier2f625822012-08-06 11:09:52 -040031<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Adrien Béraudffd32412012-08-07 18:39:23 -040032 package="com.savoirfairelinux.sflphone"
Emeric Vigier2f625822012-08-06 11:09:52 -040033 android:versionCode="1"
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040034 android:versionName="1.0" >
Emeric Vigier2f625822012-08-06 11:09:52 -040035
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040036 <uses-sdk
37 android:minSdkVersion="13"
38 android:targetSdkVersion="15" />
Emeric Vigier2f625822012-08-06 11:09:52 -040039
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040040 <uses-permission android:name="android.permission.INTERNET" />
41 <uses-permission android:name="android.permission.READ_CONTACTS" />
Alexandre Savard4d88fee2012-09-17 15:11:38 -040042 <uses-permission android:name="android.permission.READ_PROFILE" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040043 <uses-permission android:name="android.permission.CALL_PHONE" />
44 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
45 <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" />
Emeric Vigier2f625822012-08-06 11:09:52 -040048
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040049 <application
Emeric Vigiercf6d51e2012-09-19 14:28:35 -040050 android:name=".client.SFLphoneApplication"
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040051 android:debuggable="true"
52 android:icon="@drawable/ic_launcher"
53 android:label="@string/app_name"
54 android:theme="@style/AppTheme" >
55 <activity
56 android:name=".client.SFLPhoneHome"
57 android:label="@string/title_activity_sflphone_home"
58 android:theme="@style/AppTheme" >
59 <intent-filter>
60 <action android:name="android.intent.action.MAIN" />
Adrien Béraudffd32412012-08-07 18:39:23 -040061
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040062 <category android:name="android.intent.category.LAUNCHER" />
63 </intent-filter>
64 </activity>
65 <activity android:name=".client.SFLPhonePreferenceActivity" >
66 <meta-data
67 android:name="android.support.PARENT_ACTIVITY"
68 android:value="com.savoirfairelinux.sflphone.client.SFLPhoneHome" />
69 </activity>
Adrien Béraudffd32412012-08-07 18:39:23 -040070
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040071 <receiver
72 android:name=".client.receiver.NewOutgoingCallReceiver"
73 android:exported="true" >
74 <intent-filter>
75 <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
76
77 <category android:name="android.intent.category.DEFAULT" />
78 </intent-filter>
79 </receiver>
80 </application>
Emeric Vigier2f625822012-08-06 11:09:52 -040081
82</manifest>