WallpaperService not found

Wefdinaini

New Member
Licensed User
Longtime User
First of all great IDE Erel!

I'm a .NET developer myself and this is the best tool i've found for creating Android-apps! After tinkering with the trial-version, i didn't think twice before buying it especially at the low price of 49 euros.

But still a :sign0104: at programming apps, because i can't get the livewallpaper example to work. I keep getting "WallpaperService not found".

I tried changing the manifest-xml file after searching on this forum, but it still won't work.

My manifest.xml now contains:

B4X:
<service 
        android:label="BBLiveWallPaper" 
        android:name="wallpaperservice"
        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/wallpaper" />
</service>

Can anybody help this noob? :)
 
Last edited:
Top