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