diff options
| author | 2021-01-29 21:34:59 +0000 | |
|---|---|---|
| committer | 2021-02-02 13:08:21 -0800 | |
| commit | 5d23e8aab08b5cdea9b36477daf617cad9165612 (patch) | |
| tree | ebf1212a2623d19dc0861a7f890be36e307ae90a | |
| parent | e980914d426d6d1edcefda0025f445b58884ff17 (diff) | |
[WIFI] Fix typo in permission type for RESTART_WIFI_SUBSYSTEM
Bug: 175084231
Bug: 178125790
Test: atest android.net.wifi.cts.WifiManagerTest#testRestartWifiSubsystem
Test: atest android.permission2.cts.PermissionPolicyTest#platformPermissionPolicyIsUnaltered
Change-Id: Icb5db0a347c4714398fd4cbaef86bad2fd896358
| -rw-r--r-- | core/res/AndroidManifest.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index a668e8e6dd0f..0e80c7b19224 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -1673,7 +1673,7 @@ @SystemApi <p>Not for use by third-party applications. @hide --> <permission android:name="android.permission.RESTART_WIFI_SUBSYSTEM" - android:protectionLevel="signature|setup" /> + android:protectionLevel="signature|privileged" /> <!-- @SystemApi @hide Allows applications to toggle airplane mode. <p>Not for use by third-party or privileged applications. |