implement update freecount
[andGMXsms.git] / AndroidManifest.xml
bloba2d71e3a19e6fd905bb06d2bc42964925c12e8ea
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.andGMXsms" android:versionName="2.8.4"
21         android:versionCode="284">
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                         <intent-filter>
27                                 <action android:name="android.intent.action.MAIN" />
28                                 <category android:name="android.intent.category.LAUNCHER" />
29                         </intent-filter>
30                         <intent-filter>
31                                 <action android:name="android.intent.action.SENDTO" />
32                                 <category android:name="android.intent.category.DEFAULT" />
33                                 <data android:scheme="sms" />
34                         </intent-filter>
35                         <intent-filter>
36                                 <action android:name="android.intent.action.SENDTO" />
37                                 <category android:name="android.intent.category.DEFAULT" />
38                                 <data android:scheme="smsto" />
39                         </intent-filter>
40                 </activity>
41                 <activity android:name="Preferences" />
42                 <receiver android:name="WebSMSReceiver" android:enabled="true"
43                         android:exported="true">
44                         <intent-filter>
45                                 <action android:name="de.ub0r.android.websms.connector.INFO" />
46                                 <category android:name="android.intent.category.DEFAULT" />
47                         </intent-filter>
48                 </receiver>
50                 <service android:name="IOService" android:exported="false" />
52                 <receiver android:name="de.ub0r.android.websms.connector.sms.CommandReceiverSMS"
53                         android:enabled="true" android:exported="true">
54                         <intent-filter>
55                                 <action android:name="de.ub0r.android.websms.connector.RUN_SEND" />
56                                 <action android:name="de.ub0r.android.websms.connector.UPDATE" />
57                         </intent-filter>
58                 </receiver>
60                 <meta-data android:value="a14a4523fe4e4f0" android:name="ADMOB_PUBLISHER_ID" />
62                 <!-- this will go to separate apk. -->
63                 <activity android:name="de.ub0r.android.websms.connector.gmx.Preferences">
64                         <intent-filter>
65                                 <action android:name="de.ub0r.android.websms.connectors.gmx.PREFS" />
66                                 <category android:name="android.intent.category.DEFAULT" />
67                         </intent-filter>
68                 </activity>
69                 <receiver android:name="de.ub0r.android.websms.connector.gmx.CommandReceiverGMX"
70                         android:enabled="true" android:exported="true">
71                         <intent-filter>
72                                 <action android:name="de.ub0r.android.websms.connector.RUN_BOOTSTRAP" />
73                                 <action android:name="de.ub0r.android.websms.connector.RUN_UPDATE" />
74                                 <action android:name="de.ub0r.android.websms.connector.RUN_SEND" />
75                                 <action android:name="de.ub0r.android.websms.connector.UPDATE" />
76                         </intent-filter>
77                 </receiver>
78         </application>
79         <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="7" />
80         <supports-screen android:largeScreens="true"
81                 android:normalScreens="true" android:smallScreens="true"
82                 android:anyDensity="true" />
83         <uses-permission android:name="android.permission.INTERNET" />
84         <uses-permission android:name="android.permission.READ_CONTACTS" />
85         <uses-permission android:name="android.permission.WRITE_SMS" />
86         <uses-permission android:name="android.permission.READ_SMS" />
87         <uses-permission android:name="android.permission.SEND_SMS" />
88         <uses-permission android:name="android.permission.VIBRATE" />
89         <uses-permission android:name="android.permission.READ_PHONE_STATE" />
90         <!-- AdMob SDK permissions -->
91         <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
92 </manifest>