Update ENFORCE_INTENTS_TO_MATCH_INTENT_FILTERS to target T

The CL was submitted before T exists. Update the target SDK to T.

Bug: 161252188
Test: atest CtsContentTestCases:PackageManagerTest
Change-Id: I7fc1d9c3ba14530cf1175612ee81707667705b5a
This commit is contained in:
John Wu
2021-12-15 15:38:05 -08:00
parent d0f4400f2e
commit 406fafdd7a

View File

@@ -34,7 +34,7 @@ import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.UserIdInt;
import android.compat.annotation.ChangeId;
import android.compat.annotation.EnabledAfter;
import android.compat.annotation.EnabledSince;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ActivityInfo;
@@ -141,7 +141,7 @@ public class PackageManagerServiceUtils {
* allow 3P apps to trigger internal-only functionality.
*/
@ChangeId
@EnabledAfter(targetSdkVersion = Build.VERSION_CODES.S)
@EnabledSince(targetSdkVersion = Build.VERSION_CODES.TIRAMISU)
private static final long ENFORCE_INTENTS_TO_MATCH_INTENT_FILTERS = 161252188;
/**