Merge "Fix NPE in AR hardware binding sequence. b/22772433" into mnc-dr-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
34c0882898
@@ -123,6 +123,12 @@ public class ActivityRecognitionProxy {
|
|||||||
Log.e(TAG, "No watcher found on connection.");
|
Log.e(TAG, "No watcher found on connection.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (mInstance == null) {
|
||||||
|
// to keep backwards compatibility do not update the watcher when there is no
|
||||||
|
// instance available, or it will cause an NPE
|
||||||
|
Log.d(TAG, "AR HW instance not available, binding will be a no-op.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
watcher.onInstanceChanged(mInstance);
|
watcher.onInstanceChanged(mInstance);
|
||||||
} catch (RemoteException e) {
|
} catch (RemoteException e) {
|
||||||
|
|||||||
Reference in New Issue
Block a user