This reverts commit 379e09d157
.
Reason for revert: Seems to have broken the build. Reverting while investigating.
Change-Id: I37c9a065853ef07b1f1c18355205a2f49dd816c4
15 lines
346 B
Plaintext
15 lines
346 B
Plaintext
package {package_name};
|
|
|
|
public interface FeatureFlags \{
|
|
{{ for item in class_elements}}
|
|
{{ -if not item.is_read_write }}
|
|
{{ -if item.default_value }}
|
|
@com.android.aconfig.annotations.AssumeTrueForR8
|
|
{{ -else }}
|
|
@com.android.aconfig.annotations.AssumeFalseForR8
|
|
{{ -endif- }}
|
|
{{ endif }}
|
|
boolean {item.method_name}();
|
|
{{ endfor }}
|
|
}
|