I constantly get this strange error message every time I test my application on an Android emulator. It appears every few seconds without stopping and constantly interrupts me. This is very annoying, and I have no idea how to get rid of him or what he even says. I think it is in German, but I tried to translate it using Google and had no meaning in the body, only a name that hardly made sense.
Does anyone know how to solve this problem?
Image link: http://oi54.tinypic.com/v4bcqv.jpg
I am a new user, so I can not send images
* EDIT: I tried to remove all applications created from the emulator. The message still exists. The following is the manifest file (which, according to someone, might be causing the problem): *
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true" android:enabled="true">
<activity android:name=".QuizSplashActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="QuizGameActivity"></activity>
<activity android:name="QuizHelpActivity"></activity>
<activity android:name="QuizMenuActivity"></activity>
<activity android:name="QuizScoresActivity"></activity>
<activity android:name="QuizSettingsActivity"></activity>
</application>
PROBLEM FIXED: apparently, all I had to do was replace the AVD with a new one
Ryan source
share