<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
	android:versionCode="1" android:versionName="1.0.0" package="fishrungames.wallpapertemplate">
	<application android:label="@string/app_name" android:icon="@drawable/icon" >
		<activity android:launchMode="standard" android:name="Prefs">
			<intent-filter>
				<category android:name="android.intent.category.PREFERENCE"></category>
				<action android:name="android.intent.action.MAIN"></action>
			</intent-filter>
		</activity>

		<service android:name="MainWallpaperService" android:enabled="true"
			android:icon="@drawable/icon" android:label="@string/app_name"
			android:permission="android.permission.BIND_WALLPAPER">
			<intent-filter android:priority="1">
				<action android:name="android.service.wallpaper.WallpaperService" />
			</intent-filter>
			<meta-data android:name="android.service.wallpaper"
				android:resource="@xml/wallpaper" />
		</service>
	</application>
	<uses-sdk android:minSdkVersion="8" />
	<uses-feature android:glEsVersion="0x00020000"/>

</manifest>