blob: b450754e06b9c98d91b242d4c0d882b52c3ac45f [file] [log] [blame]
Romain Guy55a384c2009-08-12 10:58:02 -07001<?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
Romain Guya56ce012009-10-13 17:05:45 -070024 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
25
Romain Guy55a384c2009-08-12 10:58:02 -070026 <application
27 android:label="@string/wallpapers"
28 android:icon="@drawable/ic_launcher_wallpaper">
29
Romain Guy1a430b82009-08-28 17:05:02 -070030 <activity
31 android:label="@string/wallpaper_grass"
32 android:name="com.android.wallpaper.grass.Grass"
33 android:theme="@android:style/Theme.NoTitleBar">
34
35 <intent-filter>
36 <action android:name="android.intent.action.MAIN" />
Joe Onoratof0bc5512009-10-28 17:37:40 -040037 <category android:name="android.intent.category.TEST" />
Romain Guy1a430b82009-08-28 17:05:02 -070038 </intent-filter>
39
40 </activity>
41
42 <activity
43 android:label="@string/wallpaper_galaxy"
44 android:name="com.android.wallpaper.galaxy.Galaxy"
45 android:theme="@android:style/Theme.NoTitleBar">
46
47 <intent-filter>
48 <action android:name="android.intent.action.MAIN" />
Joe Onoratof0bc5512009-10-28 17:37:40 -040049 <category android:name="android.intent.category.TEST" />
Romain Guy1a430b82009-08-28 17:05:02 -070050 </intent-filter>
51
52 </activity>
53
Romain Guy59206df2009-09-09 13:07:58 -070054 <activity
55 android:label="@string/wallpaper_fall"
56 android:name="com.android.wallpaper.fall.Fall"
57 android:theme="@android:style/Theme.NoTitleBar">
58
59 <intent-filter>
60 <action android:name="android.intent.action.MAIN" />
Joe Onoratof0bc5512009-10-28 17:37:40 -040061 <category android:name="android.intent.category.TEST" />
Romain Guy59206df2009-09-09 13:07:58 -070062 </intent-filter>
63
64 </activity>
65
Romain Guy55a384c2009-08-12 10:58:02 -070066 <service
Mike Cleron4921adb2009-11-08 13:11:34 -080067 android:label="@string/wallpaper_nexus"
68 android:name="com.android.wallpaper.nexus.NexusWallpaper"
69 android:permission="android.permission.BIND_WALLPAPER">
70 <intent-filter>
71 <action android:name="android.service.wallpaper.WallpaperService" />
72 </intent-filter>
73 <meta-data android:name="android.service.wallpaper" android:resource="@xml/nexus" />
74 </service>
75
76 <service
Romain Guy55a384c2009-08-12 10:58:02 -070077 android:label="@string/wallpaper_grass"
78 android:name="com.android.wallpaper.grass.GrassWallpaper"
79 android:permission="android.permission.BIND_WALLPAPER">
80 <intent-filter>
81 <action android:name="android.service.wallpaper.WallpaperService" />
82 </intent-filter>
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -070083 <meta-data android:name="android.service.wallpaper" android:resource="@xml/grass" />
Romain Guy55a384c2009-08-12 10:58:02 -070084 </service>
85
Romain Guya7cbc262009-08-12 15:24:53 -070086 <service
Romain Guye04d27e2009-08-21 16:30:52 -070087 android:label="@string/wallpaper_galaxy"
88 android:name="com.android.wallpaper.galaxy.GalaxyWallpaper"
89 android:permission="android.permission.BIND_WALLPAPER">
90 <intent-filter>
91 <action android:name="android.service.wallpaper.WallpaperService" />
92 </intent-filter>
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -070093 <meta-data android:name="android.service.wallpaper" android:resource="@xml/galaxy" />
Romain Guye04d27e2009-08-21 16:30:52 -070094 </service>
95
Romain Guy59206df2009-09-09 13:07:58 -070096 <service
97 android:label="@string/wallpaper_fall"
98 android:name="com.android.wallpaper.fall.FallWallpaper"
99 android:permission="android.permission.BIND_WALLPAPER">
100 <intent-filter>
101 <action android:name="android.service.wallpaper.WallpaperService" />
102 </intent-filter>
103 <meta-data android:name="android.service.wallpaper" android:resource="@xml/fall" />
104 </service>
105
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -0700106 <activity
107 android:label="@string/clock_settings"
108 android:name="com.android.wallpaper.polarclock.PolarClockSettings"
Daniel Sandler8e906582009-10-21 10:28:50 -0400109 android:theme="@android:style/Theme"
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -0700110 android:exported="true">
111 </activity>
112
Romain Guye04d27e2009-08-21 16:30:52 -0700113 <service
Romain Guya7cbc262009-08-12 15:24:53 -0700114 android:label="@string/wallpaper_clock"
115 android:name="com.android.wallpaper.polarclock.PolarClockWallpaper"
116 android:permission="android.permission.BIND_WALLPAPER">
117 <intent-filter>
118 <action android:name="android.service.wallpaper.WallpaperService" />
119 </intent-filter>
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -0700120 <meta-data android:name="android.service.wallpaper" android:resource="@xml/polar_clock" />
Romain Guya7cbc262009-08-12 15:24:53 -0700121 </service>
122
Romain Guy55a384c2009-08-12 10:58:02 -0700123 </application>
124
125</manifest>