-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
85 lines (81 loc) · 3.78 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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.doomonafireball.umbee"
android:versionCode="5"
android:versionName="1.2.0"
android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-feature android:name="android.hardware.location" android:required="true"/>
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17"/>
<application
android:name=".MainApp"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/UmbeeTheme"
android:orientation="vertical">
<activity
android:name=".activity.StartupActivity"
android:windowSoftInputMode="stateHidden"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!--<activity-->
<!--android:name=".activity.AlertTypeActivity"-->
<!--android:label="@string/alert_type"-->
<!--android:logo="@drawable/ic_menu_notifications"-->
<!--android:theme="@style/UmbeeDialog"/>-->
<service
android:name="com.littlefluffytoys.littlefluffylocationlibrary.LocationBroadcastService"/>
<receiver
android:name="com.littlefluffytoys.littlefluffylocationlibrary.StartupBroadcastReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<receiver
android:name="com.littlefluffytoys.littlefluffylocationlibrary.PassiveLocationChangedReceiver"
android:exported="true"/>
<service
android:name=".service.NotificationService"/>
<receiver android:name=".receiver.LocationReceiver">
<intent-filter>
<action android:name="com.littlefluffytoys.littlefluffylocationlibrary.LOCATION_CHANGED"
android:exported="false"/>
</intent-filter>
</receiver>
<receiver
android:name=".receiver.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<receiver
android:name=".receiver.NotificationReceiver"/>
<service
android:name=".service.UmbeeDashClockService"
android:icon="@drawable/icon_notif"
android:label="@string/umbee_lowercase"
android:permission="com.google.android.apps.dashclock.permission.READ_EXTENSION_DATA">
<intent-filter>
<action android:name="com.google.android.apps.dashclock.Extension"/>
</intent-filter>
<meta-data android:name="protocolVersion" android:value="1"/>
<meta-data android:name="description"
android:value="@string/umbee_dashclock_description"/>
<!-- A settings activity is optional -->
<meta-data android:name="settingsActivity"
android:value=".activity.StartupActivity"/>
</service>
</application>
</manifest>