The game SHOULD play fine but... I cant open it because it doesnt add it to the icons on my installed apps list. when using an app to view all apps installed it doesnt detect it... but it is installed...
anyone know?
Heres a link to the app on the android market:
here is the manifest before running jarsigner etc:
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="processing.android.test.e1v1_0" android:versionCode="1" android:versionName="1.0">
<uses-sdk android:minSdkVersion="7"/>
<application android:label="E1V1_0" android:icon="@drawable/icon" android:debuggable="true">
<activity android:name=".E1V1_0">
<activity android:name=".E1V1_0
" android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</activity>
</application>
</manifest>
1