1package: "com.android.aconfig.test" 2container: "system" 3 4# This flag's final value is calculated from: 5# - test.aconfig: DISABLED + READ_WRITE (default) 6# - first.values: DISABLED + READ_WRITE 7# - second.values: ENABLED + READ_ONLY 8flag { 9 name: "enabled_ro" 10 namespace: "aconfig_test" 11 description: "This flag is ENABLED + READ_ONLY" 12 bug: "abc" 13 metadata { 14 purpose: PURPOSE_BUGFIX 15 } 16} 17 18# This flag's final value is calculated from: 19# - test.aconfig: DISABLED + READ_WRITE (default) 20# - first.values: ENABLED + READ_WRITE 21flag { 22 name: "enabled_rw" 23 namespace: "aconfig_test" 24 description: "This flag is ENABLED + READ_WRITE" 25 # for bug fields, the empty string is a discouraged but valid value 26 bug: "" 27} 28 29# This flag's final value is calculated from: 30# - test.aconfig: DISABLED + READ_WRITE (default) 31# - first.values: DISABLED + READ_ONLY 32flag { 33 name: "disabled_ro" 34 namespace: "aconfig_test" 35 description: "This flag is DISABLED + READ_ONLY" 36 bug: "123" 37} 38 39# This flag's final value is calculated from: 40# - test.aconfig: DISABLED + READ_WRITE (default) 41flag { 42 name: "disabled_rw" 43 namespace: "aconfig_test" 44 description: "This flag is DISABLED + READ_WRITE" 45 bug: "456" 46} 47 48# This flag's final value calculated from: 49# - test.aconfig: DISABLED + READ_ONLY 50# - first.values: ENABLED + READ_ONLY 51flag { 52 name: "enabled_fixed_ro" 53 namespace: "aconfig_test" 54 description: "This flag is fixed READ_ONLY + ENABLED" 55 bug: "" 56 is_fixed_read_only: true 57} 58 59flag { 60 name: "disabled_rw_in_other_namespace" 61 namespace: "other_namespace" 62 description: "This flag is DISABLED + READ_WRITE, and is defined in another namespace" 63 bug: "999" 64} 65 66flag { 67 name: "enabled_ro_exported" 68 namespace: "aconfig_test" 69 description: "This flag is ENABLED + READ_ONLY and exported" 70 bug: "111" 71 is_exported: true 72} 73 74flag { 75 name: "disabled_rw_exported" 76 namespace: "aconfig_test" 77 description: "This flag is DISABLED + READ_WRITE and exported" 78 bug: "111" 79 is_exported: true 80} 81 82flag { 83 name: "enabled_fixed_ro_exported" 84 namespace: "aconfig_test" 85 description: "This flag is fixed ENABLED + READ_ONLY and exported" 86 bug: "111" 87 is_fixed_read_only: true 88 is_exported: true 89}