• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.musicvis">
23
24    <application
25        android:label="@string/wallpapers"
26        android:icon="@drawable/ic_launcher_wallpaper">
27
28        <!-- this wallpaper isn't very good, so disable it (using android:enabled=false doesn't work here for some reason)
29        <service
30            android:label="@string/wallpaper_vis1"
31            android:name=".vis1.Visualization1"
32            android:permission="android.permission.BIND_WALLPAPER">
33            <intent-filter>
34                <action android:name="android.service.wallpaper.WallpaperService" />
35            </intent-filter>
36            <meta-data android:name="android.service.wallpaper" android:resource="@xml/cube" />
37        </service>
38        -->
39
40        <service
41            android:label="@string/wallpaper_vis2"
42            android:name=".vis2.Visualization2"
43            android:permission="android.permission.BIND_WALLPAPER">
44            <intent-filter>
45                <action android:name="android.service.wallpaper.WallpaperService" />
46            </intent-filter>
47            <meta-data android:name="android.service.wallpaper" android:resource="@xml/vis2" />
48        </service>
49
50        <service
51            android:label="@string/wallpaper_vis3"
52            android:name=".vis3.Visualization3"
53            android:permission="android.permission.BIND_WALLPAPER">
54            <intent-filter>
55                <action android:name="android.service.wallpaper.WallpaperService" />
56            </intent-filter>
57            <meta-data android:name="android.service.wallpaper" android:resource="@xml/vis3" />
58        </service>
59
60        <service
61            android:label="@string/wallpaper_vis4"
62            android:name=".vis4.Visualization4"
63            android:permission="android.permission.BIND_WALLPAPER">
64            <intent-filter>
65                <action android:name="android.service.wallpaper.WallpaperService" />
66            </intent-filter>
67            <meta-data android:name="android.service.wallpaper" android:resource="@xml/vis4" />
68        </service>
69
70        <service
71            android:label="@string/wallpaper_vis5"
72            android:name=".vis5.Visualization5"
73            android:permission="android.permission.BIND_WALLPAPER">
74            <intent-filter>
75                <action android:name="android.service.wallpaper.WallpaperService" />
76            </intent-filter>
77            <meta-data android:name="android.service.wallpaper" android:resource="@xml/vis5" />
78        </service>
79
80
81    </application>
82
83</manifest>
84