bump to v0.2
[andGMXsms.git] / connectors / cherrysms / AndroidManifest.xml
blobe4e50b772281cdf84a232cadf56ce8cdb67cc51a
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.connector.cherrysms" android:versionName="0.2"
21         android:versionCode="200">
22         <application android:label="@string/app_name" android:icon="@drawable/icon"
23                 android:debuggable="true">
25                 <!--
26                         This Activity is brought by the WebSMS Connector Plugin API. It shows
27                         a simple information about this connector when launching it via
28                         "open" button from android market.
29                 -->
30                 <activity android:name="de.ub0r.android.websms.connector.common.InfoActivity"
31                         android:label="@string/app_name" android:icon="@drawable/icon"
32                         android:theme="@android:style/Theme.Translucent.NoTitleBar">
33                         <intent-filter>
34                                 <action android:name="android.intent.action.MAIN" />
35                                 <category android:name="android.intent.category.INFO" />
36                         </intent-filter>
37                 </activity>
39                 <!-- Service doing all the IO. -->
40                 <service android:name="de.ub0r.android.websms.connector.common.ConnectorService"
41                         android:exported="false" />
43                 <activity android:name="Preferences">
44                         <intent-filter>
45                                 <action android:name="de.ub0r.android.websms.connectors.cherrysms.PREFS" />
46                                 <category android:name="android.intent.category.DEFAULT" />
47                         </intent-filter>
48                 </activity>
49                 <receiver android:name="de.ub0r.android.websms.connector.cherrysms.ConnectorCherrySMS"
50                         android:enabled="true" android:exported="true">
51                         <intent-filter>
52                                 <action android:name="de.ub0r.android.websms.connector.cherrysms.RUN_UPDATE" />
53                                 <action android:name="de.ub0r.android.websms.connector.cherrysms.RUN_SEND" />
54                                 <action android:name="de.ub0r.android.websms.connector.UPDATE" />
55                         </intent-filter>
56                 </receiver>
57         </application>
58         <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="7" />
59         <supports-screen android:largeScreens="true"
60                 android:normalScreens="true" android:smallScreens="true"
61                 android:anyDensity="true" />
62         <uses-permission android:name="android.permission.INTERNET" />
63         <!-- WAKE_LOCK needed to make sure, sms are send even if user sends device to sleep. -->
64         <uses-permission android:name="android.permission.WAKE_LOCK" />
65 </manifest>