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

Commit 27224f9c authored by Mark White's avatar Mark White Committed by Android (Google) Code Review
Browse files

Merge "Apps sharing system uid should target platform sdk 10000 for non-final builds" into main

parents 7329e2c0 e4961238
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;
    }