OSDN Git Service

am 88fe1fb6: am 12290bd7: Fix coords of NeuralNetwork LW tap effects.
[android-x86/packages-wallpapers-Basic.git] / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 /*
4 **
5 ** Copyright 2008, The Android Open Source Project
6 **
7 ** Licensed under the Apache License, Version 2.0 (the "License");
8 ** you may not use this file except in compliance with the License.
9 ** You may obtain a copy of the License at
10 **
11 **     http://www.apache.org/licenses/LICENSE-2.0
12 **
13 ** Unless required by applicable law or agreed to in writing, software
14 ** distributed under the License is distributed on an "AS IS" BASIS,
15 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ** See the License for the specific language governing permissions and
17 ** limitations under the License.
18 */
19 -->
20 <manifest
21     xmlns:android="http://schemas.android.com/apk/res/android"
22     package="com.android.wallpaper">
23
24     <original-package android:name="com.android.wallpaper" />
25
26     <uses-feature android:name="android.software.live_wallpaper" />
27
28     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
29     <uses-permission android:name="android.permission.CAMERA" />
30
31     <application
32         android:label="@string/wallpapers"
33         android:icon="@drawable/ic_launcher_wallpaper">
34
35         <activity
36             android:label="@string/wallpaper_grass"
37             android:name="com.android.wallpaper.grass.Grass"
38             android:theme="@android:style/Theme.NoTitleBar">
39
40             <intent-filter>
41                 <action android:name="android.intent.action.MAIN" />
42                 <category android:name="android.intent.category.TEST" />
43             </intent-filter>
44
45         </activity>
46         
47         <activity
48             android:label="@string/wallpaper_galaxy"
49             android:name="com.android.wallpaper.galaxy.Galaxy"
50             android:theme="@android:style/Theme.NoTitleBar">
51
52             <intent-filter>
53                 <action android:name="android.intent.action.MAIN" />
54                 <category android:name="android.intent.category.TEST" />
55             </intent-filter>
56
57         </activity>
58         
59         <activity
60             android:label="@string/wallpaper_fall"
61             android:name="com.android.wallpaper.fall.Fall"
62             android:theme="@android:style/Theme.NoTitleBar">
63
64             <intent-filter>
65                 <action android:name="android.intent.action.MAIN" />
66                 <category android:name="android.intent.category.TEST" />
67             </intent-filter>
68
69         </activity>
70         
71         <service
72             android:label="@string/wallpaper_nexus"
73             android:name="com.android.wallpaper.nexus.NexusWallpaper"
74             android:permission="android.permission.BIND_WALLPAPER">
75             <intent-filter>
76                 <action android:name="android.service.wallpaper.WallpaperService" />
77             </intent-filter>
78             <meta-data android:name="android.service.wallpaper" android:resource="@xml/nexus" />
79         </service>
80         
81         <service
82             android:label="@string/wallpaper_grass"
83             android:name="com.android.wallpaper.grass.GrassWallpaper"
84             android:permission="android.permission.BIND_WALLPAPER">
85             <intent-filter>
86                 <action android:name="android.service.wallpaper.WallpaperService" />
87             </intent-filter>
88             <meta-data android:name="android.service.wallpaper" android:resource="@xml/grass" />
89         </service>
90
91         <service
92             android:label="@string/wallpaper_galaxy"
93             android:name="com.android.wallpaper.galaxy.GalaxyWallpaper"
94             android:permission="android.permission.BIND_WALLPAPER">
95             <intent-filter>
96                 <action android:name="android.service.wallpaper.WallpaperService" />
97             </intent-filter>
98             <meta-data android:name="android.service.wallpaper" android:resource="@xml/galaxy" />
99         </service>
100
101         <service
102             android:label="@string/wallpaper_fall"
103             android:name="com.android.wallpaper.fall.FallWallpaper"
104             android:permission="android.permission.BIND_WALLPAPER">
105             <intent-filter>
106                 <action android:name="android.service.wallpaper.WallpaperService" />
107             </intent-filter>
108             <meta-data android:name="android.service.wallpaper" android:resource="@xml/fall" />
109         </service>
110
111         <activity
112             android:label="@string/clock_settings"
113             android:name="com.android.wallpaper.polarclock.PolarClockSettings"
114             android:theme="@android:style/Theme"
115             android:exported="true">
116         </activity>
117         
118         <service
119             android:label="@string/wallpaper_clock"
120             android:name="com.android.wallpaper.polarclock.PolarClockWallpaper"
121             android:permission="android.permission.BIND_WALLPAPER">
122             <intent-filter>
123                 <action android:name="android.service.wallpaper.WallpaperService" />
124             </intent-filter>
125             <meta-data android:name="android.service.wallpaper" android:resource="@xml/polar_clock" />
126         </service>
127
128         <!-- RE-ENABLE WHEN #2246948 IS FIXED -->
129         <!-- <service
130             android:label="@string/wallpaper_walkaround"
131             android:name="com.android.wallpaper.walkaround.WalkAroundWallpaper"
132             android:permission="android.permission.BIND_WALLPAPER">
133             <intent-filter>
134                 <action android:name="android.service.wallpaper.WallpaperService" />
135             </intent-filter>
136             <meta-data android:name="android.service.wallpaper" android:resource="@xml/walkaround" />
137         </service> -->
138
139     </application>
140
141 </manifest>