Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    package="com.tmg.shivawallpaper"
  4.    android:versionCode="1"
  5.    android:versionName="1.0" >
  6.  
  7.     <uses-sdk android:minSdkVersion="8" />
  8.  
  9.     <application
  10.        android:icon="@drawable/icon"
  11.        android:label="@string/app_name" >
  12.         <service
  13.            android:name=".shivalive"
  14.            android:label="@string/lesson_three_wallpaper_1"
  15.            android:permission="android.permission.BIND_WALLPAPER" >
  16.             <intent-filter>
  17.                 <action android:name="android.service.wallpaper.WallpaperService" />
  18.             </intent-filter>
  19.  
  20.             <meta-data
  21.                android:name="android.service.wallpaper"
  22.                android:resource="@xml/wallpaper" />
  23.         </service>
  24.     </application>
  25.  
  26.     <supports-screens
  27.        android:anyDensity="true"
  28.        android:largeScreens="true"
  29.        android:normalScreens="true"
  30.        android:smallScreens="true" />
  31.  
  32. </manifest>