Home | History | Annotate | Download | only in NoiseField
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3       package="com.android.noisefield"
      4       android:versionCode="1"
      5       android:versionName="1.0">
      6     <uses-sdk android:minSdkVersion="13" />
      7     
      8     <uses-feature android:name="android.software.live_wallpaper" />
      9   
     10 
     11     <application android:icon="@drawable/icon" android:label="@string/wallpaper_label">
     12 		<service
     13                 android:name=".NoiseFieldWallpaper"
     14                 android:label="@string/wallpaper_label"
     15                 android:launchMode="singleInstance"
     16                 android:permission="android.permission.BIND_WALLPAPER">
     17             <intent-filter>
     18                 <action android:name="android.service.wallpaper.WallpaperService" />
     19             </intent-filter>
     20             <meta-data android:name="android.service.wallpaper" android:resource="@xml/wallpaper" />
     21         </service>
     22     </application>
     23 </manifest>