diff --git a/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt b/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt index 31495d618c..af8be11606 100644 --- a/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt +++ b/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt @@ -57,6 +57,19 @@ internal value class Symbol(val name: String) { override fun toString(): String = name.toString() } +/** + * Class representing the fully qualified name of an aconfig flag. + * + * This includes both the flag's package and name, separated by a dot, e.g.: + *
+ * com.android.aconfig.test.disabled_ro + *+ */ +@JvmInline +internal value class Flag(val name: String) { + override fun toString(): String = name.toString() +} + class CheckCommand : CliktCommand() { override fun run() { println("hello world")