blob: a87d5c6ac2ba023f0c9bfcca09cf9a10034b66ae [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
alision9f7a6ec2013-05-24 16:26:26 -040037 android:minSdkVersion="14"
Adrien Béraude587c602013-04-26 17:33:03 +100038 android:targetSdkVersion="17" />
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" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040044 <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
45 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
46 <uses-permission android:name="android.permission.RECORD_AUDIO" />
alision17052d42013-04-22 10:39:38 -040047 <uses-permission android:name="android.permission.VIBRATE" />
alisione2a38e12013-04-25 14:20:20 -040048 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
49 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Emeric Vigier2f625822012-08-06 11:09:52 -040050
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040051 <application
Emeric Vigiercf6d51e2012-09-19 14:28:35 -040052 android:name=".client.SFLphoneApplication"
alisioncc7bb422013-06-06 15:31:39 -040053 android:allowBackup="true"
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040054 android:debuggable="true"
55 android:icon="@drawable/ic_launcher"
56 android:label="@string/app_name"
alisioncc7bb422013-06-06 15:31:39 -040057 android:theme="@style/AppTheme" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040058 <activity
alisionf76de3b2013-04-16 15:35:22 -040059 android:name=".client.SFLPhoneHomeActivity"
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040060 android:label="@string/title_activity_sflphone_home"
Emeric Vigier2e5c4e22012-11-07 15:24:54 -050061 android:screenOrientation="portrait"
alisioncc7bb422013-06-06 15:31:39 -040062 android:theme="@style/AppTheme"
63 android:windowSoftInputMode="adjustPan" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040064 <intent-filter>
65 <action android:name="android.intent.action.MAIN" />
Adrien Béraudffd32412012-08-07 18:39:23 -040066
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040067 <category android:name="android.intent.category.LAUNCHER" />
68 </intent-filter>
69 </activity>
Emeric Vigier2e5c4e22012-11-07 15:24:54 -050070 <activity
71 android:name=".client.SFLPhonePreferenceActivity"
72 android:screenOrientation="portrait" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040073 <meta-data
74 android:name="android.support.PARENT_ACTIVITY"
75 android:value="com.savoirfairelinux.sflphone.client.SFLPhoneHome" />
76 </activity>
alisioncc7bb422013-06-06 15:31:39 -040077 <activity
78 android:name=".client.AccountPreferenceActivity"
79 android:label="@string/app_name"
80 android:screenOrientation="portrait" />
81 <activity
82 android:name=".client.CallActivity"
83 android:label="@string/app_name"
84 android:screenOrientation="portrait" >
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040085 <intent-filter>
alisioncc7bb422013-06-06 15:31:39 -040086 <action android:name="android.intent.action.CALL_PRIVILEGED" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040087
88 <category android:name="android.intent.category.DEFAULT" />
alisioncc7bb422013-06-06 15:31:39 -040089
90 <data android:scheme="tel" />
Emeric Vigier0d6b7d92012-09-14 17:28:10 -040091 </intent-filter>
alisioncc7bb422013-06-06 15:31:39 -040092 </activity>
93
94<!-- <receiver -->
95<!-- android:name="com.savoirfairelinux.sflphone.receivers.ExternalCallReceiver" -->
96<!-- android:exported="true" > -->
97<!-- <intent-filter> -->
98<!-- <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> -->
99
100
101<!-- <category android:name="android.intent.category.DEFAULT" /> -->
102<!-- </intent-filter> -->
103<!-- </receiver> -->
104
Emeric Vigiereaf2c492012-09-19 14:38:20 -0400105 <service
Adrien Béraude587c602013-04-26 17:33:03 +1000106 android:name=".service.SipService"
alisioncc7bb422013-06-06 15:31:39 -0400107 android:exported="false" >
Emeric Vigiereaf2c492012-09-19 14:38:20 -0400108 <intent-filter>
109 <action android:name=".service.SipService" />
110 </intent-filter>
111 </service>
Emeric Vigier0d6b7d92012-09-14 17:28:10 -0400112 </application>
Emeric Vigier2f625822012-08-06 11:09:52 -0400113
alisioncc7bb422013-06-06 15:31:39 -0400114</manifest>