diff options
author | 2024-11-13 17:48:11 +0000 | |
---|---|---|
committer | 2024-11-13 18:29:28 +0000 | |
commit | ba30d0f1d0e31f2945988b3148da27c8917f8cc5 (patch) | |
tree | 5541b2931b3a8f83b545091fb87189c3bd00641b | |
parent | 8bbc20f0d0b7838086606c3a1baf8e7edff91bce (diff) |
Add aconfig flag for handling bugreports on Wear.
This flag will be used to enable Shell to propagate bugreport results to WearServices.
Flag: EXEMPT creating aconfig flag
Bug: b/378060870
Change-Id: Ia9101ea247b62cb5874eb05b36c07feb882d5460
-rw-r--r-- | packages/Shell/aconfig/Android.bp | 13 | ||||
-rw-r--r-- | packages/Shell/aconfig/wear.aconfig | 9 |
2 files changed, 22 insertions, 0 deletions
diff --git a/packages/Shell/aconfig/Android.bp b/packages/Shell/aconfig/Android.bp new file mode 100644 index 000000000000..1d797b29c1a4 --- /dev/null +++ b/packages/Shell/aconfig/Android.bp @@ -0,0 +1,13 @@ +aconfig_declarations { + name: "wear_aconfig_declarations", + package: "com.android.shell.flags", + container: "system", + srcs: [ + "wear.aconfig", + ], +} + +java_aconfig_library { + name: "wear_aconfig_declarations_flags_java_lib", + aconfig_declarations: "wear_aconfig_declarations", +} diff --git a/packages/Shell/aconfig/wear.aconfig b/packages/Shell/aconfig/wear.aconfig new file mode 100644 index 000000000000..e07bd963a4aa --- /dev/null +++ b/packages/Shell/aconfig/wear.aconfig @@ -0,0 +1,9 @@ +package: "com.android.shell.flags" +container: "system" + +flag { + name: "handle_bugreports_for_wear" + namespace: "wear_services" + description: "This flag enables Shell to propagate bugreport results to WearServices." + bug: "378060870" +}
\ No newline at end of file |