forked from SlimSaber/android_packages_services_OmniJaws
-
Notifications
You must be signed in to change notification settings - Fork 3
/
AndroidManifest.xml
99 lines (86 loc) · 3.97 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.omnirom.omnijaws"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<permission android:name="org.omnirom.omnijaws.READ_WEATHER" />
<uses-sdk
android:minSdkVersion="24"
android:targetSdkVersion="25" />
<application
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@drawable/omnirom_logo" >
<uses-library android:name="org.apache.http.legacy" android:required="false" />
<activity
android:name=".SettingsActivity"
android:exported="true"
android:label="@string/settings_title"
android:launchMode="singleTop"
android:theme="@android:style/Theme.DeviceDefault.Settings" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".SettingsActivityService"
android:exported="true"
android:label="@string/settings_title"
android:launchMode="singleTop"
android:theme="@android:style/Theme.DeviceDefault.Settings" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<service
android:name=".WeatherService"
android:exported="true" />
<provider
android:name=".WeatherContentProvider"
android:authorities="org.omnirom.omnijaws.provider"
android:exported="true"
android:readPermission="org.omnirom.omnijaws.READ_WEATHER" />
<receiver android:name=".SystemReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<!-- name is used a prefix +"_" for images e.g. weather_<condition_id>
weather_foo_<condition_id> -->
<activity android:name=".outline"
android:label="Outline" >
<intent-filter>
<action android:name="org.omnirom.WeatherIconPack" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<receiver
android:name=".widget.WeatherAppWidgetProvider"
android:label="@string/weather_widget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="android.intent.action.LOCALE_CHANGED" />
<action android:name="org.omnirom.omnijaws.WEATHER_UPDATE" />
<action android:name="org.omnirom.omnijaws.WEATHER_ERROR" />
<action android:name="org.omnirom.omnijaws.widget.WEATHER_REFRESH" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/weather_appwidget" />
</receiver>
<activity
android:name=".widget.WeatherAppWidgetConfigure"
android:theme="@android:style/Theme.Material.Settings">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
</application>
</manifest>