Use ISessionCallback#onSessionClosed

Bug: 181984005
Test: atest CtsBiometricsTestCase
Change-Id: I08e43be507a3219859ac2c97544577f839c70936
This commit is contained in:
Ilya Matyukhin
2021-03-22 13:29:55 -07:00
parent 9997912ba9
commit 9bd1692117
2 changed files with 13 additions and 0 deletions

View File

@@ -424,6 +424,12 @@ public class Sensor {
});
}
@Override
public void onSessionClosed() {
mHandler.post(() -> {
// TODO: implement this.
});
}
}
Sensor(@NonNull String tag, @NonNull FaceProvider provider, @NonNull Context context,

View File

@@ -403,6 +403,13 @@ class Sensor {
invalidationClient.onAuthenticatorIdInvalidated(newAuthenticatorId);
});
}
@Override
public void onSessionClosed() {
mHandler.post(() -> {
// TODO: implement this.
});
}
}
Sensor(@NonNull String tag, @NonNull FingerprintProvider provider, @NonNull Context context,