move code to github
[andGMXsms.git] / AndroidManifest.xml
blob1b43ce94f489f3d09cee022e64651124d34fb391
1 <?xml version="1.0" encoding="utf-8"?>
2         <!--
3                 Copyright (C) 2009 Felix Bechstein
4         -->
5         <!--
6                 This file is part of AndGMXsms. This program is free software; you can
7                 redistribute it and/or modify it under the terms of the GNU General
8                 Public License as published by the Free Software Foundation; either
9                 version 3 of the License, or (at your option) any later version.
10         -->
11         <!--
12                 This program is distributed in the hope that it will be useful, but
13                 WITHOUT ANY WARRANTY; without even the implied warranty of
14                 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15                 General Public License for more details. You should have received a
16                 copy of the GNU General Public License along with this program; If
17                 not, see <http://www.gnu.org/licenses/>.
18         -->
19 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
20         package="de.ub0r.android.websms" android:versionName="2.9.92 beta2"
21         android:versionCode="2992">
22         <application android:label="@string/app_name" android:icon="@drawable/icon"
23                 android:debuggable="true">
24                 <activity android:label="@string/app_name"
25                         android:configChanges="orientation" android:name="WebSMS"
26                         android:launchMode="singleTop">
27                         <intent-filter>
28                                 <action android:name="android.intent.action.MAIN" />
29                                 <category android:name="android.intent.category.LAUNCHER" />
30                         </intent-filter>
31                         <intent-filter>
32                                 <action android:name="android.intent.action.SENDTO" />
33                                 <category android:name="android.intent.category.DEFAULT" />
34                                 <data android:scheme="sms" />
35                         </intent-filter>
36                         <intent-filter>
37                                 <action android:name="android.intent.action.SENDTO" />
38                                 <category android:name="android.intent.category.DEFAULT" />
39                                 <data android:scheme="smsto" />
40                         </intent-filter>
41                 </activity>
42                 <activity android:name="Preferences" />
43                 <receiver android:name="WebSMSReceiver" android:enabled="true"
44                         android:exported="true">
45                         <intent-filter>
46                                 <action android:name="de.ub0r.android.websms.connector.INFO" />
47                                 <category android:name="android.intent.category.DEFAULT" />
48                         </intent-filter>
49                 </receiver>
51                 <receiver android:name="de.ub0r.android.websms.connector.sms.CommandReceiverSMS"
52                         android:enabled="true" android:exported="true">
53                         <intent-filter>
54                                 <action android:name="de.ub0r.android.websms.connector.RUN_SEND" />
55                                 <action android:name="de.ub0r.android.websms.connector.UPDATE" />
56                         </intent-filter>
57                 </receiver>
59                 <meta-data android:value="a14a4523fe4e4f0" android:name="ADMOB_PUBLISHER_ID" />
60         </application>
61         <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="7" />
62         <supports-screen android:largeScreens="true"
63                 android:normalScreens="true" android:smallScreens="true"
64                 android:anyDensity="true" />
65         <uses-permission android:name="android.permission.INTERNET" />
66         <uses-permission android:name="android.permission.READ_CONTACTS" />
67         <uses-permission android:name="android.permission.WRITE_SMS" />
68         <uses-permission android:name="android.permission.READ_SMS" />
69         <uses-permission android:name="android.permission.SEND_SMS" />
70         <uses-permission android:name="android.permission.VIBRATE" />
71         <uses-permission android:name="android.permission.READ_PHONE_STATE" />
72         <!-- AdMob SDK permissions -->
73         <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
74 </manifest>