1package: "com.example.android.aconfig.demo.flags"
2container: "system"
3
4flag {
5  name: "append_injected_content"
6  namespace: "aconfig_demo_ns"
7  description: "This flag controls injected content"
8  bug: "287644619"
9}
10
11flag {
12  name: "append_static_content"
13  namespace: "aconfig_demo_ns"
14  description: "This flag controls static content"
15  bug: "287644619"
16}
17
18flag {
19  name: "awesome_flag_1"
20  namespace: "test"
21  description: "A very awesome flag for testing purposes."
22  bug: "287644619"
23}
24
25flag {
26  name: "awesome_flag_2"
27  namespace: "test"
28  description: "Another awesome flag for testing purposes."
29  bug: "287644619"
30}
31
32flag {
33    name: "fifth_flag"
34    namespace: "configuration"
35    description: "The fifth flag, added right after the first three flags."
36    bug: "287644619"
37}
38
39flag {
40  name: "third_flag"
41  namespace: "configuration"
42  description: "This flag controls static content"
43  bug: "287644619"
44}
45
46flag {
47  name: "read_only_flag"
48  namespace: "core_experiments_team_internal"
49  description: "A read only flag for demo"
50  bug: "298754733"
51  is_fixed_read_only: true
52}
53
54flag {
55  name: "support_bugfix_templates_demo_flag"
56  namespace: "core_experiments_team_internal"
57  description: "A server-side flag for bugfix workflow demo"
58  bug: "311226181"
59  metadata {
60    purpose: PURPOSE_BUGFIX
61  }
62}
63
64flag {
65  name: "support_bugfix_templates_demo_flag_fixed_read_only"
66  namespace: "core_experiments_team_internal"
67  description: "A fixed-read-only flag for bugfix workflow demo"
68  bug: "311226181"
69  is_fixed_read_only: true
70  metadata {
71    purpose: PURPOSE_BUGFIX
72  }
73}
74
75flag {
76  name: "support_wear_bugfix_templates_demo_flag"
77  namespace: "wear_sysui"
78  description: "A server-side flag for wear bugfix workflow demo"
79  bug: "311226181"
80  metadata {
81    purpose: PURPOSE_BUGFIX
82  }
83}
84
85flag {
86  name: "support_wear_bugfix_templates_demo_flag_fixed_read_only"
87  namespace: "wear_sysui"
88  description: "A fixed-read-only flag for wear bugfix workflow demo"
89  bug: "311226181"
90  is_fixed_read_only: true
91  metadata {
92    purpose: PURPOSE_BUGFIX
93  }
94}
95
96flag {
97  name: "test_mendel_gantry_disintegration"
98  namespace: "gantry"
99  description: "A regular server-side flag moving on new path to gantry"
100  bug: "336346880"
101  is_fixed_read_only: false
102}
103
104flag {
105  name: "test_mendel_gantry_disintegration_again"
106  namespace: "core_experiments_team_internal"
107  description: "A regular server-side flag moving on new path to gantry"
108  bug: "336346880"
109  is_fixed_read_only: false
110}
111
112flag {
113  name: "yet_another_test_flag"
114  namespace: "gantry"
115  description: "Another regular server-side flag moving on new path to gantry"
116  bug: "336346880"
117  is_fixed_read_only: false
118}
119
120flag {
121  name: "yet_another_mendel_gantry_disintegration_flag"
122  namespace: "core_experiments_team_internal"
123  description: "Another regular server-side flag moving on new path to gantry"
124  bug: "336346880"
125  is_fixed_read_only: false
126}
127
128flag {
129  name: "yet_another_test_bugfix_flag"
130  namespace: "gantry"
131  description: "Another regular server-side flag moving on new path to gantry"
132  bug: "336346880"
133  is_fixed_read_only: false
134  metadata {
135    purpose: PURPOSE_BUGFIX
136  }
137}
138
139flag {
140  name: "yet_another_mendel_gantry_disintegration_bugfix_flag"
141  namespace: "core_experiments_team_internal"
142  description: "Another regular server-side flag moving on new path to gantry"
143  bug: "336346880"
144  is_fixed_read_only: false
145  metadata {
146    purpose: PURPOSE_BUGFIX
147  }
148}
149