2014-11-10 11 views
16

Jedes Mal, wenn ich meine App auf dem Genymotion (V2.3) Emulator (jede Android-Version) laufen, es läuft in einer Endlosschleife mit diesem Fehler Drucken in der logcat kontinuierlich:Android Genymotion VM logcat läuft in Endlosschleife

11-10 04:33:55.542: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:55.902: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:55.962: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.014: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.066: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.114: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.166: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.210: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.266: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.314: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.362: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.410: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.470: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.518: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.562: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.614: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.662: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.714: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 
11-10 04:33:56.750: E/eglCodecCommon(2775): **** ERROR unknown type 0x0 (glSizeof,73) 

Meine App funktionieren gut, aber ich bin nicht imstande, alles in logcat zu drucken oder auch etwas anderes in ihm im Fall von Ausnahmen lesen. Ich habe keine Ahnung, worum es geht oder was es verursacht. Ich habe versucht, online ohne Glück zu finden.

UPDATE: Ich erkannte, dass dies geschieht, wenn ich Werbebanner zeigen (von Google AdMob-SDK oder Leadbolt sdk) in meiner Tätigkeit.

Irgendwelche Hinweise oder Vorschläge?

+0

Haben Sie dieses Problem lösen? –

+0

Nein, habe ich nicht! Es ist sehr nervig. – rgamber

Antwort

7

Ich denke, dass Ihre gnymotion Emulator hat keinen Zugriff auf Host-GPU.Seit Ihrer Seite hat einige Grafiken Open GL wird nicht funktionieren.

Sie können dies durch

Zugabe android:hardwareAccelerated="false" in AndroidManifest.xml lösen
+29

Nicht sicher, Hardwarebeschleunigung über Ihre gesamte App zu deaktivieren, nur um eine gennymmotion Logcat-Nachricht zu vermeiden, ist eine gute Idee –

+0

Es wird eine Option geben, um GPU-Zugriff bereitzustellen –

0

Das OK ist. Ignoriere diese Nachrichten einfach.

Die Ursache wird dadurch verursacht, dass Sie in Ihrem Genymotion die Option "USE GPU Host" oder ähnliche Optionen aktiviert haben. Wenn diese Optionen deaktiviert sind, ist der Fehler verschwunden, aber die Leistung ist nicht gut. (Oder noch schlimmer)

beziehen sich auf: How to solve webview error

Verwandte Themen