Note that there are some explanatory texts on larger screens.

plurals
  1. POUncaught exception thrown by finalizer: Google API bug Or Samsung kernel bug?
    text
    copied!<p>I keep getting this error when launch my app on my galaxy Tab 2 (Samsung). The app i'm developing is quite complicated and it is very hard to track down where this error originates from. So I started to strip down piece by piece my app and I ended up with just a mapview application as you can find <a href="https://developers.google.com/maps/documentation/android/hello-mapview" rel="nofollow">here</a></p> <p>After stripping I ended up with an app that is just a mapview without an overlayItem ! So following the tutorial until Part 1 point 9.</p> <p>Here's the MapView Activity:</p> <pre><code>package com.****.googlemapstutorial; import com.google.android.maps.MapActivity; import com.google.android.maps.MapView; import android.os.Bundle; import android.view.Menu; public class MainActivity extends MapActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); MapView mapView = (MapView) findViewById(R.id.mapview); mapView.setBuiltInZoomControls(true); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.activity_main, menu); return true; } @Override protected boolean isRouteDisplayed() { return false; } } </code></pre> <p>I am truly stomped!</p> <p>anyone any suggestions ?</p> <pre><code>The error: 10-28 21:09:22.872: E/System(16840): Uncaught exception thrown by finalizer 10-28 21:09:22.872: E/System(16840): java.lang.IllegalStateException: Binder has been finalized! 10-28 21:09:22.872: E/System(16840): at android.os.BinderProxy.transact(Native Method) 10-28 21:09:22.872: E/System(16840): at android.database.BulkCursorProxy.close(BulkCursorNative.java:288) 10-28 21:09:22.872: E/System(16840): at android.database.BulkCursorToCursorAdaptor.close(BulkCursorToCursorAdaptor.java:133) 10-28 21:09:22.872: E/System(16840): at android.database.CursorWrapper.close(CursorWrapper.java:49) 10-28 21:09:22.872: E/System(16840): at android.content.ContentResolver$CursorWrapperInner.close(ContentResolver.java:1591) 10-28 21:09:22.872: E/System(16840): at android.content.ContentResolver$CursorWrapperInner.finalize(ContentResolver.java:1604) 10-28 21:09:22.872: E/System(16840): at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:182) 10-28 21:09:22.872: E/System(16840): at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:168) 10-28 21:09:22.872: E/System(16840): at java.lang.Thread.run(Thread.java:856) </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload