-
Notifications
You must be signed in to change notification settings - Fork 2
/
AndroidManifest.xml
85 lines (73 loc) · 4.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
<?xml version="1.0" encoding="utf-8"?>
<!--
Pingly - A simple app for checking for signs of life in hosts/services.
Copyright 2012 Barry O'Neill
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- version info:
code:2, name: 0.9.2_beta - fix for sqldb locking problem, fix for probe run restart on rotate
code:1, name: 0.9_beta - initial release
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.nologin.meep.pingly"
android:versionCode="2"
android:versionName="0.9.2_beta">
<uses-sdk android:minSdkVersion="7" />
<!-- reason: useless without internet -->
<uses-permission android:name="android.permission.INTERNET"/>
<!-- reason: probes check internet connection present before running -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<!-- reason: reschedule probes on reboot -->
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<!-- reason: notifications (can be turned off in prefs) -->
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:icon="@drawable/main_launcher_icon"
android:label="@string/pingly_app_label"
android:theme="@style/Theme.PinglyTheme"
android:name=".PinglyApplication">
<activity android:name=".activity.PinglyDashActivity" android:label="@string/activity_dashboard">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".activity.ProbeListActivity" android:label="@string/activity_probe_list"/>
<activity android:name=".activity.ProbeDetailActivity" android:label="@string/activity_probe_detail"
android:windowSoftInputMode="adjustPan"/>
<activity android:name=".activity.ProbeRunnerActivity" android:label="@string/activity_probe_runner"/>
<activity android:name=".activity.ProbeRunHistoryActivity" android:label="@string/activity_probe_run_history" android:launchMode="singleTask"/>
<activity android:name=".activity.ScheduleListActivity" android:label="@string/activity_schedule_list"/>
<activity android:name=".activity.ScheduleDetailActivity" android:label="@string/activity_schedule_detail"/>
<activity android:name=".activity.SettingsActivity" android:label="@string/activity_settings"
android:theme="@android:style/Theme.Black"/>
<receiver android:name=".alarm.RescheduleAllAlarmsReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
<!-- TODO: inve
<intent-ui><action android:name="android.intent.action.PACKAGE_REPLACED" /></intent-ui>
<intent-ui><action android:name="android.intent.action.TIMEZONE_CHANGED" /></intent-ui>
-->
</receiver>
<receiver android:name=".alarm.ProbeRunnerReceiver"/>
<service
android:name=".service.ProbeRunnerScheduleService"
android:icon="@drawable/main_launcher_icon"
android:label="@string/service_schedule_label"
/>
<service
android:name=".service.ProbeRunnerInteractiveService"
android:icon="@drawable/main_launcher_icon"
android:label="@string/service_interactive_label"
/>
</application>
</manifest>