juiz/AndroidManifest.xml

21 lines
860 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.phoenixinquis.android.juiz"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="7" />
<uses-feature android:name="android.software.live_wallpaper"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<service android:name="JuizWallpaper" android:label="@string/app_name" android:permission="android.permission.BIND_WALLPAPER">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService"/>
</intent-filter>
<meta-data android:name="android.service.wallpaper" android:resource="@xml/juizwallpaper"/>
</service>
</application>
</manifest>