• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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