A bit convoluted situation -
- A Service is packaged as a separate APK with nothing other than it in the manifest;
- The Service accepts incoming requests and handles them with MessageHandler;
In one case, a handler spawns an AsyncTask like this:
private class XHandler implements MessageHandler { @Override public void handleMessage(Message incoming) { Bundle b = incoming.getData(); ... new XAsyncTask(...).execute(); } }A textbook simple async task reports progress
- ... in ICS, but not in Gingerbread.
What is it - a bug?
AsyncTask documentation says "onProgressUpdate(Progress...), invoked on the UI thread after a call to publishProgress(Progress...)." However, there's no such thing as UI thread for standalone services, is there?
Documentation on services says "A service runs in the main thread of the application that hosts it, b default" - does this constitute UI thread?
UPDATE 2012/07/10: Changing android:targetSdkVersion="10" to android:targetSdkVersion="15" causes the same effect when the app is run on ICS. The only working combination so far is targetSdkVersion="10" running on API 15.
