Hello, I have a problem with the AndEngine engine, when I launch the application it immediately gives an error
- oneToday is a day off from psychics ... = ( - Gorets
- Did you try to reboot? - ReinRaus
- It's not about the code. I tried with a few examples from the Internet anyway, it immediately crashes when it starts up - qwerty74
- and in the console not what logs does not fall? - Gorets
- FATAL EXCEPTION: main and 20 more errors - qwerty74
|
2 answers
How is your activation manifest indicated? must be of type
<activity android:name=".MyActivity">
when change rebuild the project and run
I recommend using pastebin.com services to display the log
- The activity is indicated like this
<activity android:name=".QwActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
- qwerty74
|
Show the full code of your manifest, or see for yourself that it is correctly specified.
package="com.my.qw"
Check that you have created the file in the appropriate package, which is called it correctly.
|