With the project I'm working with, using an older version of slick-ae.jar works fine. However, with the issue regarding
Animation, and the feeling that other issues are bound to come up, there is a need to update my jar with the new version under development in mercurial.
After compiling the new slick-ae.jar from the development build (with no errors) and replacing the old jars in my projects, this is the new error I have when trying to run on Android in logcat:
Code:
03-23 13:35:49.893: E/AndroidRuntime(26402): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{testing.test/testing.test.ZzTestAndroidActivity}: java.lang.ClassNotFoundException: testing.test.ZzTestAndroidActivity in loader dalvik.system.PathClassLoader[/data/app/testing.test-1.apk]
Through Google, I've found some entries at StackOverflow that mention the fix involves the AndroidManifest.xml. I haven't found anything in my manifest that would cause this issue. Here it is:
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="testing.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<supports-screens
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"
android:resizeable="false"
/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:debuggable="true">
<activity
android:name=".ZzTestAndroidActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
In the build path, my gen and src folders are included as well.
Has anyone run into this issue before and do you have a solution for this?