blob: 7055f9c6b1b9d7003aed9be7d0e2e1c5fcb8d3a8 [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
67 android:label="@string/wallpaper_grass"
68 android:name="com.android.wallpaper.grass.GrassWallpaper"
69 android:permission="android.permission.BIND_WALLPAPER">
70 <intent-filter>
71 <action android:name="android.service.wallpaper.WallpaperService" />
72 </intent-filter>
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -070073 <meta-data android:name="android.service.wallpaper" android:resource="@xml/grass" />
Romain Guy55a384c2009-08-12 10:58:02 -070074 </service>
75
Romain Guya7cbc262009-08-12 15:24:53 -070076 <service
Romain Guye04d27e2009-08-21 16:30:52 -070077 android:label="@string/wallpaper_galaxy"
78 android:name="com.android.wallpaper.galaxy.GalaxyWallpaper"
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/galaxy" />
Romain Guye04d27e2009-08-21 16:30:52 -070084 </service>
85
Romain Guy59206df2009-09-09 13:07:58 -070086 <service
87 android:label="@string/wallpaper_fall"
88 android:name="com.android.wallpaper.fall.FallWallpaper"
89 android:permission="android.permission.BIND_WALLPAPER">
90 <intent-filter>
91 <action android:name="android.service.wallpaper.WallpaperService" />
92 </intent-filter>
93 <meta-data android:name="android.service.wallpaper" android:resource="@xml/fall" />
94 </service>
95
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -070096 <activity
97 android:label="@string/clock_settings"
98 android:name="com.android.wallpaper.polarclock.PolarClockSettings"
Daniel Sandler8e906582009-10-21 10:28:50 -040099 android:theme="@android:style/Theme"
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -0700100 android:exported="true">
101 </activity>
102
Romain Guye04d27e2009-08-21 16:30:52 -0700103 <service
Romain Guya7cbc262009-08-12 15:24:53 -0700104 android:label="@string/wallpaper_clock"
105 android:name="com.android.wallpaper.polarclock.PolarClockWallpaper"
106 android:permission="android.permission.BIND_WALLPAPER">
107 <intent-filter>
108 <action android:name="android.service.wallpaper.WallpaperService" />
109 </intent-filter>
Dianne Hackborn0e1eb1a2009-09-07 21:48:40 -0700110 <meta-data android:name="android.service.wallpaper" android:resource="@xml/polar_clock" />
Romain Guya7cbc262009-08-12 15:24:53 -0700111 </service>
112
Romain Guy55a384c2009-08-12 10:58:02 -0700113 </application>
114
115</manifest>