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

Commit e4961238 authored by Mark White's avatar Mark White
Browse files

Apps sharing system uid should target platform sdk 10000 for non-final builds

Change-Id: I79b6477d5f71b1f18c5dabf1aae6a44b5d86ad68
Bug: 380912021
Test: presubmit
Flag: EXEMPT bugfix
parent 0959be77
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -523,7 +523,7 @@ public class PlatformCompat extends IPlatformCompat.Stub {
        // older target sdk to impact all system uid apps
        if (Flags.systemUidTargetSystemSdk() && !mIsWear &&
                uid == Process.SYSTEM_UID && appInfo != null) {
            appInfo.targetSdkVersion = Build.VERSION.SDK_INT;
            appInfo.targetSdkVersion = mBuildClassifier.platformTargetSdk();
        }
        return appInfo;
    }