Merge "Check network slicing declaration for network request"

This commit is contained in:
Yuyang Huang
2023-03-01 02:13:31 +00:00
committed by Gerrit Code Review
19 changed files with 1078 additions and 0 deletions

View File

@@ -62,6 +62,17 @@ public final class ConnectivityCompatChanges {
// This was a platform change ID with value 191844585L before T
public static final long RUN_NATIVE_NSD_ONLY_IF_LEGACY_APPS_T_AND_LATER = 235355681L;
/**
* The self certified capabilities check should be enabled after android 13.
*
* <p> See {@link android.net.NetworkCapabilities} for more details.
*
* @hide
*/
@ChangeId
@EnabledAfter(targetSdkVersion = Build.VERSION_CODES.TIRAMISU)
public static final long ENABLE_SELF_CERTIFIED_CAPABILITIES_DECLARATION = 266524688;
private ConnectivityCompatChanges() {
}
}