diff options
| author | 2024-01-04 15:11:46 +0000 | |
|---|---|---|
| committer | 2024-01-04 15:11:46 +0000 | |
| commit | 9fdbf8e5ac2f71b19748e434e7e51266a4b9346a (patch) | |
| tree | ece1854f97e790d7560027079ccccef8280dffbc | |
| parent | 553fa443ec48601eb1225150493a8025c35dd673 (diff) | |
| parent | bc293813855caa92aa4775b0ac3efabf31d30861 (diff) | |
Merge "Add feature flag for content URI permission APIs" into main
| -rw-r--r-- | core/java/android/security/responsible_apis_flags.aconfig | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/core/java/android/security/responsible_apis_flags.aconfig b/core/java/android/security/responsible_apis_flags.aconfig new file mode 100644 index 000000000000..fe6c4a4321e9 --- /dev/null +++ b/core/java/android/security/responsible_apis_flags.aconfig @@ -0,0 +1,29 @@ +package: "android.security" + +flag { + name: "extend_ecm_to_all_settings" + namespace: "responsible_apis" + description: "Allow all app settings to be restrictable via configuration" + bug: "297372999" +} + +flag { + name: "asm_restrictions_enabled" + namespace: "responsible_apis" + description: "Enables ASM restrictions for activity starts and finishes" + bug: "230590090" +} + +flag { + name: "asm_toasts_enabled" + namespace: "responsible_apis" + description: "Enables toasts when ASM restrictions are triggered" + bug: "230590090" +} + +flag { + name: "content_uri_permission_apis" + namespace: "responsible_apis" + description: "Enables the content URI permission APIs" + bug: "293467489" +} |