UNTESTED: add flashsms & custom sender to gui
[andGMXsms.git] / AndroidManifest.xml
blob979953274f72f145ecf4a12c337b4c4eac17ab82
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"
21       android:versionName="2.7" android:versionCode="270">
22     <application android:label="@string/app_name" android:icon="@drawable/icon" android:debuggable="true">
23         <activity android:label="@string/app_name" android:configChanges="orientation" android:windowSoftInputMode="adjustResize" android:name="WebSMS">
24             <intent-filter>
25                 <action android:name="android.intent.action.MAIN" />
26                 <category android:name="android.intent.category.LAUNCHER" />
27             </intent-filter>
28             <intent-filter>
29                 <action android:name="android.intent.action.SENDTO" />
30                 <category android:name="android.intent.category.DEFAULT" />
31                 <data android:scheme="sms" />
32             </intent-filter>
33             <intent-filter>
34                 <action android:name="android.intent.action.SENDTO" />
35                 <category android:name="android.intent.category.DEFAULT" />
36                 <data android:scheme="smsto" />
37             </intent-filter>
38         </activity>
39         <activity android:windowSoftInputMode="adjustResize" android:name="WebSMS$Preferences" />
40         <service android:name="IOService" android:exported="false" />
41         <meta-data android:value="a14a4523fe4e4f0" android:name="ADMOB_PUBLISHER_ID" />
42     </application>
43     <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="5" />
44     <supports-screen android:largeScreens="true" android:normalScreens="true" 
45         android:smallScreens="true" android:anyDensity="true"/>
46     <uses-permission android:name="android.permission.INTERNET" />
47     <uses-permission android:name="android.permission.READ_CONTACTS" />
48     <uses-permission android:name="android.permission.WRITE_SMS" />
49     <uses-permission android:name="android.permission.READ_SMS" />
50     <uses-permission android:name="android.permission.SEND_SMS" />
51     <!-- AdMob SDK permissions -->
52     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
53 </manifest>