This seems to be problem in your case. The relative path of your activity in manifest is not correct:
<activity android:name="android.app.POMActivity"
replace this with :
<activity android:name=".POMActivity"
or
<activity android:name="com.irrlicht.example1.POMActivity"