blob: 41ebac7181e280949fc4e22829c670ffb571af42 [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" />
Romain Guy524a6582009-11-05 13:10:02 -080025 <uses-permission android:name="android.permission.CAMERA" />
Romain Guya56ce012009-10-13 17:05:45 -070026
Romain Guy55a384c2009-08-12 10:58:02 -070027 <application
28 android:label="@string/wallpapers"
29 android:icon="@drawable/ic_launcher_wallpaper">
30
Romain Guy1a430b82009-08-28 17:05:02 -070031 <activity
32 android:label="@string/wallpaper_grass"
33 android:name="com.android.wallpaper.grass.Grass"
34 android:theme="@android:style/Theme.NoTitleBar">
35
36 <intent-filter>
37 <action android:name="android.intent.action.MAIN" />
Joe Onoratof0bc5512009-10-28 17:37:40 -040038 <category android:name="android.intent.category.TEST" />
Romain Guy1a430b82009-08-28 17:05:02 -070039 </intent-filter>
40
41 </activity>
42
43 <activity
44 android:label="@string/wallpaper_galaxy"
45 android:name="com.android.wallpaper.galaxy.Galaxy"
46 android:theme="@android:style/Theme.NoTitleBar">
47
48 <intent-filter>
49 <action android:name="android.intent.action.MAIN" />
Joe Onoratof0bc5512009-10-28 17:37:40 -040050 <category android:name="android.intent.category.TEST" />
Romain Guy1a430b82009-08-28 17:05:02 -070051 </intent-filter>
52
53 </activity>
54
Romain Guy59206df2009-09-09 13:07:58 -070055 <activity
56 android:label="@string/wallpaper_fall"
57 android:name="com.android.wallpaper.fall.Fall"
58 android:theme="@android:style/Theme.NoTitleBar">
59
60 <intent-filter>
61 <action android:name="android.intent.action.MAIN" />
Joe Onoratof0bc5512009-10-28 17:37:40 -040062 <category android:name="android.intent.category.TEST" />
Romain Guy59206df2009-09-09 13:07:58 -070063 </intent-filter>
64
65 </activity>
66
Romain Guy55a384c2009-08-12 10:58:02 -070067 <service
Mike Cleron4921adb2009-11-08 13:11:34 -080068 android:label="@string/wallpaper_nexus"
69 android:name="com.android.wallpaper.nexus.NexusWallpaper"
70 android:permission="android.permission.BIND_WALLPAPER">
71 <intent-filter>
72 <action android:name="android.service.wallpaper.WallpaperService" />
73 </intent-filter>
74 <meta-data android:name="android.service.wallpaper" android:resource="@xml/nexus" />
75 </service>
76
77 <service
Romain Guy55a384c2009-08-12 10:58:02 -070078 android:label="@string/wallpaper_grass"
79 android:name="com.android.wallpaper.grass.GrassWallpaper"
80 android:permission="android.permission.BIND_WALLPAPER">
81 <intent-filter>
82 <action android:name="android.service.wallpaper.WallpaperService" />
83 </intent-filter>
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -070084 <meta-data android:name="android.service.wallpaper" android:resource="@xml/grass" />
Romain Guy55a384c2009-08-12 10:58:02 -070085 </service>
86
Romain Guya7cbc262009-08-12 15:24:53 -070087 <service
Romain Guye04d27e2009-08-21 16:30:52 -070088 android:label="@string/wallpaper_galaxy"
89 android:name="com.android.wallpaper.galaxy.GalaxyWallpaper"
90 android:permission="android.permission.BIND_WALLPAPER">
91 <intent-filter>
92 <action android:name="android.service.wallpaper.WallpaperService" />
93 </intent-filter>
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -070094 <meta-data android:name="android.service.wallpaper" android:resource="@xml/galaxy" />
Romain Guye04d27e2009-08-21 16:30:52 -070095 </service>
96
Romain Guy59206df2009-09-09 13:07:58 -070097 <service
98 android:label="@string/wallpaper_fall"
99 android:name="com.android.wallpaper.fall.FallWallpaper"
100 android:permission="android.permission.BIND_WALLPAPER">
101 <intent-filter>
102 <action android:name="android.service.wallpaper.WallpaperService" />
103 </intent-filter>
104 <meta-data android:name="android.service.wallpaper" android:resource="@xml/fall" />
105 </service>
106
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -0700107 <activity
108 android:label="@string/clock_settings"
109 android:name="com.android.wallpaper.polarclock.PolarClockSettings"
Daniel Sandler8e906582009-10-21 10:28:50 -0400110 android:theme="@android:style/Theme"
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -0700111 android:exported="true">
112 </activity>
113
Romain Guye04d27e2009-08-21 16:30:52 -0700114 <service
Romain Guya7cbc262009-08-12 15:24:53 -0700115 android:label="@string/wallpaper_clock"
116 android:name="com.android.wallpaper.polarclock.PolarClockWallpaper"
117 android:permission="android.permission.BIND_WALLPAPER">
118 <intent-filter>
119 <action android:name="android.service.wallpaper.WallpaperService" />
120 </intent-filter>
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -0700121 <meta-data android:name="android.service.wallpaper" android:resource="@xml/polar_clock" />
Romain Guya7cbc262009-08-12 15:24:53 -0700122 </service>
123
Romain Guy524a6582009-11-05 13:10:02 -0800124 <service
125 android:label="@string/wallpaper_walkaround"
126 android:name="com.android.wallpaper.walkaround.WalkAroundWallpaper"
127 android:permission="android.permission.BIND_WALLPAPER">
128 <intent-filter>
129 <action android:name="android.service.wallpaper.WallpaperService" />
130 </intent-filter>
131 <meta-data android:name="android.service.wallpaper" android:resource="@xml/walkaround" />
132 </service>
133
Romain Guy55a384c2009-08-12 10:58:02 -0700134 </application>
135
136</manifest>