Catching all Exceptions when calling through to RemoteViewsFactory

Change-Id: Ib20c880bb7626565541ab4697317fcfaa2e6b5b7
This commit is contained in:
Adam Cohen
2011-03-16 16:33:53 -07:00
parent 7ddd62b5be
commit c2be22cf20

View File

@@ -135,7 +135,7 @@ class AppWidgetService extends IAppWidgetService.Stub
IRemoteViewsAdapterConnection.Stub.asInterface(mConnectionCb);
try {
cb.onServiceConnected(service);
} catch (RemoteException e) {
} catch (Exception e) {
e.printStackTrace();
}
}
@@ -147,7 +147,7 @@ class AppWidgetService extends IAppWidgetService.Stub
IRemoteViewsAdapterConnection.Stub.asInterface(mConnectionCb);
try {
cb.onServiceDisconnected();
} catch (RemoteException e) {
} catch (Exception e) {
e.printStackTrace();
}
}
@@ -541,7 +541,7 @@ class AppWidgetService extends IAppWidgetService.Stub
IRemoteViewsFactory.Stub.asInterface(service);
try {
cb.onDestroy(intent);
} catch (RemoteException e) {
} catch (Exception e) {
e.printStackTrace();
}
mContext.unbindService(this);