forked from smeagol42/callmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
165 lines (165 loc) · 8.13 KB
/
AndroidManifest.xml
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2009-2011 Felix Bechstein
-->
<!--
This file is part of Call Meter 3G. 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.callmeter" android:versionName="3.0rc15"
android:versionCode="2834" android:installLocation="internalOnly">
<application android:name=".CallMeter" android:icon="@drawable/icon"
android:label="@string/app_name" android:hardwareAccelerated="true">
<activity android:name=".ui.Plans" android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ui.Logs" android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTop" android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.AskForPlan"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize"
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
<activity android:name=".ui.prefs.Preferences"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTask" android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="import" />
<data android:scheme="imports" />
<data android:host="callmeter.android.ub0r.de" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/android.callmeter.export" />
<data android:mimeType="application/android.callmeter.ruleset" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" android:host="*"
android:pathPattern="*.export" />
</intent-filter>
</activity>
<activity android:name=".ui.prefs.SimplePreferences"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTask" android:windowSoftInputMode="adjustResize">
</activity>
<activity android:name=".ui.prefs.PreferencesImport"
android:windowSoftInputMode="adjustResize">
</activity>
<activity android:name=".ui.prefs.Plans"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTop" android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.prefs.PlanEdit"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTop" android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.prefs.Rules"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTop" android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.prefs.RuleEdit"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.prefs.NumberGroups"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTop" android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.prefs.NumberGroupEdit"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.prefs.HourGroups"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTop" android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.prefs.HourGroupEdit"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.About"
android:windowSoftInputMode="adjustResize" />
<activity android:name=".ui.Help"
android:windowSoftInputMode="adjustResize" />
<activity android:name="de.ub0r.android.lib.DonationHelper"
android:windowSoftInputMode="adjustResize" />
<activity android:name="de.ub0r.android.lib.Changelog"
android:windowSoftInputMode="adjustResize" />
<receiver android:name=".data.LogRunnerReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
<action android:name="android.intent.action.REBOOT" />
<action android:name="android.intent.action.DATE_CHANGED" />
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
<action android:name="android.intent.action.PHONE_STATE" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
<intent-filter>
<action android:name="de.ub0r.android.callmeter.SAVE_WEBSMS" />
<action android:name="de.ub0r.android.callmeter.SAVE_SIPCALL" />
</intent-filter>
</receiver>
<service android:name=".data.LogRunnerService" />
<provider android:name=".data.DataProvider"
android:authorities="de.ub0r.android.callmeter.provider" />
<receiver android:name=".widget.StatsAppWidgetProvider">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/stats_appwidget_info" />
</receiver>
<activity android:name=".widget.StatsAppWidgetConfigure"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleTop" android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<activity android:name="com.google.ads.AdActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:configChanges="keyboard|keyboardHidden|orientation" />
</application>
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="12" />
<supports-screens android:smallScreens="true"
android:normalScreens="true" android:largeScreens="true"
android:xlargeScreens="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.READ_CONTACTS" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.READ_PHONE" />
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- AdMob SDK permissions -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>