xref: /aosp_15_r20/external/bazelbuild-rules_android/src/tools/ak/res/proto/res_meta.proto (revision 9e965d6fece27a77de5377433c2f7e6999b8cc0b)
1syntax = "proto2";
2
3package tools.android.ak.res.proto;
4
5// Describes a stylable view.
6// Corresponds to R.styleable
7// Next ID: 5
8message StyleableMetaData {
9  // The name of the style - eg AbsListView or PieChart
10  optional string name = 1;
11
12  // pkg:attr_name form.
13  repeated string fqn_attributes = 2;
14}
15