khnguyendinh / libgdx-backend-android-livewallpaper

Automatically exported from code.google.com/p/libgdx-backend-android-livewallpaper
0 stars 0 forks source link

Examples not working #8

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I just set up a simple live wallpaper:

it said: 

08-08 22:10:18.205: E/AndroidRuntime(7845): java.lang.RuntimeException: Unable 
to instantiate service test.gdx.lwp.WPService: 
java.lang.ClassNotFoundException: test.gdx.lwp.WPService

again and again. 

if I create a new project, again. the samples not works on android.
my manifest is good

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"  android:largeHeap="true">

        <service android:label="@string/app_name" android:name=".WPService" 
                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>

    </application>

Original issue reported on code.google.com by lostinwa...@gmail.com on 8 Aug 2012 at 8:13