Advertisement
Guest User

Untitled

a guest
Aug 18th, 2012
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.96 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2.       package="org.anddev.wallpaper.live.cigarette"
  3.       android:versionCode="4"
  4.       android:versionName="1.0.3">
  5.      
  6.     <uses-sdk android:minSdkVersion="7" />
  7.    
  8.     <uses-feature android:name="android.software.live_wallpaper" />
  9.     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  10.    
  11.     <application android:icon="@drawable/icon" android:label="@string/app_name">
  12.         <service
  13.             android:name="LiveWallpaperService"
  14.             android:enabled="true"
  15.             android:icon="@drawable/icon"
  16.             android:label="@string/service_name"
  17.             android:permission="android.permission.BIND_WALLPAPER">
  18.             <intent-filter android:priority="1" >
  19.                 <action android:name="android.service.wallpaper.WallpaperService" />
  20.             </intent-filter>
  21.             <meta-data
  22.                 android:name="android.service.wallpaper"
  23.                 android:resource="@xml/wallpaper" />
  24.         </service>
  25.     </application>
  26.  
  27. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement