salmon-wallpaper/AndroidManifest.xml
2013-02-10 15:24:11 +00:00

26 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fishrungames.mountainwallpaper" android:versionCode="1" android:versionName="1.0.0">
<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="MountainWallpaperService" 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>