-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathAndroidManifest.xml
144 lines (127 loc) · 5.59 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
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto"
package="com.blork.anpod"
android:versionCode="94"
android:versionName="3.3.6" >
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<uses-sdk
android:minSdkVersion="5"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:name="ApodApplication"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:logo="@drawable/title_logo_default"
android:theme="@style/Theme.ApodTheme"
android:hardwareAccelerated="true">
<meta-data
android:name="android.app.default_searchable"
android:value="com.blork.anpod.activity.SearchActivity" />
<activity
android:name="com.blork.anpod.activity.HomeActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.blork.anpod.activity.UserPreferenceActivity"
android:label="@string/app_name" />
<activity
android:name="com.blork.anpod.activity.UserPreferenceActivityV11"
android:label="@string/app_name" />
<activity
android:name="com.blork.anpod.activity.SearchDetailsFragmentPagerActivity"
android:configChanges="orientation"
android:label="@string/app_name" />
<activity
android:name=".activity.DetailsFragmentPagerActivity"
android:configChanges="orientation"
android:label="@string/app_name" />
<activity
android:name="com.blork.anpod.activity.SearchActivity"
android:label="@string/search_name"
android:launchMode="singleTop" >
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<provider
android:name="com.blork.anpod.search.ApodSuggestionProvider"
android:authorities="com.blork.anpod.search.ApodSuggestionProvider" />
<service
android:name="com.blork.anpod.service.AnpodService"
android:enabled="true" />
<service
android:name="com.blork.anpod.service.WidgetService"
android:enabled="true" />
<service
android:name="service.AppUpdateService"
android:enabled="true" />
<receiver
android:name="com.blork.anpod.widget.Widget"
android:label="Astronomy Widget (4x1)"
android:process=":remote" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_info" />
</receiver>
<receiver
android:name="com.blork.anpod.widget.Widget4x2"
android:label="Astronomy Widget (4x2)"
android:process=":remote" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_info_4x2" />
</receiver>
<receiver
android:name="com.blork.anpod.widget.Widget4x4"
android:label="Astronomy Widget (4x4)"
android:process=":remote" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_info_4x4" />
</receiver>
<receiver
android:name="com.blork.anpod.service.Receiver"
android:process=":remote" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
<action android:name="android.intent.action.BATTERY_CHANGED" />
<action android:name="com.blork.anpod.SET_UPDATE" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
<provider
android:name=".provider.PicturesContentProvider"
android:authorities="com.blork.anpod.provider.picturescontentprovider" />
<activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation" />
</application>
</manifest>