This reverts commit c0e8ffea41
.
Reason for revert: The detected build breakage was unrelated to the aconfig change. Details in b/297881670#comment11.
Change-Id: Ia32bc2e796ed3de7fa049c2c2db340f4325a2853
16 lines
359 B
Plaintext
16 lines
359 B
Plaintext
package {package_name};
|
|
|
|
/** @hide */
|
|
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 }}
|
|
}
|