Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>figured it out after tinkering around with the manifest file. Added an intent filter 'category.PREFERENCE' &amp; moved BIND_WALLPAPER permission inside the service tag. here is the new manifest file: </p> <pre><code>&lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.RrD" android:versionCode="1" android:versionName="1.0"&gt; &lt;uses-sdk android:minSdkVersion="8" /&gt; &lt;uses-feature android:name="android.software.live_wallpaper" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.BIND_WALLPAPER" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;application android:icon="@drawable/icon" android:label="@string/app_name" &gt; &lt;service android:name=".LiveWallpaper" android:label="@string/app_name" android:icon="@drawable/icon" android:permission="android.permission.BIND_WALLPAPER"&gt; &lt;intent-filter&gt; &lt;action android:name="android.service.wallpaper.WallpaperService" /&gt; &lt;/intent-filter&gt; &lt;meta-data android:name="android.service.wallpaper" android:resource="@xml/livewallpaper" /&gt; &lt;/service&gt; &lt;activity android:label="PAM_Prefs" android:name=".PAM_Prefs" android:exported="true" android:icon="@drawable/icon"&gt; &lt;intent-filter&gt; &lt;category android:name="android.intent.category.PREFERENCE" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload