My application use standard search mechanism (using searchable interface) and works well in all versions>2.1
In <3 I use Search Dialog and in >=3 I use SearchWidget and all works correctly. The problem is in 2.1 where I get CrossProcessCursorException
from my ContentProvider
:
java.lang.UnsupportedOperationException: Only CrossProcessCursor cursors are supported across process for now
It seems that Search dialog is run in another process in 2.1?
There's any way to workaround that?
Or I'm forced to implement CrossProcessCursor in my custom extended CusorWrapper
?