Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@itoz
Created March 4, 2011 11:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itoz/854501 to your computer and use it in GitHub Desktop.
Save itoz/854501 to your computer and use it in GitHub Desktop.
[Android] Livewallpaper manifest.xml Template
<?xml version="1.0" encoding="utf-8"?>
<!--
/**
*============================================================
* copyright(c) 2011 www.romatica.com
* @author itoz
* 2011/03/08
*============================================================
* android wallpaper manifest.xml template.
* アンドロイドライブ壁紙用 マニフェストXML テンプレート
*/
-->
<manifest package="***.***.***.***"
android:versionCode="1"
android:versionName="1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
>
<service
android:permission="android.permission.BIND_WALLPAPER"
android:label="@string/app_name"
android:name=".********">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService"></action>
</intent-filter>
<meta-data android:name="android.service.wallpaper" android:resource="@xml/wallpaper"></meta-data>
</service>
<activity
android:name=".********"
android:label="@string/app_name"
screenOrientation="landscape">
<intent-filter>
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="7" />
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment