forked from felixb/websms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
119 lines (118 loc) · 5.68 KB
/
AndroidManifest.xml
File metadata and controls
119 lines (118 loc) · 5.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2009-2011 Felix Bechstein
-->
<!--
This file is part of AndGMXsms. This program is free software; you can
redistribute it and/or modify it under the terms of the GNU General
Public License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
-->
<!--
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details. You should have received a
copy of the GNU General Public License along with this program; If
not, see <http://www.gnu.org/licenses/>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.ub0r.android.websms" android:versionName="4.1"
android:versionCode="3136" android:installLocation="auto">
<application android:name=".WebSMSApp" android:label="@string/app_name"
android:icon="@drawable/icon" android:hardwareAccelerated="true">
<activity android:name="WebSMS" android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="stateHidden|adjustResize"
android:launchMode="singleTop" android:theme="@style/Theme.SherlockUb0r">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android-dir/mms-sms" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="sms" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="smsto" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
<data android:mimeType="text/x-vcard" />
</intent-filter>
</activity>
<activity android:name=".PreferencesActivity"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" />
<activity android:name=".Preferences11Activity"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" />
<activity android:name=".PreferencesAppearanceActivity"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" />
<activity android:name=".PreferencesBehaviorActivity"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" />
<activity android:name=".AboutActivity" android:theme="@style/Theme.SherlockUb0r_Light" />
<activity android:name=".HelpActivity"
android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.SherlockUb0r_Light" />
<activity android:name="CaptchaActivity"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.SherlockUb0r" />
<activity android:name="de.ub0r.android.lib.DonationHelper"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.SherlockUb0r_Light">
</activity>
<activity android:name="de.ub0r.android.lib.Changelog"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.SherlockUb0r_Light" />
<receiver android:name="WebSMSReceiver" android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="de.ub0r.android.websms.connector.INFO" />
<action android:name="de.ub0r.android.websms.connector.CAPTCHA_REQUEST" />
</intent-filter>
</receiver>
<receiver android:name="de.ub0r.android.websms.connector.sms.ConnectorSMS"
android:enabled="true" android:exported="true">
<intent-filter>
<action android:name="de.ub0r.android.websms.RUN_SEND" />
<action android:name="de.ub0r.android.websms.connector.UPDATE" />
</intent-filter>
</receiver>
<activity android:name="com.google.ads.AdActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:configChanges="keyboard|keyboardHidden|orientation" />
</application>
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="13" />
<supports-screens android:smallScreens="true"
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true" />
<uses-feature android:name="android.hardware.touchscreen"
android:required="false" />
<uses-feature android:name="android.hardware.location.network"
android:required="false" />
<uses-feature android:name="android.hardware.location"
android:required="false" />
<uses-feature android:name="android.hardware.telephony"
android:required="false" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_SMS" />
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<!-- AdMob SDK permissions -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>