@ -0,0 +1,949 @@ | |||
{ | |||
"formatVersion": 1, | |||
"database": { | |||
"version": 14, | |||
"identityHash": "74d6e4343efd13e0b519ff94758dc902", | |||
"entities": [ | |||
{ | |||
"tableName": "identity", | |||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `name` TEXT NOT NULL, `email` TEXT NOT NULL, `replyto` TEXT, `account` INTEGER NOT NULL, `host` TEXT NOT NULL, `port` INTEGER NOT NULL, `starttls` INTEGER NOT NULL, `user` TEXT NOT NULL, `password` TEXT NOT NULL, `auth_type` INTEGER NOT NULL, `primary` INTEGER NOT NULL, `synchronize` INTEGER NOT NULL, `store_sent` INTEGER NOT NULL, `state` TEXT, `error` TEXT, FOREIGN KEY(`account`) REFERENCES `account`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )", | |||
"fields": [ | |||
{ | |||
"fieldPath": "id", | |||
"columnName": "id", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "name", | |||
"columnName": "name", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "email", | |||
"columnName": "email", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "replyto", | |||
"columnName": "replyto", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "account", | |||
"columnName": "account", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "host", | |||
"columnName": "host", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "port", | |||
"columnName": "port", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "starttls", | |||
"columnName": "starttls", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "user", | |||
"columnName": "user", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "password", | |||
"columnName": "password", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "auth_type", | |||
"columnName": "auth_type", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "primary", | |||
"columnName": "primary", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "synchronize", | |||
"columnName": "synchronize", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "store_sent", | |||
"columnName": "store_sent", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "state", | |||
"columnName": "state", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "error", | |||
"columnName": "error", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
} | |||
], | |||
"primaryKey": { | |||
"columnNames": [ | |||
"id" | |||
], | |||
"autoGenerate": true | |||
}, | |||
"indices": [ | |||
{ | |||
"name": "index_identity_account", | |||
"unique": false, | |||
"columnNames": [ | |||
"account" | |||
], | |||
"createSql": "CREATE INDEX `index_identity_account` ON `${TABLE_NAME}` (`account`)" | |||
} | |||
], | |||
"foreignKeys": [ | |||
{ | |||
"table": "account", | |||
"onDelete": "CASCADE", | |||
"onUpdate": "NO ACTION", | |||
"columns": [ | |||
"account" | |||
], | |||
"referencedColumns": [ | |||
"id" | |||
] | |||
} | |||
] | |||
}, | |||
{ | |||
"tableName": "account", | |||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `name` TEXT, `signature` TEXT, `host` TEXT NOT NULL, `port` INTEGER NOT NULL, `user` TEXT NOT NULL, `password` TEXT NOT NULL, `auth_type` INTEGER NOT NULL, `primary` INTEGER NOT NULL, `synchronize` INTEGER NOT NULL, `color` INTEGER, `store_sent` INTEGER NOT NULL, `poll_interval` INTEGER NOT NULL, `seen_until` INTEGER, `state` TEXT, `error` TEXT)", | |||
"fields": [ | |||
{ | |||
"fieldPath": "id", | |||
"columnName": "id", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "name", | |||
"columnName": "name", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "signature", | |||
"columnName": "signature", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "host", | |||
"columnName": "host", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "port", | |||
"columnName": "port", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "user", | |||
"columnName": "user", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "password", | |||
"columnName": "password", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "auth_type", | |||
"columnName": "auth_type", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "primary", | |||
"columnName": "primary", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "synchronize", | |||
"columnName": "synchronize", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "color", | |||
"columnName": "color", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "store_sent", | |||
"columnName": "store_sent", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "poll_interval", | |||
"columnName": "poll_interval", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "seen_until", | |||
"columnName": "seen_until", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "state", | |||
"columnName": "state", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "error", | |||
"columnName": "error", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
} | |||
], | |||
"primaryKey": { | |||
"columnNames": [ | |||
"id" | |||
], | |||
"autoGenerate": true | |||
}, | |||
"indices": [], | |||
"foreignKeys": [] | |||
}, | |||
{ | |||
"tableName": "folder", | |||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `account` INTEGER, `name` TEXT NOT NULL, `type` TEXT NOT NULL, `unified` INTEGER NOT NULL, `synchronize` INTEGER NOT NULL, `after` INTEGER NOT NULL, `state` TEXT, `error` TEXT, FOREIGN KEY(`account`) REFERENCES `account`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )", | |||
"fields": [ | |||
{ | |||
"fieldPath": "id", | |||
"columnName": "id", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "account", | |||
"columnName": "account", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "name", | |||
"columnName": "name", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "type", | |||
"columnName": "type", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "unified", | |||
"columnName": "unified", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "synchronize", | |||
"columnName": "synchronize", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "after", | |||
"columnName": "after", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "state", | |||
"columnName": "state", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "error", | |||
"columnName": "error", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
} | |||
], | |||
"primaryKey": { | |||
"columnNames": [ | |||
"id" | |||
], | |||
"autoGenerate": true | |||
}, | |||
"indices": [ | |||
{ | |||
"name": "index_folder_account_name", | |||
"unique": true, | |||
"columnNames": [ | |||
"account", | |||
"name" | |||
], | |||
"createSql": "CREATE UNIQUE INDEX `index_folder_account_name` ON `${TABLE_NAME}` (`account`, `name`)" | |||
}, | |||
{ | |||
"name": "index_folder_account", | |||
"unique": false, | |||
"columnNames": [ | |||
"account" | |||
], | |||
"createSql": "CREATE INDEX `index_folder_account` ON `${TABLE_NAME}` (`account`)" | |||
}, | |||
{ | |||
"name": "index_folder_name", | |||
"unique": false, | |||
"columnNames": [ | |||
"name" | |||
], | |||
"createSql": "CREATE INDEX `index_folder_name` ON `${TABLE_NAME}` (`name`)" | |||
}, | |||
{ | |||
"name": "index_folder_type", | |||
"unique": false, | |||
"columnNames": [ | |||
"type" | |||
], | |||
"createSql": "CREATE INDEX `index_folder_type` ON `${TABLE_NAME}` (`type`)" | |||
}, | |||
{ | |||
"name": "index_folder_unified", | |||
"unique": false, | |||
"columnNames": [ | |||
"unified" | |||
], | |||
"createSql": "CREATE INDEX `index_folder_unified` ON `${TABLE_NAME}` (`unified`)" | |||
} | |||
], | |||
"foreignKeys": [ | |||
{ | |||
"table": "account", | |||
"onDelete": "CASCADE", | |||
"onUpdate": "NO ACTION", | |||
"columns": [ | |||
"account" | |||
], | |||
"referencedColumns": [ | |||
"id" | |||
] | |||
} | |||
] | |||
}, | |||
{ | |||
"tableName": "message", | |||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `account` INTEGER, `folder` INTEGER NOT NULL, `identity` INTEGER, `replying` INTEGER, `uid` INTEGER, `msgid` TEXT, `references` TEXT, `inreplyto` TEXT, `thread` TEXT, `avatar` TEXT, `from` TEXT, `to` TEXT, `cc` TEXT, `bcc` TEXT, `reply` TEXT, `headers` TEXT, `subject` TEXT, `sent` INTEGER, `received` INTEGER NOT NULL, `stored` INTEGER NOT NULL, `seen` INTEGER NOT NULL, `flagged` INTEGER NOT NULL, `ui_seen` INTEGER NOT NULL, `ui_flagged` INTEGER NOT NULL, `ui_hide` INTEGER NOT NULL, `ui_found` INTEGER NOT NULL, `error` TEXT, FOREIGN KEY(`account`) REFERENCES `account`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`folder`) REFERENCES `folder`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`identity`) REFERENCES `identity`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`replying`) REFERENCES `message`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )", | |||
"fields": [ | |||
{ | |||
"fieldPath": "id", | |||
"columnName": "id", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "account", | |||
"columnName": "account", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "folder", | |||
"columnName": "folder", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "identity", | |||
"columnName": "identity", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "replying", | |||
"columnName": "replying", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "uid", | |||
"columnName": "uid", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "msgid", | |||
"columnName": "msgid", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "references", | |||
"columnName": "references", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "inreplyto", | |||
"columnName": "inreplyto", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "thread", | |||
"columnName": "thread", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "avatar", | |||
"columnName": "avatar", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "from", | |||
"columnName": "from", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "to", | |||
"columnName": "to", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "cc", | |||
"columnName": "cc", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "bcc", | |||
"columnName": "bcc", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "reply", | |||
"columnName": "reply", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "headers", | |||
"columnName": "headers", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "subject", | |||
"columnName": "subject", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "sent", | |||
"columnName": "sent", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "received", | |||
"columnName": "received", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "stored", | |||
"columnName": "stored", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "seen", | |||
"columnName": "seen", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "flagged", | |||
"columnName": "flagged", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "ui_seen", | |||
"columnName": "ui_seen", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "ui_flagged", | |||
"columnName": "ui_flagged", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "ui_hide", | |||
"columnName": "ui_hide", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "ui_found", | |||
"columnName": "ui_found", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "error", | |||
"columnName": "error", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
} | |||
], | |||
"primaryKey": { | |||
"columnNames": [ | |||
"id" | |||
], | |||
"autoGenerate": true | |||
}, | |||
"indices": [ | |||
{ | |||
"name": "index_message_account", | |||
"unique": false, | |||
"columnNames": [ | |||
"account" | |||
], | |||
"createSql": "CREATE INDEX `index_message_account` ON `${TABLE_NAME}` (`account`)" | |||
}, | |||
{ | |||
"name": "index_message_folder", | |||
"unique": false, | |||
"columnNames": [ | |||
"folder" | |||
], | |||
"createSql": "CREATE INDEX `index_message_folder` ON `${TABLE_NAME}` (`folder`)" | |||
}, | |||
{ | |||
"name": "index_message_identity", | |||
"unique": false, | |||
"columnNames": [ | |||
"identity" | |||
], | |||
"createSql": "CREATE INDEX `index_message_identity` ON `${TABLE_NAME}` (`identity`)" | |||
}, | |||
{ | |||
"name": "index_message_replying", | |||
"unique": false, | |||
"columnNames": [ | |||
"replying" | |||
], | |||
"createSql": "CREATE INDEX `index_message_replying` ON `${TABLE_NAME}` (`replying`)" | |||
}, | |||
{ | |||
"name": "index_message_folder_uid", | |||
"unique": true, | |||
"columnNames": [ | |||
"folder", | |||
"uid" | |||
], | |||
"createSql": "CREATE UNIQUE INDEX `index_message_folder_uid` ON `${TABLE_NAME}` (`folder`, `uid`)" | |||
}, | |||
{ | |||
"name": "index_message_msgid_folder", | |||
"unique": true, | |||
"columnNames": [ | |||
"msgid", | |||
"folder" | |||
], | |||
"createSql": "CREATE UNIQUE INDEX `index_message_msgid_folder` ON `${TABLE_NAME}` (`msgid`, `folder`)" | |||
}, | |||
{ | |||
"name": "index_message_thread", | |||
"unique": false, | |||
"columnNames": [ | |||
"thread" | |||
], | |||
"createSql": "CREATE INDEX `index_message_thread` ON `${TABLE_NAME}` (`thread`)" | |||
}, | |||
{ | |||
"name": "index_message_received", | |||
"unique": false, | |||
"columnNames": [ | |||
"received" | |||
], | |||
"createSql": "CREATE INDEX `index_message_received` ON `${TABLE_NAME}` (`received`)" | |||
}, | |||
{ | |||
"name": "index_message_ui_seen", | |||
"unique": false, | |||
"columnNames": [ | |||
"ui_seen" | |||
], | |||
"createSql": "CREATE INDEX `index_message_ui_seen` ON `${TABLE_NAME}` (`ui_seen`)" | |||
}, | |||
{ | |||
"name": "index_message_ui_hide", | |||
"unique": false, | |||
"columnNames": [ | |||
"ui_hide" | |||
], | |||
"createSql": "CREATE INDEX `index_message_ui_hide` ON `${TABLE_NAME}` (`ui_hide`)" | |||
}, | |||
{ | |||
"name": "index_message_ui_found", | |||
"unique": false, | |||
"columnNames": [ | |||
"ui_found" | |||
], | |||
"createSql": "CREATE INDEX `index_message_ui_found` ON `${TABLE_NAME}` (`ui_found`)" | |||
} | |||
], | |||
"foreignKeys": [ | |||
{ | |||
"table": "account", | |||
"onDelete": "CASCADE", | |||
"onUpdate": "NO ACTION", | |||
"columns": [ | |||
"account" | |||
], | |||
"referencedColumns": [ | |||
"id" | |||
] | |||
}, | |||
{ | |||
"table": "folder", | |||
"onDelete": "CASCADE", | |||
"onUpdate": "NO ACTION", | |||
"columns": [ | |||
"folder" | |||
], | |||
"referencedColumns": [ | |||
"id" | |||
] | |||
}, | |||
{ | |||
"table": "identity", | |||
"onDelete": "CASCADE", | |||
"onUpdate": "NO ACTION", | |||
"columns": [ | |||
"identity" | |||
], | |||
"referencedColumns": [ | |||
"id" | |||
] | |||
}, | |||
{ | |||
"table": "message", | |||
"onDelete": "CASCADE", | |||
"onUpdate": "NO ACTION", | |||
"columns": [ | |||
"replying" | |||
], | |||
"referencedColumns": [ | |||
"id" | |||
] | |||
} | |||
] | |||
}, | |||
{ | |||
"tableName": "attachment", | |||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `message` INTEGER NOT NULL, `sequence` INTEGER NOT NULL, `name` TEXT, `type` TEXT NOT NULL, `size` INTEGER, `progress` INTEGER, `available` INTEGER NOT NULL, FOREIGN KEY(`message`) REFERENCES `message`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )", | |||
"fields": [ | |||
{ | |||
"fieldPath": "id", | |||
"columnName": "id", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "message", | |||
"columnName": "message", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "sequence", | |||
"columnName": "sequence", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "name", | |||
"columnName": "name", | |||
"affinity": "TEXT", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "type", | |||
"columnName": "type", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "size", | |||
"columnName": "size", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "progress", | |||
"columnName": "progress", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "available", | |||
"columnName": "available", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
} | |||
], | |||
"primaryKey": { | |||
"columnNames": [ | |||
"id" | |||
], | |||
"autoGenerate": true | |||
}, | |||
"indices": [ | |||
{ | |||
"name": "index_attachment_message", | |||
"unique": false, | |||
"columnNames": [ | |||
"message" | |||
], | |||
"createSql": "CREATE INDEX `index_attachment_message` ON `${TABLE_NAME}` (`message`)" | |||
}, | |||
{ | |||
"name": "index_attachment_message_sequence", | |||
"unique": true, | |||
"columnNames": [ | |||
"message", | |||
"sequence" | |||
], | |||
"createSql": "CREATE UNIQUE INDEX `index_attachment_message_sequence` ON `${TABLE_NAME}` (`message`, `sequence`)" | |||
} | |||
], | |||
"foreignKeys": [ | |||
{ | |||
"table": "message", | |||
"onDelete": "CASCADE", | |||
"onUpdate": "NO ACTION", | |||
"columns": [ | |||
"message" | |||
], | |||
"referencedColumns": [ | |||
"id" | |||
] | |||
} | |||
] | |||
}, | |||
{ | |||
"tableName": "operation", | |||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `folder` INTEGER NOT NULL, `message` INTEGER NOT NULL, `name` TEXT NOT NULL, `args` TEXT NOT NULL, `created` INTEGER NOT NULL, FOREIGN KEY(`folder`) REFERENCES `folder`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`message`) REFERENCES `message`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )", | |||
"fields": [ | |||
{ | |||
"fieldPath": "id", | |||
"columnName": "id", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "folder", | |||
"columnName": "folder", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "message", | |||
"columnName": "message", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "name", | |||
"columnName": "name", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "args", | |||
"columnName": "args", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "created", | |||
"columnName": "created", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
} | |||
], | |||
"primaryKey": { | |||
"columnNames": [ | |||
"id" | |||
], | |||
"autoGenerate": true | |||
}, | |||
"indices": [ | |||
{ | |||
"name": "index_operation_folder", | |||
"unique": false, | |||
"columnNames": [ | |||
"folder" | |||
], | |||
"createSql": "CREATE INDEX `index_operation_folder` ON `${TABLE_NAME}` (`folder`)" | |||
}, | |||
{ | |||
"name": "index_operation_message", | |||
"unique": false, | |||
"columnNames": [ | |||
"message" | |||
], | |||
"createSql": "CREATE INDEX `index_operation_message` ON `${TABLE_NAME}` (`message`)" | |||
} | |||
], | |||
"foreignKeys": [ | |||
{ | |||
"table": "folder", | |||
"onDelete": "CASCADE", | |||
"onUpdate": "NO ACTION", | |||
"columns": [ | |||
"folder" | |||
], | |||
"referencedColumns": [ | |||
"id" | |||
] | |||
}, | |||
{ | |||
"table": "message", | |||
"onDelete": "CASCADE", | |||
"onUpdate": "NO ACTION", | |||
"columns": [ | |||
"message" | |||
], | |||
"referencedColumns": [ | |||
"id" | |||
] | |||
} | |||
] | |||
}, | |||
{ | |||
"tableName": "answer", | |||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `name` TEXT NOT NULL, `text` TEXT NOT NULL)", | |||
"fields": [ | |||
{ | |||
"fieldPath": "id", | |||
"columnName": "id", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "name", | |||
"columnName": "name", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "text", | |||
"columnName": "text", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
} | |||
], | |||
"primaryKey": { | |||
"columnNames": [ | |||
"id" | |||
], | |||
"autoGenerate": true | |||
}, | |||
"indices": [], | |||
"foreignKeys": [] | |||
}, | |||
{ | |||
"tableName": "log", | |||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `time` INTEGER NOT NULL, `data` TEXT NOT NULL)", | |||
"fields": [ | |||
{ | |||
"fieldPath": "id", | |||
"columnName": "id", | |||
"affinity": "INTEGER", | |||
"notNull": false | |||
}, | |||
{ | |||
"fieldPath": "time", | |||
"columnName": "time", | |||
"affinity": "INTEGER", | |||
"notNull": true | |||
}, | |||
{ | |||
"fieldPath": "data", | |||
"columnName": "data", | |||
"affinity": "TEXT", | |||
"notNull": true | |||
} | |||
], | |||
"primaryKey": { | |||
"columnNames": [ | |||
"id" | |||
], | |||
"autoGenerate": true | |||
}, | |||
"indices": [ | |||
{ | |||
"name": "index_log_time", | |||
"unique": false, | |||
"columnNames": [ | |||
"time" | |||
], | |||
"createSql": "CREATE INDEX `index_log_time` ON `${TABLE_NAME}` (`time`)" | |||
} | |||
], | |||
"foreignKeys": [] | |||
} | |||
], | |||
"setupQueries": [ | |||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)", | |||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, \"74d6e4343efd13e0b519ff94758dc902\")" | |||
] | |||
} | |||
} |
@ -0,0 +1,2 @@ | |||
bin/ | |||
gen/ |
@ -0,0 +1,23 @@ | |||
// Copyright (C) 2013 The Android Open Source Project | |||
// | |||
// Licensed under the Apache License, Version 2.0 (the "License"); | |||
// you may not use this file except in compliance with the License. | |||
// You may obtain a copy of the License at | |||
// | |||
// http://www.apache.org/licenses/LICENSE-2.0 | |||
// | |||
// Unless required by applicable law or agreed to in writing, software | |||
// distributed under the License is distributed on an "AS IS" BASIS, | |||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |||
// See the License for the specific language governing permissions and | |||
// limitations under the License. | |||
android_library { | |||
name: "colorpicker", | |||
sdk_version: "15", | |||
srcs: [ | |||
"src/**/*.java", | |||
"src/**/*.logtags", | |||
], | |||
resource_dirs: ["res"], | |||
} |
@ -0,0 +1,23 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<!-- Copyright (C) 2013 The Android Open Source Project | |||
Licensed under the Apache License, Version 2.0 (the "License"); | |||
you may not use this file except in compliance with the License. | |||
You may obtain a copy of the License at | |||
http://www.apache.org/licenses/LICENSE-2.0 | |||
Unless required by applicable law or agreed to in writing, software | |||
distributed under the License is distributed on an "AS IS" BASIS, | |||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |||
See the License for the specific language governing permissions and | |||
limitations under the License. | |||
--> | |||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |||
package="com.android.colorpicker" | |||
android:versionCode="1" | |||
android:versionName="1.0" > | |||
<uses-sdk | |||
android:minSdkVersion="15" | |||
android:targetSdkVersion="17" /> | |||
</manifest> |
@ -0,0 +1,16 @@ | |||
apply plugin: 'com.android.library' | |||
android { | |||
compileSdkVersion 28 | |||
sourceSets.main { | |||
manifest.srcFile 'AndroidManifest.xml' | |||
java.srcDirs = ['src'] | |||
res.srcDirs = ['res'] | |||
} | |||
dependencies { | |||
def androidx_version = "1.0.0-rc02" | |||
implementation "androidx.appcompat:appcompat:$androidx_version" | |||
} | |||
} |
@ -0,0 +1,13 @@ | |||
/** | |||
* Automatically generated file. DO NOT MODIFY | |||
*/ | |||
package com.android.colorpicker; | |||
public final class BuildConfig { | |||
public static final boolean DEBUG = Boolean.parseBoolean("true"); | |||
public static final String APPLICATION_ID = "com.android.colorpicker"; | |||
public static final String BUILD_TYPE = "debug"; | |||
public static final String FLAVOR = ""; | |||
public static final int VERSION_CODE = 1; | |||
public static final String VERSION_NAME = "1.0"; | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.arch.core; | |||
public final class R { | |||
} |
@ -0,0 +1,161 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.asynclayoutinflater; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,189 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.coordinatorlayout; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int coordinatorLayoutStyle = 0x7f04005f; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int keylines = 0x7f04008e; | |||
public static int layout_anchor = 0x7f040091; | |||
public static int layout_anchorGravity = 0x7f040092; | |||
public static int layout_behavior = 0x7f040093; | |||
public static int layout_dodgeInsetEdges = 0x7f040094; | |||
public static int layout_insetEdge = 0x7f040095; | |||
public static int layout_keyline = 0x7f040096; | |||
public static int statusBarBackground = 0x7f0400d1; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int bottom = 0x7f0c0018; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int end = 0x7f0c0026; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int left = 0x7f0c0031; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int none = 0x7f0c0038; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right = 0x7f0c0041; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int start = 0x7f0c0059; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
public static int top = 0x7f0c0068; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
public static int Widget_Support_CoordinatorLayout = 0x7f16015a; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] CoordinatorLayout = { 0x7f04008e, 0x7f0400d1 }; | |||
public static int CoordinatorLayout_keylines = 0; | |||
public static int CoordinatorLayout_statusBarBackground = 1; | |||
public static int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096 }; | |||
public static int CoordinatorLayout_Layout_android_layout_gravity = 0; | |||
public static int CoordinatorLayout_Layout_layout_anchor = 1; | |||
public static int CoordinatorLayout_Layout_layout_anchorGravity = 2; | |||
public static int CoordinatorLayout_Layout_layout_behavior = 3; | |||
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; | |||
public static int CoordinatorLayout_Layout_layout_insetEdge = 5; | |||
public static int CoordinatorLayout_Layout_layout_keyline = 6; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,161 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.core; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.cursoradapter; | |||
public final class R { | |||
} |
@ -0,0 +1,161 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.customview; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.documentfile; | |||
public final class R { | |||
} |
@ -0,0 +1,161 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.drawerlayout; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,189 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.fragment; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int coordinatorLayoutStyle = 0x7f04005f; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int keylines = 0x7f04008e; | |||
public static int layout_anchor = 0x7f040091; | |||
public static int layout_anchorGravity = 0x7f040092; | |||
public static int layout_behavior = 0x7f040093; | |||
public static int layout_dodgeInsetEdges = 0x7f040094; | |||
public static int layout_insetEdge = 0x7f040095; | |||
public static int layout_keyline = 0x7f040096; | |||
public static int statusBarBackground = 0x7f0400d1; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int bottom = 0x7f0c0018; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int end = 0x7f0c0026; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int left = 0x7f0c0031; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int none = 0x7f0c0038; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right = 0x7f0c0041; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int start = 0x7f0c0059; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
public static int top = 0x7f0c0068; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
public static int Widget_Support_CoordinatorLayout = 0x7f16015a; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] CoordinatorLayout = { 0x7f04008e, 0x7f0400d1 }; | |||
public static int CoordinatorLayout_keylines = 0; | |||
public static int CoordinatorLayout_statusBarBackground = 1; | |||
public static int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096 }; | |||
public static int CoordinatorLayout_Layout_android_layout_gravity = 0; | |||
public static int CoordinatorLayout_Layout_layout_anchor = 1; | |||
public static int CoordinatorLayout_Layout_layout_anchorGravity = 2; | |||
public static int CoordinatorLayout_Layout_layout_behavior = 3; | |||
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; | |||
public static int CoordinatorLayout_Layout_layout_insetEdge = 5; | |||
public static int CoordinatorLayout_Layout_layout_keyline = 6; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.interpolator; | |||
public final class R { | |||
} |
@ -0,0 +1,189 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.legacy.coreui; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int coordinatorLayoutStyle = 0x7f04005f; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int keylines = 0x7f04008e; | |||
public static int layout_anchor = 0x7f040091; | |||
public static int layout_anchorGravity = 0x7f040092; | |||
public static int layout_behavior = 0x7f040093; | |||
public static int layout_dodgeInsetEdges = 0x7f040094; | |||
public static int layout_insetEdge = 0x7f040095; | |||
public static int layout_keyline = 0x7f040096; | |||
public static int statusBarBackground = 0x7f0400d1; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int bottom = 0x7f0c0018; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int end = 0x7f0c0026; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int left = 0x7f0c0031; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int none = 0x7f0c0038; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right = 0x7f0c0041; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int start = 0x7f0c0059; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
public static int top = 0x7f0c0068; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
public static int Widget_Support_CoordinatorLayout = 0x7f16015a; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] CoordinatorLayout = { 0x7f04008e, 0x7f0400d1 }; | |||
public static int CoordinatorLayout_keylines = 0; | |||
public static int CoordinatorLayout_statusBarBackground = 1; | |||
public static int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096 }; | |||
public static int CoordinatorLayout_Layout_android_layout_gravity = 0; | |||
public static int CoordinatorLayout_Layout_layout_anchor = 1; | |||
public static int CoordinatorLayout_Layout_layout_anchorGravity = 2; | |||
public static int CoordinatorLayout_Layout_layout_behavior = 3; | |||
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; | |||
public static int CoordinatorLayout_Layout_layout_insetEdge = 5; | |||
public static int CoordinatorLayout_Layout_layout_keyline = 6; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,161 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.legacy.coreutils; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.lifecycle; | |||
public final class R { | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.lifecycle.livedata.core; | |||
public final class R { | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.lifecycle.viewmodel; | |||
public final class R { | |||
} |
@ -0,0 +1,161 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.loader; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.localbroadcastmanager; | |||
public final class R { | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.print; | |||
public final class R { | |||
} |
@ -0,0 +1,161 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.slidingpanelayout; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,161 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.swiperefreshlayout; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,189 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.vectordrawable; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int coordinatorLayoutStyle = 0x7f04005f; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int keylines = 0x7f04008e; | |||
public static int layout_anchor = 0x7f040091; | |||
public static int layout_anchorGravity = 0x7f040092; | |||
public static int layout_behavior = 0x7f040093; | |||
public static int layout_dodgeInsetEdges = 0x7f040094; | |||
public static int layout_insetEdge = 0x7f040095; | |||
public static int layout_keyline = 0x7f040096; | |||
public static int statusBarBackground = 0x7f0400d1; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int bottom = 0x7f0c0018; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int end = 0x7f0c0026; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int left = 0x7f0c0031; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int none = 0x7f0c0038; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right = 0x7f0c0041; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int start = 0x7f0c0059; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
public static int top = 0x7f0c0068; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
public static int Widget_Support_CoordinatorLayout = 0x7f16015a; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] CoordinatorLayout = { 0x7f04008e, 0x7f0400d1 }; | |||
public static int CoordinatorLayout_keylines = 0; | |||
public static int CoordinatorLayout_statusBarBackground = 1; | |||
public static int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040096 }; | |||
public static int CoordinatorLayout_Layout_android_layout_gravity = 0; | |||
public static int CoordinatorLayout_Layout_layout_anchor = 1; | |||
public static int CoordinatorLayout_Layout_layout_anchorGravity = 2; | |||
public static int CoordinatorLayout_Layout_layout_behavior = 3; | |||
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; | |||
public static int CoordinatorLayout_Layout_layout_insetEdge = 5; | |||
public static int CoordinatorLayout_Layout_layout_keyline = 6; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |
@ -0,0 +1,10 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.versionedparcelable; | |||
public final class R { | |||
} |
@ -0,0 +1,161 @@ | |||
/* AUTO-GENERATED FILE. DO NOT MODIFY. | |||
* | |||
* This class was automatically generated by the | |||
* gradle plugin from the resource data it found. It | |||
* should not be modified by hand. | |||
*/ | |||
package androidx.viewpager; | |||
public final class R { | |||
public static final class attr { | |||
public static int alpha = 0x7f040028; | |||
public static int font = 0x7f040074; | |||
public static int fontProviderAuthority = 0x7f040076; | |||
public static int fontProviderCerts = 0x7f040077; | |||
public static int fontProviderFetchStrategy = 0x7f040078; | |||
public static int fontProviderFetchTimeout = 0x7f040079; | |||
public static int fontProviderPackage = 0x7f04007a; | |||
public static int fontProviderQuery = 0x7f04007b; | |||
public static int fontStyle = 0x7f04007c; | |||
public static int fontVariationSettings = 0x7f04007d; | |||
public static int fontWeight = 0x7f04007e; | |||
public static int ttcIndex = 0x7f040104; | |||
} | |||
public static final class color { | |||
public static int notification_action_color_filter = 0x7f06003d; | |||
public static int notification_icon_bg_color = 0x7f06003e; | |||
public static int ripple_material_light = 0x7f060048; | |||
public static int secondary_text_default_material_light = 0x7f06004a; | |||
} | |||
public static final class dimen { | |||
public static int compat_button_inset_horizontal_material = 0x7f080050; | |||
public static int compat_button_inset_vertical_material = 0x7f080051; | |||
public static int compat_button_padding_horizontal_material = 0x7f080052; | |||
public static int compat_button_padding_vertical_material = 0x7f080053; | |||
public static int compat_control_corner_material = 0x7f080054; | |||
public static int compat_notification_large_icon_max_height = 0x7f080055; | |||
public static int compat_notification_large_icon_max_width = 0x7f080056; | |||
public static int notification_action_icon_size = 0x7f080060; | |||
public static int notification_action_text_size = 0x7f080061; | |||
public static int notification_big_circle_margin = 0x7f080062; | |||
public static int notification_content_margin_start = 0x7f080063; | |||
public static int notification_large_icon_height = 0x7f080064; | |||
public static int notification_large_icon_width = 0x7f080065; | |||
public static int notification_main_column_padding_top = 0x7f080066; | |||
public static int notification_media_narrow_margin = 0x7f080067; | |||
public static int notification_right_icon_size = 0x7f080068; | |||
public static int notification_right_side_padding_top = 0x7f080069; | |||
public static int notification_small_icon_background_padding = 0x7f08006a; | |||
public static int notification_small_icon_size_as_large = 0x7f08006b; | |||
public static int notification_subtext_size = 0x7f08006c; | |||
public static int notification_top_pad = 0x7f08006d; | |||
public static int notification_top_pad_large_text = 0x7f08006e; | |||
} | |||
public static final class drawable { | |||
public static int notification_action_background = 0x7f090057; | |||
public static int notification_bg = 0x7f090058; | |||
public static int notification_bg_low = 0x7f090059; | |||
public static int notification_bg_low_normal = 0x7f09005a; | |||
public static int notification_bg_low_pressed = 0x7f09005b; | |||
public static int notification_bg_normal = 0x7f09005c; | |||
public static int notification_bg_normal_pressed = 0x7f09005d; | |||
public static int notification_icon_background = 0x7f09005e; | |||
public static int notification_template_icon_bg = 0x7f09005f; | |||
public static int notification_template_icon_low_bg = 0x7f090060; | |||
public static int notification_tile_bg = 0x7f090061; | |||
public static int notify_panel_notification_icon_bg = 0x7f090062; | |||
} | |||
public static final class id { | |||
public static int action_container = 0x7f0c0008; | |||
public static int action_divider = 0x7f0c000a; | |||
public static int action_image = 0x7f0c000b; | |||
public static int action_text = 0x7f0c0011; | |||
public static int actions = 0x7f0c0012; | |||
public static int async = 0x7f0c0016; | |||
public static int blocking = 0x7f0c0017; | |||
public static int chronometer = 0x7f0c001b; | |||
public static int forever = 0x7f0c0029; | |||
public static int icon = 0x7f0c002c; | |||
public static int icon_group = 0x7f0c002d; | |||
public static int info = 0x7f0c002f; | |||
public static int italic = 0x7f0c0030; | |||
public static int line1 = 0x7f0c0032; | |||
public static int line3 = 0x7f0c0033; | |||
public static int normal = 0x7f0c0039; | |||
public static int notification_background = 0x7f0c003a; | |||
public static int notification_main_column = 0x7f0c003b; | |||
public static int notification_main_column_container = 0x7f0c003c; | |||
public static int right_icon = 0x7f0c0042; | |||
public static int right_side = 0x7f0c0043; | |||
public static int tag_transition_group = 0x7f0c005d; | |||
public static int tag_unhandled_key_event_manager = 0x7f0c005e; | |||
public static int tag_unhandled_key_listeners = 0x7f0c005f; | |||
public static int text = 0x7f0c0060; | |||
public static int text2 = 0x7f0c0061; | |||
public static int time = 0x7f0c0064; | |||
public static int title = 0x7f0c0065; | |||
} | |||
public static final class integer { | |||
public static int status_bar_notification_info_maxnum = 0x7f0d0005; | |||
} | |||
public static final class layout { | |||
public static int notification_action = 0x7f0f001f; | |||
public static int notification_action_tombstone = 0x7f0f0020; | |||
public static int notification_template_custom_big = 0x7f0f0021; | |||
public static int notification_template_icon_group = 0x7f0f0022; | |||
public static int notification_template_part_chronometer = 0x7f0f0023; | |||
public static int notification_template_part_time = 0x7f0f0024; | |||
} | |||
public static final class string { | |||
public static int status_bar_notification_info_overflow = 0x7f15002c; | |||
} | |||
public static final class style { | |||
public static int TextAppearance_Compat_Notification = 0x7f1600ec; | |||
public static int TextAppearance_Compat_Notification_Info = 0x7f1600ed; | |||
public static int TextAppearance_Compat_Notification_Line2 = 0x7f1600ee; | |||
public static int TextAppearance_Compat_Notification_Time = 0x7f1600ef; | |||
public static int TextAppearance_Compat_Notification_Title = 0x7f1600f0; | |||
public static int Widget_Compat_NotificationActionContainer = 0x7f160158; | |||
public static int Widget_Compat_NotificationActionText = 0x7f160159; | |||
} | |||
public static final class styleable { | |||
public static int[] ColorStateListItem = { 0x7f040028, 0x0101031f, 0x010101a5 }; | |||
public static int ColorStateListItem_alpha = 0; | |||
public static int ColorStateListItem_android_alpha = 1; | |||
public static int ColorStateListItem_android_color = 2; | |||
public static int[] FontFamily = { 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f04007a, 0x7f04007b }; | |||
public static int FontFamily_fontProviderAuthority = 0; | |||
public static int FontFamily_fontProviderCerts = 1; | |||
public static int FontFamily_fontProviderFetchStrategy = 2; | |||
public static int FontFamily_fontProviderFetchTimeout = 3; | |||
public static int FontFamily_fontProviderPackage = 4; | |||
public static int FontFamily_fontProviderQuery = 5; | |||
public static int[] FontFamilyFont = { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f040074, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f040104 }; | |||
public static int FontFamilyFont_android_font = 0; | |||
public static int FontFamilyFont_android_fontStyle = 1; | |||
public static int FontFamilyFont_android_fontVariationSettings = 2; | |||
public static int FontFamilyFont_android_fontWeight = 3; | |||
public static int FontFamilyFont_android_ttcIndex = 4; | |||
public static int FontFamilyFont_font = 5; | |||
public static int FontFamilyFont_fontStyle = 6; | |||
public static int FontFamilyFont_fontVariationSettings = 7; | |||
public static int FontFamilyFont_fontWeight = 8; | |||
public static int FontFamilyFont_ttcIndex = 9; | |||
public static int[] GradientColor = { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 }; | |||
public static int GradientColor_android_centerColor = 0; | |||
public static int GradientColor_android_centerX = 1; | |||
public static int GradientColor_android_centerY = 2; | |||
public static int GradientColor_android_endColor = 3; | |||
public static int GradientColor_android_endX = 4; | |||
public static int GradientColor_android_endY = 5; | |||
public static int GradientColor_android_gradientRadius = 6; | |||
public static int GradientColor_android_startColor = 7; | |||
public static int GradientColor_android_startX = 8; | |||
public static int GradientColor_android_startY = 9; | |||
public static int GradientColor_android_tileMode = 10; | |||
public static int GradientColor_android_type = 11; | |||
public static int[] GradientColorItem = { 0x010101a5, 0x01010514 }; | |||
public static int GradientColorItem_android_color = 0; | |||
public static int GradientColorItem_android_offset = 1; | |||
} | |||
} |