Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 56702471 authored by Yifan Hong's avatar Yifan Hong
Browse files

fix fingerprint condition on sdk level logic

Change-Id: Icf83c62090943adb32972f08fa4335130ef68291
Fixes: 79950359
Test: fingerprint works
parent 88bac47c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1499,8 +1499,10 @@ public class FingerprintService extends SystemService implements IHwBinder.Death
            try {
                userId = getUserOrWorkProfileId(clientPackage, userId);
                if (userId != mCurrentUserId) {
                    int firstSdkInt = Build.VERSION.FIRST_SDK_INT;
                    if (firstSdkInt == 0) firstSdkInt = Build.VERSION.SDK_INT;
                    File baseDir;
                    if (Build.VERSION.FIRST_SDK_INT <= Build.VERSION_CODES.O_MR1) {
                    if (firstSdkInt <= Build.VERSION_CODES.O_MR1) {
                        baseDir = Environment.getUserSystemDirectory(userId);
                    } else {
                        baseDir = Environment.getDataVendorDeDirectory(userId);