作者 yang

addRoute

正在显示 54 个修改的文件 包含 4034 行增加0 行删除

要显示太多修改。

为保证性能只显示 54 of 54+ 个文件。

  1 +# Contributor Covenant Code of Conduct
  2 +
  3 +## Our Pledge
  4 +
  5 +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
  6 +
  7 +## Our Standards
  8 +
  9 +Examples of behavior that contributes to creating a positive environment include:
  10 +
  11 +* Using welcoming and inclusive language
  12 +* Being respectful of differing viewpoints and experiences
  13 +* Gracefully accepting constructive criticism
  14 +* Focusing on what is best for the community
  15 +* Showing empathy towards other community members
  16 +
  17 +Examples of unacceptable behavior by participants include:
  18 +
  19 +* The use of sexualized language or imagery and unwelcome sexual attention or advances
  20 +* Trolling, insulting/derogatory comments, and personal or political attacks
  21 +* Public or private harassment
  22 +* Publishing others' private information, such as a physical or electronic address, without explicit permission
  23 +* Other conduct which could reasonably be considered inappropriate in a professional setting
  24 +
  25 +## Our Responsibilities
  26 +
  27 +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
  28 +
  29 +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
  30 +
  31 +## Scope
  32 +
  33 +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
  34 +
  35 +## Enforcement
  36 +
  37 +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at fox@sfxh.cc. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
  38 +
  39 +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
  40 +
  41 +## Attribution
  42 +
  43 +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
  44 +
  45 +[homepage]: http://contributor-covenant.org
  46 +[version]: http://contributor-covenant.org/version/1/4/
  1 +MIT License
  2 +
  3 +Copyright (c) 2019 little-snow-fox
  4 +
  5 +Permission is hereby granted, free of charge, to any person obtaining a copy
  6 +of this software and associated documentation files (the "Software"), to deal
  7 +in the Software without restriction, including without limitation the rights
  8 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9 +copies of the Software, and to permit persons to whom the Software is
  10 +furnished to do so, subject to the following conditions:
  11 +
  12 +The above copyright notice and this permission notice shall be included in all
  13 +copies or substantial portions of the Software.
  14 +
  15 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21 +SOFTWARE.
  1 +#
  2 +# Be sure to run `pod spec lint RCTWeChat.podspec' to ensure this is a
  3 +# valid spec and to remove all comments including this before submitting the spec.
  4 +#
  5 +# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
  6 +# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
  7 +#
  8 +require 'json'
  9 +
  10 +package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
  11 +
  12 +Pod::Spec.new do |s|
  13 + s.name = "RCTWeChat"
  14 + s.version = package['version']
  15 + s.summary = "React-Native(iOS/Android) functionalities include WeChat Login, Share, Favorite and Payment"
  16 + s.description = <<-DESC
  17 + React-Native(iOS/Android) functionalities include WeChat Login, Share, Favorite and Payment
  18 + DESC
  19 + s.author = { "little-snow-fox" => "fox@sfxh.cc" }
  20 + s.homepage = "https://github.com/little-snow-fox/react-native-wechat-lib"
  21 + s.license = "MIT"
  22 + s.platform = :ios, "9.0"
  23 + s.source = { :git => "https://github.com/little-snow-fox/react-native-wechat-lib.git", :tag => "master" }
  24 + s.source_files = "ios/*.{h,m}"
  25 + s.dependency "React-Core"
  26 + s.vendored_libraries = "ios/libWeChatSDK.a"
  27 + s.requires_arc = true
  28 + s.frameworks = 'SystemConfiguration','CoreTelephony','WebKit'
  29 + s.library = 'sqlite3','c++','z'
  30 +end
  1 +<img height="200" src="./weixin.png?raw=true">
  2 +
  3 +# React-Native-Wechat-Lib
  4 +
  5 +[React Native] bridging library that integrates WeChat SDKs:
  6 +
  7 +- [x] iOS SDK 1.8.7.1
  8 +- [x] Android SDK 5.5.6
  9 +
  10 +## 前言
  11 +
  12 +首先向各位声明,本库是在 [react-native-wechat](https://github.com/yorkie/react-native-wechat) 基础上进行重写。
  13 +
  14 +本库已经向 react-native-wechat 提交合并请求[#526](https://github.com/yorkie/react-native-wechat/pull/526),但由于 react-native-wechat 所使用的 WeChat SDK 已经是几年前的版本,新 SDK 接口变动大,我修改的代码相当多,几乎重构了核心部分,导致合并需要耗费不小时间,再加上需要兼容正在使用旧版 SDK 的开发者,事情变得异常艰辛。
  15 +
  16 +考虑到自身使用和其它开发者的需要,最终决定开一个新仓库,提供给新项目使用。
  17 +
  18 +最后,感谢 [yorkie](https://github.com/yorkie) 和各位开发者为 react-native-wechat 做出的贡献。
  19 +
  20 +## 附言
  21 +
  22 +如果你的 IOS 应用需要使用**不带支付功能**的 WeChat SDK,请使用带有 “-notpay” 后缀的 NPM 包。
  23 +If you need to use the WeChat SDK without payment for your IOS version, use the NPM package with the suffix "-notpay".
  24 +
  25 +## 目录
  26 +
  27 +- [安装](#安装)
  28 +- [起步](#起步)
  29 +- [API 文档](#API文档)
  30 +
  31 +## 安装
  32 +
  33 +```sh
  34 +npm install react-native-wechat-lib --save
  35 +react-native link react-native-wechat-lib
  36 +```
  37 +
  38 +## 起步
  39 +
  40 +- [iOS 安装](./docs/build-setup-ios.md)
  41 +- [Android 安装](./docs/build-setup-android.md)
  42 +
  43 +## API文档
  44 +
  45 +本库支持 `TypeScript`,使用 `Promise` 或 `async/await` 来接收返回。
  46 +
  47 +接口名称和参数尽量跟腾讯官网保持一致性,除了嵌套对象变成扁平对象,你可以直接查看腾讯文档来获得更多帮助。
  48 +
  49 +#### registerApp(appid) 注册
  50 +
  51 +- `appid` {String} the appid you get from WeChat dashboard
  52 +- returns {Boolean} explains if your application is registered done
  53 +
  54 +This method should be called once globally.
  55 +
  56 +```js
  57 +import * as WeChat from 'react-native-wechat-lib';
  58 +
  59 +WeChat.registerApp('appid', 'universalLink');
  60 +```
  61 +
  62 +#### isWXAppInstalled() 判断微信是否已安装
  63 +
  64 +- returns {Boolean} if WeChat is installed.
  65 +
  66 +Check if the WeChat app is installed on the device.
  67 +
  68 +#### isWXAppSupportApi() 检查支持情况
  69 +
  70 +- returns {Boolean} Contains the result.
  71 +
  72 +Check if wechat support open url.
  73 +
  74 +#### getApiVersion() 获取API版本号
  75 +
  76 +- returns {String} Contains the result.
  77 +
  78 +Get the WeChat SDK api version.
  79 +
  80 +#### openWXApp() 打开微信
  81 +
  82 +- returns {Boolean}
  83 +
  84 +Open the WeChat app from your application.
  85 +
  86 +#### sendAuthRequest([scope[, state]]) 微信授权登录
  87 +
  88 +- `scope` {Array|String} Scopes of auth request.
  89 +- `state` {String} the state of OAuth2
  90 +- returns {Object}
  91 +
  92 +Send authentication request, and it returns an object with the
  93 +following fields:
  94 +
  95 +| field | type | description |
  96 +|---------|--------|-------------------------------------|
  97 +| errCode | Number | Error Code |
  98 +| errStr | String | Error message if any error occurred |
  99 +| openId | String | |
  100 +| code | String | Authorization code |
  101 +| url | String | The URL string |
  102 +| lang | String | The user language |
  103 +| country | String | The user country |
  104 +
  105 +
  106 +#### ShareText(ShareTextMetadata) 分享文本
  107 +
  108 +ShareTextMetadata
  109 +
  110 +| name | type | description |
  111 +|---------|--------|----------------------------------|
  112 +| text | String | 分享文本 |
  113 +| scene | Number | 分享到, 0:会话 1:朋友圈 2:收藏 |
  114 +
  115 +Return:
  116 +
  117 +| name | type | description |
  118 +|---------|--------|-------------------------------------|
  119 +| errCode | Number | 0 if authorization successed |
  120 +| errStr | String | Error message if any error occurred |
  121 +
  122 +
  123 +```js
  124 +import * as WeChat from 'react-native-wechat-lib';
  125 +
  126 +WeChat.shareText({
  127 + text: 'Text content.',
  128 + scene: 0
  129 +})
  130 +
  131 +```
  132 +
  133 +#### ShareImage(ShareImageMetadata) 分享图片
  134 +
  135 +ShareImageMetadata
  136 +
  137 +| name | type | description |
  138 +|---------|--------|-------------------------------------|
  139 +| imageUrl| String | 图片地址 |
  140 +| scene | Number | 分享到, 0:会话 1:朋友圈 2:收藏 |
  141 +
  142 +Return:
  143 +
  144 +| name | type | description |
  145 +|---------|--------|-------------------------------------|
  146 +| errCode | Number | 0 if authorization successed |
  147 +| errStr | String | Error message if any error occurred |
  148 +
  149 +
  150 +```js
  151 +import * as WeChat from 'react-native-wechat-lib';
  152 +
  153 +WeChat.shareImage({
  154 + imageUrl: 'https://google.com/1.jpg',
  155 + scene: 0
  156 +})
  157 +
  158 +```
  159 +
  160 +#### ShareLocalImage(ShareImageMetadata) 分享本地图片
  161 +
  162 +ShareImageMetadata
  163 +
  164 +| name | type | description |
  165 +|---------|--------|-------------------------------------|
  166 +| imageUrl| String | 图片地址 |
  167 +| scene | Number | 分享到, 0:会话 1:朋友圈 2:收藏 |
  168 +
  169 +Return:
  170 +
  171 +| name | type | description |
  172 +|---------|--------|-------------------------------------|
  173 +| errCode | Number | 0 if authorization successed |
  174 +| errStr | String | Error message if any error occurred |
  175 +
  176 +
  177 +```js
  178 +import * as WeChat from 'react-native-wechat-lib';
  179 +
  180 +WeChat.ShareLocalImage({
  181 + imageUrl: '/sdcard/test.png',
  182 + scene: 0
  183 +})
  184 +
  185 +```
  186 +注意:图片路径必须在一个 Public 目录里,例如 Download 目录,否则微信没权限读取这张图片,导致图片发不出去。
  187 +
  188 +#### ShareMusic(ShareMusicMetadata) 分享音乐
  189 +
  190 +ShareMusicMetadata
  191 +
  192 +| name | type | description |
  193 +|---------------------|--------|-------------------------------|
  194 +| title | String | 标题 |
  195 +| description | String | 描述 |
  196 +| thumbImageUrl | String | 缩略图地址,本库会自动压缩到32KB |
  197 +| musicUrl | String | 音频网页的URL地址 |
  198 +| musicLowBandUrl | String | 供低带宽环境下使用的音频网页URL地址 |
  199 +| musicDataUrl | String | 音频数据的URL地址 |
  200 +| musicLowBandDataUrl | String | 供低带宽环境下使用的音频数据URL地址 |
  201 +| scene | Number | 分享到, 0:会话 1:朋友圈 2:收藏 |
  202 +
  203 +Return:
  204 +
  205 +| name | type | description |
  206 +|---------|--------|-------------------------------------|
  207 +| errCode | Number | 0 if authorization successed |
  208 +| errStr | String | Error message if any error occurred |
  209 +
  210 +
  211 +```js
  212 +import * as WeChat from 'react-native-wechat-lib';
  213 +
  214 +WeChat.shareMusic({
  215 + title: 'Good music.',
  216 + musicUrl: 'https://google.com/music.mp3',
  217 + thumbImageUrl: 'https://google.com/1.jpg',
  218 + scene: 0
  219 +})
  220 +
  221 +```
  222 +
  223 +#### ShareVideo(ShareVideoMetadata) 分享视频
  224 +
  225 +ShareVideoMetadata
  226 +
  227 +| name | type | description |
  228 +|---------|--------|-------------------------------------|
  229 +| title| String | 标题 |
  230 +| description| String | 描述 |
  231 +| thumbImageUrl| String | 缩略图地址,本库会自动压缩到32KB |
  232 +| videoUrl| String | 视频链接 |
  233 +| videoLowBandUrl| String | 供低带宽的环境下使用的视频链接 |
  234 +| scene | Number | 分享到, 0:会话 1:朋友圈 2:收藏 |
  235 +
  236 +Return:
  237 +
  238 +| name | type | description |
  239 +|---------|--------|-------------------------------------|
  240 +| errCode | Number | 0 if authorization successed |
  241 +| errStr | String | Error message if any error occurred |
  242 +
  243 +
  244 +```js
  245 +import * as WeChat from 'react-native-wechat-lib';
  246 +
  247 +WeChat.shareVideo({
  248 + title: 'Interesting video.',
  249 + videoUrl: 'https://google.com/music.mp3',
  250 + thumbImageUrl: 'https://google.com/1.jpg',
  251 + scene: 0
  252 +})
  253 +
  254 +```
  255 +
  256 +#### ShareWebpage (ShareWebpageMetadata) 分享网页
  257 +
  258 +ShareWebpageMetadata
  259 +
  260 +| name | type | description |
  261 +|---------|--------|-------------------------------------|
  262 +| title| String | 标题 |
  263 +| description| String | 描述 |
  264 +| thumbImageUrl| String | 缩略图地址,本库会自动压缩到32KB |
  265 +| webpageUrl| String | HTML 链接 |
  266 +| scene | Number | 分享到, 0:会话 1:朋友圈 2:收藏 |
  267 +
  268 +Return:
  269 +
  270 +| name | type | description |
  271 +|---------|--------|-------------------------------------|
  272 +| errCode | Number | 0 if authorization successed |
  273 +| errStr | String | Error message if any error occurred |
  274 +
  275 +
  276 +```js
  277 +import * as WeChat from 'react-native-wechat-lib';
  278 +
  279 +WeChat.shareWebpage({
  280 + title: 'Interesting web.',
  281 + videoUrl: 'https://google.com/music.mp3',
  282 + thumbImageUrl: 'https://google.com/1.jpg',
  283 + scene: 0
  284 +})
  285 +
  286 +```
  287 +
  288 +#### ShareMiniProgram(ShareMiniProgramMetadata) 分享小程序
  289 +
  290 +ShareMiniProgram
  291 +
  292 +| name | type | description |
  293 +|---------|--------|-------------------------------------|
  294 +| title| String | 标题 |
  295 +| description| String | 描述 |
  296 +| thumbImageUrl| String | 缩略图地址,本库会自动压缩到32KB |
  297 +| userName| String | 小程序的 userName,填小程序原始id |
  298 +| path| String | 小程序的页面路径 |
  299 +| hdImageUrl| String | 小程序新版本的预览图二进制数据,6.5.9及以上版本微信客户端支持 |
  300 +| withShareTicket| String | 是否使用带shareTicket的分享 |
  301 +| miniProgramType| Number | 小程序的类型,默认正式版,1.8.1及以上版本开发者工具包支持分享开发版和体验版小程序 |
  302 +| webpageUrl| String | 兼容低版本的网页链接 |
  303 +| scene | Number | 分享到, 0:会话 1:朋友圈 2:收藏 |
  304 +
  305 +Return:
  306 +
  307 +| name | type | description |
  308 +|---------|--------|-------------------------------------|
  309 +| errCode | Number | 0 if authorization successed |
  310 +| errStr | String | Error message if any error occurred |
  311 +
  312 +
  313 +```js
  314 +import * as WeChat from 'react-native-wechat-lib';
  315 +
  316 +WeChat.shareMiniProgram({
  317 + title: 'Mini program.',
  318 + userName: 'gh_d39d10000000',
  319 + webpageUrl: 'https://google.com/show.html',
  320 + thumbImageUrl: 'https://google.com/1.jpg',
  321 + scene: 0
  322 +})
  323 +
  324 +```
  325 +
  326 +#### LaunchMiniProgram (LaunchMiniProgramMetadata) 跳到小程序
  327 +
  328 +LaunchMiniProgramMetadata
  329 +
  330 +| name | type | description |
  331 +|---------|--------|-------------------------------------|
  332 +| userName| String | 填小程序原始id |
  333 +| miniProgramType| Number | 可选打开 开发版,体验版和正式版 |
  334 +| path| String | 拉起小程序页面的可带参路径,不填默认拉起小程序首页,对于小游戏,可以只传入 query 部分,来实现传参效果,如:传入 "?foo=bar" |
  335 +
  336 +Return:
  337 +
  338 +| name | type | description |
  339 +|---------|--------|-------------------------------------|
  340 +| errCode | Number | 0 if authorization successed |
  341 +| errStr | String | Error message if any error occurred |
  342 +
  343 +
  344 +```js
  345 +import * as WeChat from 'react-native-wechat-lib';
  346 +
  347 +WeChat.launchMiniProgram({
  348 + userName: 'gh_d39d10000000',
  349 + miniProgramType: 1
  350 +})
  351 +
  352 +```
  353 +
  354 +#### pay(payload) 支付
  355 +
  356 +- `payload` {Object} the payment data
  357 + - `partnerId` {String} 商家向财付通申请的商家ID
  358 + - `prepayId` {String} 预支付订单ID
  359 + - `nonceStr` {String} 随机串
  360 + - `timeStamp` {String} 时间戳
  361 + - `package` {String} 商家根据财付通文档填写的数据和签名
  362 + - `sign` {String} 商家根据微信开放平台文档对数据做的签名
  363 +- returns {Object}
  364 +
  365 +Sends request for proceeding payment, then returns an object:
  366 +
  367 +| name | type | description |
  368 +|---------|--------|-------------------------------------|
  369 +| errCode | Number | 0 if authorization successed |
  370 +| errStr | String | Error message if any error occurred |
  371 +
  372 +#### subscribeMessage(SubscribeMessageMetadata) 一次性订阅消息
  373 +
  374 +- returns {Object}
  375 +
  376 +
  377 +| name | type | description |
  378 +|---------|--------|-------------------------------------|
  379 +| scene | Number | 重定向后会带上 scene 参数,开发者可以填 0-10000 的整形值,用来标识订阅场值 |
  380 +| templateId | String | 订阅消息模板 ID,在微信开放平台提交应用审核通过后获得 |
  381 +| reserved | String | 用于保持请求和回调的状态,授权请后原样带回给第三方。该参数可用于防止 csrf 攻击(跨站请求伪造攻击),建议第三方带上该参数,可设置为简单的随机数加 session 进行校验,开发者可以填写 a-zA-Z0-9 的参数值,最多 128 字节,要求做 urlencode |
  382 +
  383 +#### 回调事件订阅
  384 +从小程序回到APP,或者支付成功回到APP都会触发回调事件来返回相应信息,请在触发相应方法前提前添加事件队列。
  385 +```
  386 + WeChat.registerApp(Global.APP_ID, Global.UNIVERSAL_LINK);
  387 + DeviceEventEmitter.addListener('WeChat_Req', req => {
  388 + console.log('req:', req)
  389 + if (req.type === 'LaunchFromWX.Req') { // 从小程序回到APP的事件
  390 + miniProgramCallback(req.extMsg)
  391 + }
  392 + });
  393 + DeviceEventEmitter.addListener('WeChat_Resp', resp => {
  394 + console.log('res:', resp)
  395 + if (resp.type === 'WXLaunchMiniProgramReq.Resp') { // 从小程序回到APP的事件
  396 + miniProgramCallback(resp.extMsg)
  397 + } else if (resp.type === 'SendMessageToWX.Resp') { // 发送微信消息后的事件
  398 + sendMessageCallback(resp.country)
  399 + } else if (resp.type === 'PayReq.Resp') { // 支付回调
  400 + payCallback(resp)
  401 + }
  402 + });
  403 +```
  404 +
  405 +## License
  406 +
  407 +MIT
  1 +theme: jekyll-theme-merlot
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<module external.linked.project.id=":" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
  3 + <component name="FacetManager">
  4 + <facet type="android-gradle" name="Android-Gradle">
  5 + <configuration>
  6 + <option name="GRADLE_PROJECT_PATH" value=":" />
  7 + <option name="LAST_SUCCESSFUL_SYNC_AGP_VERSION" />
  8 + <option name="LAST_KNOWN_AGP_VERSION" />
  9 + </configuration>
  10 + </facet>
  11 + </component>
  12 + <component name="NewModuleRootManager" inherit-compiler-output="true">
  13 + <exclude-output />
  14 + <content url="file://$MODULE_DIR$" />
  15 + <orderEntry type="jdk" jdkName="1.8" jdkType="JavaSDK" />
  16 + <orderEntry type="sourceFolder" forTests="false" />
  17 + </component>
  18 +</module>
  1 +apply plugin: 'com.android.library'
  2 +
  3 +def safeExtGet(prop, fallback) {
  4 + rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
  5 +}
  6 +
  7 +android {
  8 + compileSdkVersion safeExtGet('compileSdkVersion', 23)
  9 + buildToolsVersion safeExtGet('buildToolsVersion', '23.0.1')
  10 +
  11 + defaultConfig {
  12 + minSdkVersion safeExtGet('minSdkVersion', 16)
  13 + targetSdkVersion safeExtGet('targetSdkVersion', 22)
  14 + versionCode 1
  15 + versionName "1.0"
  16 + ndk {
  17 + abiFilters "armeabi-v7a", "x86"
  18 + }
  19 + }
  20 +}
  21 +
  22 +allprojects {
  23 + repositories {
  24 + jcenter()
  25 + maven { url "$projectDir/../../react-native/android" }
  26 + }
  27 +}
  28 +
  29 +dependencies {
  30 + api 'com.facebook.react:react-native:+'
  31 + api files('libs/libammsdk.jar')
  32 + // compile 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+'
  33 +}
  1 +/**
  2 + * Automatically generated file. DO NOT MODIFY
  3 + */
  4 +package com.theweflex.react;
  5 +
  6 +public final class BuildConfig {
  7 + public static final boolean DEBUG = Boolean.parseBoolean("true");
  8 + public static final String LIBRARY_PACKAGE_NAME = "com.theweflex.react";
  9 + /**
  10 + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME
  11 + */
  12 + @Deprecated
  13 + public static final String APPLICATION_ID = "com.theweflex.react";
  14 + public static final String BUILD_TYPE = "debug";
  15 + public static final String FLAVOR = "";
  16 + public static final int VERSION_CODE = 1;
  17 + public static final String VERSION_NAME = "1.0";
  18 +}
  1 +<?xml version="1.0" encoding="utf-8"?>
  2 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3 + package="com.theweflex.react"
  4 + android:versionCode="1"
  5 + android:versionName="1.0" >
  6 +
  7 + <uses-sdk
  8 + android:minSdkVersion="16"
  9 + android:targetSdkVersion="28" />
  10 +
  11 + <uses-permission android:name="android.permission.INTERNET" />
  12 + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  13 + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  14 + <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  15 + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  16 +
  17 +</manifest>
  1 +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"react-native-wechat-lib-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.theweflex.react","split":""}}]
  1 +<?xml version="1.0" encoding="utf-8"?>
  2 +<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/debug/jniLibs"/></dataSet></merger>
  1 +<?xml version="1.0" encoding="utf-8"?>
  2 +<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/debug/shaders"/></dataSet></merger>
  1 +<?xml version="1.0" encoding="utf-8"?>
  2 +<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/assets"/><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/build/intermediates/shader_assets/debug/compileDebugShaders/out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/debug/assets"/></dataSet></merger>
  1 +<?xml version="1.0" encoding="utf-8"?>
  2 +<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/res"/><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/build/generated/res/rs/debug"/><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/res"/><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/build/generated/res/rs/debug"/><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/debug/res"/></dataSet><mergedItems/></merger>
  1 +<?xml version="1.0" encoding="utf-8"?>
  2 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3 + package="com.theweflex.react"
  4 + android:versionCode="1"
  5 + android:versionName="1.0" >
  6 +
  7 + <uses-sdk
  8 + android:minSdkVersion="16"
  9 + android:targetSdkVersion="28" />
  10 +
  11 + <uses-permission android:name="android.permission.INTERNET" />
  12 + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  13 + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  14 + <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  15 + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  16 +
  17 +</manifest>
  1 +1<?xml version="1.0" encoding="utf-8"?>
  2 +2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3 +3 package="com.theweflex.react"
  4 +4 android:versionCode="1"
  5 +5 android:versionName="1.0" >
  6 +6
  7 +7 <uses-sdk
  8 +8 android:minSdkVersion="16"
  9 +8-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  10 +9 android:targetSdkVersion="28" />
  11 +9-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  12 +10
  13 +11 <uses-permission android:name="android.permission.INTERNET" />
  14 +11-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:3:5-66
  15 +11-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:3:22-64
  16 +12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  17 +12-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:4:5-78
  18 +12-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:4:22-76
  19 +13 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  20 +13-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:5:5-75
  21 +13-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:5:22-73
  22 +14 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
  23 +14-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:6:5-74
  24 +14-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:6:22-72
  25 +15 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  26 +15-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:7:5-80
  27 +15-->/Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:7:22-78
  28 +16
  29 +17</manifest>
  1 +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"react-native-wechat-lib-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.theweflex.react","split":""}}]
  1 +com.theweflex.react
  2 +anim abc_fade_in
  3 +anim abc_fade_out
  4 +anim abc_grow_fade_in_from_bottom
  5 +anim abc_popup_enter
  6 +anim abc_popup_exit
  7 +anim abc_shrink_fade_out_from_bottom
  8 +anim abc_slide_in_bottom
  9 +anim abc_slide_in_top
  10 +anim abc_slide_out_bottom
  11 +anim abc_slide_out_top
  12 +anim abc_tooltip_enter
  13 +anim abc_tooltip_exit
  14 +anim catalyst_fade_in
  15 +anim catalyst_fade_out
  16 +anim catalyst_push_up_in
  17 +anim catalyst_push_up_out
  18 +anim catalyst_slide_down
  19 +anim catalyst_slide_up
  20 +attr actionBarDivider
  21 +attr actionBarItemBackground
  22 +attr actionBarPopupTheme
  23 +attr actionBarSize
  24 +attr actionBarSplitStyle
  25 +attr actionBarStyle
  26 +attr actionBarTabBarStyle
  27 +attr actionBarTabStyle
  28 +attr actionBarTabTextStyle
  29 +attr actionBarTheme
  30 +attr actionBarWidgetTheme
  31 +attr actionButtonStyle
  32 +attr actionDropDownStyle
  33 +attr actionLayout
  34 +attr actionMenuTextAppearance
  35 +attr actionMenuTextColor
  36 +attr actionModeBackground
  37 +attr actionModeCloseButtonStyle
  38 +attr actionModeCloseDrawable
  39 +attr actionModeCopyDrawable
  40 +attr actionModeCutDrawable
  41 +attr actionModeFindDrawable
  42 +attr actionModePasteDrawable
  43 +attr actionModePopupWindowStyle
  44 +attr actionModeSelectAllDrawable
  45 +attr actionModeShareDrawable
  46 +attr actionModeSplitBackground
  47 +attr actionModeStyle
  48 +attr actionModeWebSearchDrawable
  49 +attr actionOverflowButtonStyle
  50 +attr actionOverflowMenuStyle
  51 +attr actionProviderClass
  52 +attr actionViewClass
  53 +attr activityChooserViewStyle
  54 +attr actualImageResource
  55 +attr actualImageScaleType
  56 +attr actualImageUri
  57 +attr alertDialogButtonGroupStyle
  58 +attr alertDialogCenterButtons
  59 +attr alertDialogStyle
  60 +attr alertDialogTheme
  61 +attr allowStacking
  62 +attr alpha
  63 +attr alphabeticModifiers
  64 +attr arrowHeadLength
  65 +attr arrowShaftLength
  66 +attr autoCompleteTextViewStyle
  67 +attr autoSizeMaxTextSize
  68 +attr autoSizeMinTextSize
  69 +attr autoSizePresetSizes
  70 +attr autoSizeStepGranularity
  71 +attr autoSizeTextType
  72 +attr background
  73 +attr backgroundImage
  74 +attr backgroundSplit
  75 +attr backgroundStacked
  76 +attr backgroundTint
  77 +attr backgroundTintMode
  78 +attr barLength
  79 +attr borderlessButtonStyle
  80 +attr buttonBarButtonStyle
  81 +attr buttonBarNegativeButtonStyle
  82 +attr buttonBarNeutralButtonStyle
  83 +attr buttonBarPositiveButtonStyle
  84 +attr buttonBarStyle
  85 +attr buttonGravity
  86 +attr buttonIconDimen
  87 +attr buttonPanelSideLayout
  88 +attr buttonStyle
  89 +attr buttonStyleSmall
  90 +attr buttonTint
  91 +attr buttonTintMode
  92 +attr checkboxStyle
  93 +attr checkedTextViewStyle
  94 +attr closeIcon
  95 +attr closeItemLayout
  96 +attr collapseContentDescription
  97 +attr collapseIcon
  98 +attr color
  99 +attr colorAccent
  100 +attr colorBackgroundFloating
  101 +attr colorButtonNormal
  102 +attr colorControlActivated
  103 +attr colorControlHighlight
  104 +attr colorControlNormal
  105 +attr colorError
  106 +attr colorPrimary
  107 +attr colorPrimaryDark
  108 +attr colorSwitchThumbNormal
  109 +attr commitIcon
  110 +attr contentDescription
  111 +attr contentInsetEnd
  112 +attr contentInsetEndWithActions
  113 +attr contentInsetLeft
  114 +attr contentInsetRight
  115 +attr contentInsetStart
  116 +attr contentInsetStartWithNavigation
  117 +attr controlBackground
  118 +attr coordinatorLayoutStyle
  119 +attr customNavigationLayout
  120 +attr defaultQueryHint
  121 +attr dialogCornerRadius
  122 +attr dialogPreferredPadding
  123 +attr dialogTheme
  124 +attr displayOptions
  125 +attr divider
  126 +attr dividerHorizontal
  127 +attr dividerPadding
  128 +attr dividerVertical
  129 +attr drawableSize
  130 +attr drawerArrowStyle
  131 +attr dropDownListViewStyle
  132 +attr dropdownListPreferredItemHeight
  133 +attr editTextBackground
  134 +attr editTextColor
  135 +attr editTextStyle
  136 +attr elevation
  137 +attr expandActivityOverflowButtonDrawable
  138 +attr fadeDuration
  139 +attr failureImage
  140 +attr failureImageScaleType
  141 +attr firstBaselineToTopHeight
  142 +attr font
  143 +attr fontFamily
  144 +attr fontProviderAuthority
  145 +attr fontProviderCerts
  146 +attr fontProviderFetchStrategy
  147 +attr fontProviderFetchTimeout
  148 +attr fontProviderPackage
  149 +attr fontProviderQuery
  150 +attr fontStyle
  151 +attr fontVariationSettings
  152 +attr fontWeight
  153 +attr gapBetweenBars
  154 +attr goIcon
  155 +attr height
  156 +attr hideOnContentScroll
  157 +attr homeAsUpIndicator
  158 +attr homeLayout
  159 +attr icon
  160 +attr iconTint
  161 +attr iconTintMode
  162 +attr iconifiedByDefault
  163 +attr imageButtonStyle
  164 +attr indeterminateProgressStyle
  165 +attr initialActivityCount
  166 +attr isLightTheme
  167 +attr itemPadding
  168 +attr keylines
  169 +attr lastBaselineToBottomHeight
  170 +attr layout
  171 +attr layout_anchor
  172 +attr layout_anchorGravity
  173 +attr layout_behavior
  174 +attr layout_dodgeInsetEdges
  175 +attr layout_insetEdge
  176 +attr layout_keyline
  177 +attr lineHeight
  178 +attr listChoiceBackgroundIndicator
  179 +attr listDividerAlertDialog
  180 +attr listItemLayout
  181 +attr listLayout
  182 +attr listMenuViewStyle
  183 +attr listPopupWindowStyle
  184 +attr listPreferredItemHeight
  185 +attr listPreferredItemHeightLarge
  186 +attr listPreferredItemHeightSmall
  187 +attr listPreferredItemPaddingLeft
  188 +attr listPreferredItemPaddingRight
  189 +attr logo
  190 +attr logoDescription
  191 +attr maxButtonHeight
  192 +attr measureWithLargestChild
  193 +attr multiChoiceItemLayout
  194 +attr navigationContentDescription
  195 +attr navigationIcon
  196 +attr navigationMode
  197 +attr numericModifiers
  198 +attr overlapAnchor
  199 +attr overlayImage
  200 +attr paddingBottomNoButtons
  201 +attr paddingEnd
  202 +attr paddingStart
  203 +attr paddingTopNoTitle
  204 +attr panelBackground
  205 +attr panelMenuListTheme
  206 +attr panelMenuListWidth
  207 +attr placeholderImage
  208 +attr placeholderImageScaleType
  209 +attr popupMenuStyle
  210 +attr popupTheme
  211 +attr popupWindowStyle
  212 +attr preserveIconSpacing
  213 +attr pressedStateOverlayImage
  214 +attr progressBarAutoRotateInterval
  215 +attr progressBarImage
  216 +attr progressBarImageScaleType
  217 +attr progressBarPadding
  218 +attr progressBarStyle
  219 +attr queryBackground
  220 +attr queryHint
  221 +attr radioButtonStyle
  222 +attr ratingBarStyle
  223 +attr ratingBarStyleIndicator
  224 +attr ratingBarStyleSmall
  225 +attr retryImage
  226 +attr retryImageScaleType
  227 +attr roundAsCircle
  228 +attr roundBottomEnd
  229 +attr roundBottomLeft
  230 +attr roundBottomRight
  231 +attr roundBottomStart
  232 +attr roundTopEnd
  233 +attr roundTopLeft
  234 +attr roundTopRight
  235 +attr roundTopStart
  236 +attr roundWithOverlayColor
  237 +attr roundedCornerRadius
  238 +attr roundingBorderColor
  239 +attr roundingBorderPadding
  240 +attr roundingBorderWidth
  241 +attr searchHintIcon
  242 +attr searchIcon
  243 +attr searchViewStyle
  244 +attr seekBarStyle
  245 +attr selectableItemBackground
  246 +attr selectableItemBackgroundBorderless
  247 +attr showAsAction
  248 +attr showDividers
  249 +attr showText
  250 +attr showTitle
  251 +attr singleChoiceItemLayout
  252 +attr spinBars
  253 +attr spinnerDropDownItemStyle
  254 +attr spinnerStyle
  255 +attr splitTrack
  256 +attr srcCompat
  257 +attr state_above_anchor
  258 +attr statusBarBackground
  259 +attr subMenuArrow
  260 +attr submitBackground
  261 +attr subtitle
  262 +attr subtitleTextAppearance
  263 +attr subtitleTextColor
  264 +attr subtitleTextStyle
  265 +attr suggestionRowLayout
  266 +attr switchMinWidth
  267 +attr switchPadding
  268 +attr switchStyle
  269 +attr switchTextAppearance
  270 +attr textAllCaps
  271 +attr textAppearanceLargePopupMenu
  272 +attr textAppearanceListItem
  273 +attr textAppearanceListItemSecondary
  274 +attr textAppearanceListItemSmall
  275 +attr textAppearancePopupMenuHeader
  276 +attr textAppearanceSearchResultSubtitle
  277 +attr textAppearanceSearchResultTitle
  278 +attr textAppearanceSmallPopupMenu
  279 +attr textColorAlertDialogListItem
  280 +attr textColorSearchUrl
  281 +attr theme
  282 +attr thickness
  283 +attr thumbTextPadding
  284 +attr thumbTint
  285 +attr thumbTintMode
  286 +attr tickMark
  287 +attr tickMarkTint
  288 +attr tickMarkTintMode
  289 +attr tint
  290 +attr tintMode
  291 +attr title
  292 +attr titleMargin
  293 +attr titleMarginBottom
  294 +attr titleMarginEnd
  295 +attr titleMarginStart
  296 +attr titleMarginTop
  297 +attr titleMargins
  298 +attr titleTextAppearance
  299 +attr titleTextColor
  300 +attr titleTextStyle
  301 +attr toolbarNavigationButtonStyle
  302 +attr toolbarStyle
  303 +attr tooltipForegroundColor
  304 +attr tooltipFrameBackground
  305 +attr tooltipText
  306 +attr track
  307 +attr trackTint
  308 +attr trackTintMode
  309 +attr ttcIndex
  310 +attr viewAspectRatio
  311 +attr viewInflaterClass
  312 +attr voiceIcon
  313 +attr windowActionBar
  314 +attr windowActionBarOverlay
  315 +attr windowActionModeOverlay
  316 +attr windowFixedHeightMajor
  317 +attr windowFixedHeightMinor
  318 +attr windowFixedWidthMajor
  319 +attr windowFixedWidthMinor
  320 +attr windowMinWidthMajor
  321 +attr windowMinWidthMinor
  322 +attr windowNoTitle
  323 +bool abc_action_bar_embed_tabs
  324 +bool abc_allow_stacked_button_bar
  325 +bool abc_config_actionMenuItemAllCaps
  326 +color abc_background_cache_hint_selector_material_dark
  327 +color abc_background_cache_hint_selector_material_light
  328 +color abc_btn_colored_borderless_text_material
  329 +color abc_btn_colored_text_material
  330 +color abc_color_highlight_material
  331 +color abc_hint_foreground_material_dark
  332 +color abc_hint_foreground_material_light
  333 +color abc_input_method_navigation_guard
  334 +color abc_primary_text_disable_only_material_dark
  335 +color abc_primary_text_disable_only_material_light
  336 +color abc_primary_text_material_dark
  337 +color abc_primary_text_material_light
  338 +color abc_search_url_text
  339 +color abc_search_url_text_normal
  340 +color abc_search_url_text_pressed
  341 +color abc_search_url_text_selected
  342 +color abc_secondary_text_material_dark
  343 +color abc_secondary_text_material_light
  344 +color abc_tint_btn_checkable
  345 +color abc_tint_default
  346 +color abc_tint_edittext
  347 +color abc_tint_seek_thumb
  348 +color abc_tint_spinner
  349 +color abc_tint_switch_track
  350 +color accent_material_dark
  351 +color accent_material_light
  352 +color background_floating_material_dark
  353 +color background_floating_material_light
  354 +color background_material_dark
  355 +color background_material_light
  356 +color bright_foreground_disabled_material_dark
  357 +color bright_foreground_disabled_material_light
  358 +color bright_foreground_inverse_material_dark
  359 +color bright_foreground_inverse_material_light
  360 +color bright_foreground_material_dark
  361 +color bright_foreground_material_light
  362 +color button_material_dark
  363 +color button_material_light
  364 +color catalyst_redbox_background
  365 +color dim_foreground_disabled_material_dark
  366 +color dim_foreground_disabled_material_light
  367 +color dim_foreground_material_dark
  368 +color dim_foreground_material_light
  369 +color error_color_material_dark
  370 +color error_color_material_light
  371 +color foreground_material_dark
  372 +color foreground_material_light
  373 +color highlighted_text_material_dark
  374 +color highlighted_text_material_light
  375 +color material_blue_grey_800
  376 +color material_blue_grey_900
  377 +color material_blue_grey_950
  378 +color material_deep_teal_200
  379 +color material_deep_teal_500
  380 +color material_grey_100
  381 +color material_grey_300
  382 +color material_grey_50
  383 +color material_grey_600
  384 +color material_grey_800
  385 +color material_grey_850
  386 +color material_grey_900
  387 +color notification_action_color_filter
  388 +color notification_icon_bg_color
  389 +color primary_dark_material_dark
  390 +color primary_dark_material_light
  391 +color primary_material_dark
  392 +color primary_material_light
  393 +color primary_text_default_material_dark
  394 +color primary_text_default_material_light
  395 +color primary_text_disabled_material_dark
  396 +color primary_text_disabled_material_light
  397 +color ripple_material_dark
  398 +color ripple_material_light
  399 +color secondary_text_default_material_dark
  400 +color secondary_text_default_material_light
  401 +color secondary_text_disabled_material_dark
  402 +color secondary_text_disabled_material_light
  403 +color switch_thumb_disabled_material_dark
  404 +color switch_thumb_disabled_material_light
  405 +color switch_thumb_material_dark
  406 +color switch_thumb_material_light
  407 +color switch_thumb_normal_material_dark
  408 +color switch_thumb_normal_material_light
  409 +color tooltip_background_dark
  410 +color tooltip_background_light
  411 +dimen abc_action_bar_content_inset_material
  412 +dimen abc_action_bar_content_inset_with_nav
  413 +dimen abc_action_bar_default_height_material
  414 +dimen abc_action_bar_default_padding_end_material
  415 +dimen abc_action_bar_default_padding_start_material
  416 +dimen abc_action_bar_elevation_material
  417 +dimen abc_action_bar_icon_vertical_padding_material
  418 +dimen abc_action_bar_overflow_padding_end_material
  419 +dimen abc_action_bar_overflow_padding_start_material
  420 +dimen abc_action_bar_stacked_max_height
  421 +dimen abc_action_bar_stacked_tab_max_width
  422 +dimen abc_action_bar_subtitle_bottom_margin_material
  423 +dimen abc_action_bar_subtitle_top_margin_material
  424 +dimen abc_action_button_min_height_material
  425 +dimen abc_action_button_min_width_material
  426 +dimen abc_action_button_min_width_overflow_material
  427 +dimen abc_alert_dialog_button_bar_height
  428 +dimen abc_alert_dialog_button_dimen
  429 +dimen abc_button_inset_horizontal_material
  430 +dimen abc_button_inset_vertical_material
  431 +dimen abc_button_padding_horizontal_material
  432 +dimen abc_button_padding_vertical_material
  433 +dimen abc_cascading_menus_min_smallest_width
  434 +dimen abc_config_prefDialogWidth
  435 +dimen abc_control_corner_material
  436 +dimen abc_control_inset_material
  437 +dimen abc_control_padding_material
  438 +dimen abc_dialog_corner_radius_material
  439 +dimen abc_dialog_fixed_height_major
  440 +dimen abc_dialog_fixed_height_minor
  441 +dimen abc_dialog_fixed_width_major
  442 +dimen abc_dialog_fixed_width_minor
  443 +dimen abc_dialog_list_padding_bottom_no_buttons
  444 +dimen abc_dialog_list_padding_top_no_title
  445 +dimen abc_dialog_min_width_major
  446 +dimen abc_dialog_min_width_minor
  447 +dimen abc_dialog_padding_material
  448 +dimen abc_dialog_padding_top_material
  449 +dimen abc_dialog_title_divider_material
  450 +dimen abc_disabled_alpha_material_dark
  451 +dimen abc_disabled_alpha_material_light
  452 +dimen abc_dropdownitem_icon_width
  453 +dimen abc_dropdownitem_text_padding_left
  454 +dimen abc_dropdownitem_text_padding_right
  455 +dimen abc_edit_text_inset_bottom_material
  456 +dimen abc_edit_text_inset_horizontal_material
  457 +dimen abc_edit_text_inset_top_material
  458 +dimen abc_floating_window_z
  459 +dimen abc_list_item_padding_horizontal_material
  460 +dimen abc_panel_menu_list_width
  461 +dimen abc_progress_bar_height_material
  462 +dimen abc_search_view_preferred_height
  463 +dimen abc_search_view_preferred_width
  464 +dimen abc_seekbar_track_background_height_material
  465 +dimen abc_seekbar_track_progress_height_material
  466 +dimen abc_select_dialog_padding_start_material
  467 +dimen abc_switch_padding
  468 +dimen abc_text_size_body_1_material
  469 +dimen abc_text_size_body_2_material
  470 +dimen abc_text_size_button_material
  471 +dimen abc_text_size_caption_material
  472 +dimen abc_text_size_display_1_material
  473 +dimen abc_text_size_display_2_material
  474 +dimen abc_text_size_display_3_material
  475 +dimen abc_text_size_display_4_material
  476 +dimen abc_text_size_headline_material
  477 +dimen abc_text_size_large_material
  478 +dimen abc_text_size_medium_material
  479 +dimen abc_text_size_menu_header_material
  480 +dimen abc_text_size_menu_material
  481 +dimen abc_text_size_small_material
  482 +dimen abc_text_size_subhead_material
  483 +dimen abc_text_size_subtitle_material_toolbar
  484 +dimen abc_text_size_title_material
  485 +dimen abc_text_size_title_material_toolbar
  486 +dimen compat_button_inset_horizontal_material
  487 +dimen compat_button_inset_vertical_material
  488 +dimen compat_button_padding_horizontal_material
  489 +dimen compat_button_padding_vertical_material
  490 +dimen compat_control_corner_material
  491 +dimen compat_notification_large_icon_max_height
  492 +dimen compat_notification_large_icon_max_width
  493 +dimen disabled_alpha_material_dark
  494 +dimen disabled_alpha_material_light
  495 +dimen highlight_alpha_material_colored
  496 +dimen highlight_alpha_material_dark
  497 +dimen highlight_alpha_material_light
  498 +dimen hint_alpha_material_dark
  499 +dimen hint_alpha_material_light
  500 +dimen hint_pressed_alpha_material_dark
  501 +dimen hint_pressed_alpha_material_light
  502 +dimen notification_action_icon_size
  503 +dimen notification_action_text_size
  504 +dimen notification_big_circle_margin
  505 +dimen notification_content_margin_start
  506 +dimen notification_large_icon_height
  507 +dimen notification_large_icon_width
  508 +dimen notification_main_column_padding_top
  509 +dimen notification_media_narrow_margin
  510 +dimen notification_right_icon_size
  511 +dimen notification_right_side_padding_top
  512 +dimen notification_small_icon_background_padding
  513 +dimen notification_small_icon_size_as_large
  514 +dimen notification_subtext_size
  515 +dimen notification_top_pad
  516 +dimen notification_top_pad_large_text
  517 +dimen tooltip_corner_radius
  518 +dimen tooltip_horizontal_padding
  519 +dimen tooltip_margin
  520 +dimen tooltip_precise_anchor_extra_offset
  521 +dimen tooltip_precise_anchor_threshold
  522 +dimen tooltip_vertical_padding
  523 +dimen tooltip_y_offset_non_touch
  524 +dimen tooltip_y_offset_touch
  525 +drawable abc_ab_share_pack_mtrl_alpha
  526 +drawable abc_action_bar_item_background_material
  527 +drawable abc_btn_borderless_material
  528 +drawable abc_btn_check_material
  529 +drawable abc_btn_check_to_on_mtrl_000
  530 +drawable abc_btn_check_to_on_mtrl_015
  531 +drawable abc_btn_colored_material
  532 +drawable abc_btn_default_mtrl_shape
  533 +drawable abc_btn_radio_material
  534 +drawable abc_btn_radio_to_on_mtrl_000
  535 +drawable abc_btn_radio_to_on_mtrl_015
  536 +drawable abc_btn_switch_to_on_mtrl_00001
  537 +drawable abc_btn_switch_to_on_mtrl_00012
  538 +drawable abc_cab_background_internal_bg
  539 +drawable abc_cab_background_top_material
  540 +drawable abc_cab_background_top_mtrl_alpha
  541 +drawable abc_control_background_material
  542 +drawable abc_dialog_material_background
  543 +drawable abc_edit_text_material
  544 +drawable abc_ic_ab_back_material
  545 +drawable abc_ic_arrow_drop_right_black_24dp
  546 +drawable abc_ic_clear_material
  547 +drawable abc_ic_commit_search_api_mtrl_alpha
  548 +drawable abc_ic_go_search_api_material
  549 +drawable abc_ic_menu_copy_mtrl_am_alpha
  550 +drawable abc_ic_menu_cut_mtrl_alpha
  551 +drawable abc_ic_menu_overflow_material
  552 +drawable abc_ic_menu_paste_mtrl_am_alpha
  553 +drawable abc_ic_menu_selectall_mtrl_alpha
  554 +drawable abc_ic_menu_share_mtrl_alpha
  555 +drawable abc_ic_search_api_material
  556 +drawable abc_ic_star_black_16dp
  557 +drawable abc_ic_star_black_36dp
  558 +drawable abc_ic_star_black_48dp
  559 +drawable abc_ic_star_half_black_16dp
  560 +drawable abc_ic_star_half_black_36dp
  561 +drawable abc_ic_star_half_black_48dp
  562 +drawable abc_ic_voice_search_api_material
  563 +drawable abc_item_background_holo_dark
  564 +drawable abc_item_background_holo_light
  565 +drawable abc_list_divider_material
  566 +drawable abc_list_divider_mtrl_alpha
  567 +drawable abc_list_focused_holo
  568 +drawable abc_list_longpressed_holo
  569 +drawable abc_list_pressed_holo_dark
  570 +drawable abc_list_pressed_holo_light
  571 +drawable abc_list_selector_background_transition_holo_dark
  572 +drawable abc_list_selector_background_transition_holo_light
  573 +drawable abc_list_selector_disabled_holo_dark
  574 +drawable abc_list_selector_disabled_holo_light
  575 +drawable abc_list_selector_holo_dark
  576 +drawable abc_list_selector_holo_light
  577 +drawable abc_menu_hardkey_panel_mtrl_mult
  578 +drawable abc_popup_background_mtrl_mult
  579 +drawable abc_ratingbar_indicator_material
  580 +drawable abc_ratingbar_material
  581 +drawable abc_ratingbar_small_material
  582 +drawable abc_scrubber_control_off_mtrl_alpha
  583 +drawable abc_scrubber_control_to_pressed_mtrl_000
  584 +drawable abc_scrubber_control_to_pressed_mtrl_005
  585 +drawable abc_scrubber_primary_mtrl_alpha
  586 +drawable abc_scrubber_track_mtrl_alpha
  587 +drawable abc_seekbar_thumb_material
  588 +drawable abc_seekbar_tick_mark_material
  589 +drawable abc_seekbar_track_material
  590 +drawable abc_spinner_mtrl_am_alpha
  591 +drawable abc_spinner_textfield_background_material
  592 +drawable abc_switch_thumb_material
  593 +drawable abc_switch_track_mtrl_alpha
  594 +drawable abc_tab_indicator_material
  595 +drawable abc_tab_indicator_mtrl_alpha
  596 +drawable abc_text_cursor_material
  597 +drawable abc_text_select_handle_left_mtrl_dark
  598 +drawable abc_text_select_handle_left_mtrl_light
  599 +drawable abc_text_select_handle_middle_mtrl_dark
  600 +drawable abc_text_select_handle_middle_mtrl_light
  601 +drawable abc_text_select_handle_right_mtrl_dark
  602 +drawable abc_text_select_handle_right_mtrl_light
  603 +drawable abc_textfield_activated_mtrl_alpha
  604 +drawable abc_textfield_default_mtrl_alpha
  605 +drawable abc_textfield_search_activated_mtrl_alpha
  606 +drawable abc_textfield_search_default_mtrl_alpha
  607 +drawable abc_textfield_search_material
  608 +drawable abc_vector_test
  609 +drawable notification_action_background
  610 +drawable notification_bg
  611 +drawable notification_bg_low
  612 +drawable notification_bg_low_normal
  613 +drawable notification_bg_low_pressed
  614 +drawable notification_bg_normal
  615 +drawable notification_bg_normal_pressed
  616 +drawable notification_icon_background
  617 +drawable notification_template_icon_bg
  618 +drawable notification_template_icon_low_bg
  619 +drawable notification_tile_bg
  620 +drawable notify_panel_notification_icon_bg
  621 +drawable redbox_top_border_background
  622 +drawable tooltip_frame_dark
  623 +drawable tooltip_frame_light
  624 +id accessibility_hint
  625 +id accessibility_role
  626 +id action_bar
  627 +id action_bar_activity_content
  628 +id action_bar_container
  629 +id action_bar_root
  630 +id action_bar_spinner
  631 +id action_bar_subtitle
  632 +id action_bar_title
  633 +id action_container
  634 +id action_context_bar
  635 +id action_divider
  636 +id action_image
  637 +id action_menu_divider
  638 +id action_menu_presenter
  639 +id action_mode_bar
  640 +id action_mode_bar_stub
  641 +id action_mode_close_button
  642 +id action_text
  643 +id actions
  644 +id activity_chooser_view_content
  645 +id add
  646 +id alertTitle
  647 +id async
  648 +id blocking
  649 +id bottom
  650 +id buttonPanel
  651 +id catalyst_redbox_title
  652 +id center
  653 +id centerCrop
  654 +id centerInside
  655 +id checkbox
  656 +id chronometer
  657 +id content
  658 +id contentPanel
  659 +id custom
  660 +id customPanel
  661 +id decor_content_parent
  662 +id default_activity_button
  663 +id edit_query
  664 +id end
  665 +id expand_activities_button
  666 +id expanded_menu
  667 +id fitBottomStart
  668 +id fitCenter
  669 +id fitEnd
  670 +id fitStart
  671 +id fitXY
  672 +id focusCrop
  673 +id forever
  674 +id fps_text
  675 +id group_divider
  676 +id home
  677 +id icon
  678 +id icon_group
  679 +id image
  680 +id info
  681 +id italic
  682 +id left
  683 +id line1
  684 +id line3
  685 +id listMode
  686 +id list_item
  687 +id message
  688 +id multiply
  689 +id none
  690 +id normal
  691 +id notification_background
  692 +id notification_main_column
  693 +id notification_main_column_container
  694 +id parentPanel
  695 +id progress_circular
  696 +id progress_horizontal
  697 +id radio
  698 +id react_test_id
  699 +id right
  700 +id right_icon
  701 +id right_side
  702 +id rn_frame_file
  703 +id rn_frame_method
  704 +id rn_redbox_copy_button
  705 +id rn_redbox_dismiss_button
  706 +id rn_redbox_line_separator
  707 +id rn_redbox_loading_indicator
  708 +id rn_redbox_reload_button
  709 +id rn_redbox_report_button
  710 +id rn_redbox_report_label
  711 +id rn_redbox_stack
  712 +id screen
  713 +id scrollIndicatorDown
  714 +id scrollIndicatorUp
  715 +id scrollView
  716 +id search_badge
  717 +id search_bar
  718 +id search_button
  719 +id search_close_btn
  720 +id search_edit_frame
  721 +id search_go_btn
  722 +id search_mag_icon
  723 +id search_plate
  724 +id search_src_text
  725 +id search_voice_btn
  726 +id select_dialog_listview
  727 +id shortcut
  728 +id spacer
  729 +id split_action_bar
  730 +id src_atop
  731 +id src_in
  732 +id src_over
  733 +id start
  734 +id submenuarrow
  735 +id submit_area
  736 +id tabMode
  737 +id tag_transition_group
  738 +id tag_unhandled_key_event_manager
  739 +id tag_unhandled_key_listeners
  740 +id text
  741 +id text2
  742 +id textSpacerNoButtons
  743 +id textSpacerNoTitle
  744 +id time
  745 +id title
  746 +id titleDividerNoCustom
  747 +id title_template
  748 +id top
  749 +id topPanel
  750 +id uniform
  751 +id up
  752 +id view_tag_instance_handle
  753 +id view_tag_native_id
  754 +id wrap_content
  755 +integer abc_config_activityDefaultDur
  756 +integer abc_config_activityShortDur
  757 +integer cancel_button_image_alpha
  758 +integer config_tooltipAnimTime
  759 +integer status_bar_notification_info_maxnum
  760 +layout abc_action_bar_title_item
  761 +layout abc_action_bar_up_container
  762 +layout abc_action_menu_item_layout
  763 +layout abc_action_menu_layout
  764 +layout abc_action_mode_bar
  765 +layout abc_action_mode_close_item_material
  766 +layout abc_activity_chooser_view
  767 +layout abc_activity_chooser_view_list_item
  768 +layout abc_alert_dialog_button_bar_material
  769 +layout abc_alert_dialog_material
  770 +layout abc_alert_dialog_title_material
  771 +layout abc_cascading_menu_item_layout
  772 +layout abc_dialog_title_material
  773 +layout abc_expanded_menu_layout
  774 +layout abc_list_menu_item_checkbox
  775 +layout abc_list_menu_item_icon
  776 +layout abc_list_menu_item_layout
  777 +layout abc_list_menu_item_radio
  778 +layout abc_popup_menu_header_item_layout
  779 +layout abc_popup_menu_item_layout
  780 +layout abc_screen_content_include
  781 +layout abc_screen_simple
  782 +layout abc_screen_simple_overlay_action_mode
  783 +layout abc_screen_toolbar
  784 +layout abc_search_dropdown_item_icons_2line
  785 +layout abc_search_view
  786 +layout abc_select_dialog_material
  787 +layout abc_tooltip
  788 +layout dev_loading_view
  789 +layout fps_view
  790 +layout notification_action
  791 +layout notification_action_tombstone
  792 +layout notification_template_custom_big
  793 +layout notification_template_icon_group
  794 +layout notification_template_part_chronometer
  795 +layout notification_template_part_time
  796 +layout redbox_item_frame
  797 +layout redbox_item_title
  798 +layout redbox_view
  799 +layout select_dialog_item_material
  800 +layout select_dialog_multichoice_material
  801 +layout select_dialog_singlechoice_material
  802 +layout support_simple_spinner_dropdown_item
  803 +string abc_action_bar_home_description
  804 +string abc_action_bar_up_description
  805 +string abc_action_menu_overflow_description
  806 +string abc_action_mode_done
  807 +string abc_activity_chooser_view_see_all
  808 +string abc_activitychooserview_choose_application
  809 +string abc_capital_off
  810 +string abc_capital_on
  811 +string abc_font_family_body_1_material
  812 +string abc_font_family_body_2_material
  813 +string abc_font_family_button_material
  814 +string abc_font_family_caption_material
  815 +string abc_font_family_display_1_material
  816 +string abc_font_family_display_2_material
  817 +string abc_font_family_display_3_material
  818 +string abc_font_family_display_4_material
  819 +string abc_font_family_headline_material
  820 +string abc_font_family_menu_material
  821 +string abc_font_family_subhead_material
  822 +string abc_font_family_title_material
  823 +string abc_menu_alt_shortcut_label
  824 +string abc_menu_ctrl_shortcut_label
  825 +string abc_menu_delete_shortcut_label
  826 +string abc_menu_enter_shortcut_label
  827 +string abc_menu_function_shortcut_label
  828 +string abc_menu_meta_shortcut_label
  829 +string abc_menu_shift_shortcut_label
  830 +string abc_menu_space_shortcut_label
  831 +string abc_menu_sym_shortcut_label
  832 +string abc_prepend_shortcut_label
  833 +string abc_search_hint
  834 +string abc_searchview_description_clear
  835 +string abc_searchview_description_query
  836 +string abc_searchview_description_search
  837 +string abc_searchview_description_submit
  838 +string abc_searchview_description_voice
  839 +string abc_shareactionprovider_share_with
  840 +string abc_shareactionprovider_share_with_application
  841 +string abc_toolbar_collapse_description
  842 +string adjustable_description
  843 +string catalyst_copy_button
  844 +string catalyst_debugjs
  845 +string catalyst_debugjs_nuclide
  846 +string catalyst_debugjs_nuclide_failure
  847 +string catalyst_debugjs_off
  848 +string catalyst_dismiss_button
  849 +string catalyst_element_inspector
  850 +string catalyst_heap_capture
  851 +string catalyst_hot_module_replacement
  852 +string catalyst_hot_module_replacement_off
  853 +string catalyst_jsload_error
  854 +string catalyst_live_reload
  855 +string catalyst_live_reload_off
  856 +string catalyst_loading_from_url
  857 +string catalyst_perf_monitor
  858 +string catalyst_perf_monitor_off
  859 +string catalyst_poke_sampling_profiler
  860 +string catalyst_reload_button
  861 +string catalyst_reloadjs
  862 +string catalyst_remotedbg_error
  863 +string catalyst_remotedbg_message
  864 +string catalyst_report_button
  865 +string catalyst_settings
  866 +string catalyst_settings_title
  867 +string header_description
  868 +string image_button_description
  869 +string image_description
  870 +string link_description
  871 +string search_description
  872 +string search_menu_title
  873 +string status_bar_notification_info_overflow
  874 +style AlertDialog_AppCompat
  875 +style AlertDialog_AppCompat_Light
  876 +style Animation_AppCompat_Dialog
  877 +style Animation_AppCompat_DropDownUp
  878 +style Animation_AppCompat_Tooltip
  879 +style Animation_Catalyst_RedBox
  880 +style Base_AlertDialog_AppCompat
  881 +style Base_AlertDialog_AppCompat_Light
  882 +style Base_Animation_AppCompat_Dialog
  883 +style Base_Animation_AppCompat_DropDownUp
  884 +style Base_Animation_AppCompat_Tooltip
  885 +style Base_DialogWindowTitleBackground_AppCompat
  886 +style Base_DialogWindowTitle_AppCompat
  887 +style Base_TextAppearance_AppCompat
  888 +style Base_TextAppearance_AppCompat_Body1
  889 +style Base_TextAppearance_AppCompat_Body2
  890 +style Base_TextAppearance_AppCompat_Button
  891 +style Base_TextAppearance_AppCompat_Caption
  892 +style Base_TextAppearance_AppCompat_Display1
  893 +style Base_TextAppearance_AppCompat_Display2
  894 +style Base_TextAppearance_AppCompat_Display3
  895 +style Base_TextAppearance_AppCompat_Display4
  896 +style Base_TextAppearance_AppCompat_Headline
  897 +style Base_TextAppearance_AppCompat_Inverse
  898 +style Base_TextAppearance_AppCompat_Large
  899 +style Base_TextAppearance_AppCompat_Large_Inverse
  900 +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
  901 +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
  902 +style Base_TextAppearance_AppCompat_Medium
  903 +style Base_TextAppearance_AppCompat_Medium_Inverse
  904 +style Base_TextAppearance_AppCompat_Menu
  905 +style Base_TextAppearance_AppCompat_SearchResult
  906 +style Base_TextAppearance_AppCompat_SearchResult_Subtitle
  907 +style Base_TextAppearance_AppCompat_SearchResult_Title
  908 +style Base_TextAppearance_AppCompat_Small
  909 +style Base_TextAppearance_AppCompat_Small_Inverse
  910 +style Base_TextAppearance_AppCompat_Subhead
  911 +style Base_TextAppearance_AppCompat_Subhead_Inverse
  912 +style Base_TextAppearance_AppCompat_Title
  913 +style Base_TextAppearance_AppCompat_Title_Inverse
  914 +style Base_TextAppearance_AppCompat_Tooltip
  915 +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
  916 +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
  917 +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
  918 +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title
  919 +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
  920 +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
  921 +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title
  922 +style Base_TextAppearance_AppCompat_Widget_Button
  923 +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
  924 +style Base_TextAppearance_AppCompat_Widget_Button_Colored
  925 +style Base_TextAppearance_AppCompat_Widget_Button_Inverse
  926 +style Base_TextAppearance_AppCompat_Widget_DropDownItem
  927 +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
  928 +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
  929 +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
  930 +style Base_TextAppearance_AppCompat_Widget_Switch
  931 +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
  932 +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
  933 +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
  934 +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title
  935 +style Base_ThemeOverlay_AppCompat
  936 +style Base_ThemeOverlay_AppCompat_ActionBar
  937 +style Base_ThemeOverlay_AppCompat_Dark
  938 +style Base_ThemeOverlay_AppCompat_Dark_ActionBar
  939 +style Base_ThemeOverlay_AppCompat_Dialog
  940 +style Base_ThemeOverlay_AppCompat_Dialog_Alert
  941 +style Base_ThemeOverlay_AppCompat_Light
  942 +style Base_Theme_AppCompat
  943 +style Base_Theme_AppCompat_CompactMenu
  944 +style Base_Theme_AppCompat_Dialog
  945 +style Base_Theme_AppCompat_DialogWhenLarge
  946 +style Base_Theme_AppCompat_Dialog_Alert
  947 +style Base_Theme_AppCompat_Dialog_FixedSize
  948 +style Base_Theme_AppCompat_Dialog_MinWidth
  949 +style Base_Theme_AppCompat_Light
  950 +style Base_Theme_AppCompat_Light_DarkActionBar
  951 +style Base_Theme_AppCompat_Light_Dialog
  952 +style Base_Theme_AppCompat_Light_DialogWhenLarge
  953 +style Base_Theme_AppCompat_Light_Dialog_Alert
  954 +style Base_Theme_AppCompat_Light_Dialog_FixedSize
  955 +style Base_Theme_AppCompat_Light_Dialog_MinWidth
  956 +style Base_V21_ThemeOverlay_AppCompat_Dialog
  957 +style Base_V21_Theme_AppCompat
  958 +style Base_V21_Theme_AppCompat_Dialog
  959 +style Base_V21_Theme_AppCompat_Light
  960 +style Base_V21_Theme_AppCompat_Light_Dialog
  961 +style Base_V22_Theme_AppCompat
  962 +style Base_V22_Theme_AppCompat_Light
  963 +style Base_V23_Theme_AppCompat
  964 +style Base_V23_Theme_AppCompat_Light
  965 +style Base_V26_Theme_AppCompat
  966 +style Base_V26_Theme_AppCompat_Light
  967 +style Base_V26_Widget_AppCompat_Toolbar
  968 +style Base_V28_Theme_AppCompat
  969 +style Base_V28_Theme_AppCompat_Light
  970 +style Base_V7_ThemeOverlay_AppCompat_Dialog
  971 +style Base_V7_Theme_AppCompat
  972 +style Base_V7_Theme_AppCompat_Dialog
  973 +style Base_V7_Theme_AppCompat_Light
  974 +style Base_V7_Theme_AppCompat_Light_Dialog
  975 +style Base_V7_Widget_AppCompat_AutoCompleteTextView
  976 +style Base_V7_Widget_AppCompat_EditText
  977 +style Base_V7_Widget_AppCompat_Toolbar
  978 +style Base_Widget_AppCompat_ActionBar
  979 +style Base_Widget_AppCompat_ActionBar_Solid
  980 +style Base_Widget_AppCompat_ActionBar_TabBar
  981 +style Base_Widget_AppCompat_ActionBar_TabText
  982 +style Base_Widget_AppCompat_ActionBar_TabView
  983 +style Base_Widget_AppCompat_ActionButton
  984 +style Base_Widget_AppCompat_ActionButton_CloseMode
  985 +style Base_Widget_AppCompat_ActionButton_Overflow
  986 +style Base_Widget_AppCompat_ActionMode
  987 +style Base_Widget_AppCompat_ActivityChooserView
  988 +style Base_Widget_AppCompat_AutoCompleteTextView
  989 +style Base_Widget_AppCompat_Button
  990 +style Base_Widget_AppCompat_ButtonBar
  991 +style Base_Widget_AppCompat_ButtonBar_AlertDialog
  992 +style Base_Widget_AppCompat_Button_Borderless
  993 +style Base_Widget_AppCompat_Button_Borderless_Colored
  994 +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
  995 +style Base_Widget_AppCompat_Button_Colored
  996 +style Base_Widget_AppCompat_Button_Small
  997 +style Base_Widget_AppCompat_CompoundButton_CheckBox
  998 +style Base_Widget_AppCompat_CompoundButton_RadioButton
  999 +style Base_Widget_AppCompat_CompoundButton_Switch
  1000 +style Base_Widget_AppCompat_DrawerArrowToggle
  1001 +style Base_Widget_AppCompat_DrawerArrowToggle_Common
  1002 +style Base_Widget_AppCompat_DropDownItem_Spinner
  1003 +style Base_Widget_AppCompat_EditText
  1004 +style Base_Widget_AppCompat_ImageButton
  1005 +style Base_Widget_AppCompat_Light_ActionBar
  1006 +style Base_Widget_AppCompat_Light_ActionBar_Solid
  1007 +style Base_Widget_AppCompat_Light_ActionBar_TabBar
  1008 +style Base_Widget_AppCompat_Light_ActionBar_TabText
  1009 +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
  1010 +style Base_Widget_AppCompat_Light_ActionBar_TabView
  1011 +style Base_Widget_AppCompat_Light_PopupMenu
  1012 +style Base_Widget_AppCompat_Light_PopupMenu_Overflow
  1013 +style Base_Widget_AppCompat_ListMenuView
  1014 +style Base_Widget_AppCompat_ListPopupWindow
  1015 +style Base_Widget_AppCompat_ListView
  1016 +style Base_Widget_AppCompat_ListView_DropDown
  1017 +style Base_Widget_AppCompat_ListView_Menu
  1018 +style Base_Widget_AppCompat_PopupMenu
  1019 +style Base_Widget_AppCompat_PopupMenu_Overflow
  1020 +style Base_Widget_AppCompat_PopupWindow
  1021 +style Base_Widget_AppCompat_ProgressBar
  1022 +style Base_Widget_AppCompat_ProgressBar_Horizontal
  1023 +style Base_Widget_AppCompat_RatingBar
  1024 +style Base_Widget_AppCompat_RatingBar_Indicator
  1025 +style Base_Widget_AppCompat_RatingBar_Small
  1026 +style Base_Widget_AppCompat_SearchView
  1027 +style Base_Widget_AppCompat_SearchView_ActionBar
  1028 +style Base_Widget_AppCompat_SeekBar
  1029 +style Base_Widget_AppCompat_SeekBar_Discrete
  1030 +style Base_Widget_AppCompat_Spinner
  1031 +style Base_Widget_AppCompat_Spinner_Underlined
  1032 +style Base_Widget_AppCompat_TextView_SpinnerItem
  1033 +style Base_Widget_AppCompat_Toolbar
  1034 +style Base_Widget_AppCompat_Toolbar_Button_Navigation
  1035 +style CalendarDatePickerDialog
  1036 +style CalendarDatePickerStyle
  1037 +style ClockTimePickerDialog
  1038 +style ClockTimePickerStyle
  1039 +style DialogAnimationFade
  1040 +style DialogAnimationSlide
  1041 +style Platform_AppCompat
  1042 +style Platform_AppCompat_Light
  1043 +style Platform_ThemeOverlay_AppCompat
  1044 +style Platform_ThemeOverlay_AppCompat_Dark
  1045 +style Platform_ThemeOverlay_AppCompat_Light
  1046 +style Platform_V21_AppCompat
  1047 +style Platform_V21_AppCompat_Light
  1048 +style Platform_V25_AppCompat
  1049 +style Platform_V25_AppCompat_Light
  1050 +style Platform_Widget_AppCompat_Spinner
  1051 +style RtlOverlay_DialogWindowTitle_AppCompat
  1052 +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
  1053 +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon
  1054 +style RtlOverlay_Widget_AppCompat_PopupMenuItem
  1055 +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
  1056 +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
  1057 +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
  1058 +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
  1059 +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
  1060 +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon
  1061 +style RtlOverlay_Widget_AppCompat_Search_DropDown
  1062 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
  1063 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
  1064 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query
  1065 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text
  1066 +style RtlUnderlay_Widget_AppCompat_ActionButton
  1067 +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
  1068 +style SpinnerDatePickerDialog
  1069 +style SpinnerDatePickerStyle
  1070 +style SpinnerTimePickerDialog
  1071 +style SpinnerTimePickerStyle
  1072 +style TextAppearance_AppCompat
  1073 +style TextAppearance_AppCompat_Body1
  1074 +style TextAppearance_AppCompat_Body2
  1075 +style TextAppearance_AppCompat_Button
  1076 +style TextAppearance_AppCompat_Caption
  1077 +style TextAppearance_AppCompat_Display1
  1078 +style TextAppearance_AppCompat_Display2
  1079 +style TextAppearance_AppCompat_Display3
  1080 +style TextAppearance_AppCompat_Display4
  1081 +style TextAppearance_AppCompat_Headline
  1082 +style TextAppearance_AppCompat_Inverse
  1083 +style TextAppearance_AppCompat_Large
  1084 +style TextAppearance_AppCompat_Large_Inverse
  1085 +style TextAppearance_AppCompat_Light_SearchResult_Subtitle
  1086 +style TextAppearance_AppCompat_Light_SearchResult_Title
  1087 +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
  1088 +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
  1089 +style TextAppearance_AppCompat_Medium
  1090 +style TextAppearance_AppCompat_Medium_Inverse
  1091 +style TextAppearance_AppCompat_Menu
  1092 +style TextAppearance_AppCompat_SearchResult_Subtitle
  1093 +style TextAppearance_AppCompat_SearchResult_Title
  1094 +style TextAppearance_AppCompat_Small
  1095 +style TextAppearance_AppCompat_Small_Inverse
  1096 +style TextAppearance_AppCompat_Subhead
  1097 +style TextAppearance_AppCompat_Subhead_Inverse
  1098 +style TextAppearance_AppCompat_Title
  1099 +style TextAppearance_AppCompat_Title_Inverse
  1100 +style TextAppearance_AppCompat_Tooltip
  1101 +style TextAppearance_AppCompat_Widget_ActionBar_Menu
  1102 +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle
  1103 +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
  1104 +style TextAppearance_AppCompat_Widget_ActionBar_Title
  1105 +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
  1106 +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle
  1107 +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
  1108 +style TextAppearance_AppCompat_Widget_ActionMode_Title
  1109 +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
  1110 +style TextAppearance_AppCompat_Widget_Button
  1111 +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored
  1112 +style TextAppearance_AppCompat_Widget_Button_Colored
  1113 +style TextAppearance_AppCompat_Widget_Button_Inverse
  1114 +style TextAppearance_AppCompat_Widget_DropDownItem
  1115 +style TextAppearance_AppCompat_Widget_PopupMenu_Header
  1116 +style TextAppearance_AppCompat_Widget_PopupMenu_Large
  1117 +style TextAppearance_AppCompat_Widget_PopupMenu_Small
  1118 +style TextAppearance_AppCompat_Widget_Switch
  1119 +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem
  1120 +style TextAppearance_Compat_Notification
  1121 +style TextAppearance_Compat_Notification_Info
  1122 +style TextAppearance_Compat_Notification_Line2
  1123 +style TextAppearance_Compat_Notification_Time
  1124 +style TextAppearance_Compat_Notification_Title
  1125 +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item
  1126 +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle
  1127 +style TextAppearance_Widget_AppCompat_Toolbar_Title
  1128 +style Theme
  1129 +style ThemeOverlay_AppCompat
  1130 +style ThemeOverlay_AppCompat_ActionBar
  1131 +style ThemeOverlay_AppCompat_Dark
  1132 +style ThemeOverlay_AppCompat_Dark_ActionBar
  1133 +style ThemeOverlay_AppCompat_Dialog
  1134 +style ThemeOverlay_AppCompat_Dialog_Alert
  1135 +style ThemeOverlay_AppCompat_Light
  1136 +style Theme_AppCompat
  1137 +style Theme_AppCompat_CompactMenu
  1138 +style Theme_AppCompat_DayNight
  1139 +style Theme_AppCompat_DayNight_DarkActionBar
  1140 +style Theme_AppCompat_DayNight_Dialog
  1141 +style Theme_AppCompat_DayNight_DialogWhenLarge
  1142 +style Theme_AppCompat_DayNight_Dialog_Alert
  1143 +style Theme_AppCompat_DayNight_Dialog_MinWidth
  1144 +style Theme_AppCompat_DayNight_NoActionBar
  1145 +style Theme_AppCompat_Dialog
  1146 +style Theme_AppCompat_DialogWhenLarge
  1147 +style Theme_AppCompat_Dialog_Alert
  1148 +style Theme_AppCompat_Dialog_MinWidth
  1149 +style Theme_AppCompat_Light
  1150 +style Theme_AppCompat_Light_DarkActionBar
  1151 +style Theme_AppCompat_Light_Dialog
  1152 +style Theme_AppCompat_Light_DialogWhenLarge
  1153 +style Theme_AppCompat_Light_Dialog_Alert
  1154 +style Theme_AppCompat_Light_Dialog_MinWidth
  1155 +style Theme_AppCompat_Light_NoActionBar
  1156 +style Theme_AppCompat_NoActionBar
  1157 +style Theme_Catalyst
  1158 +style Theme_Catalyst_RedBox
  1159 +style Theme_FullScreenDialog
  1160 +style Theme_FullScreenDialogAnimatedFade
  1161 +style Theme_FullScreenDialogAnimatedSlide
  1162 +style Theme_ReactNative_AppCompat_Light
  1163 +style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen
  1164 +style Widget_AppCompat_ActionBar
  1165 +style Widget_AppCompat_ActionBar_Solid
  1166 +style Widget_AppCompat_ActionBar_TabBar
  1167 +style Widget_AppCompat_ActionBar_TabText
  1168 +style Widget_AppCompat_ActionBar_TabView
  1169 +style Widget_AppCompat_ActionButton
  1170 +style Widget_AppCompat_ActionButton_CloseMode
  1171 +style Widget_AppCompat_ActionButton_Overflow
  1172 +style Widget_AppCompat_ActionMode
  1173 +style Widget_AppCompat_ActivityChooserView
  1174 +style Widget_AppCompat_AutoCompleteTextView
  1175 +style Widget_AppCompat_Button
  1176 +style Widget_AppCompat_ButtonBar
  1177 +style Widget_AppCompat_ButtonBar_AlertDialog
  1178 +style Widget_AppCompat_Button_Borderless
  1179 +style Widget_AppCompat_Button_Borderless_Colored
  1180 +style Widget_AppCompat_Button_ButtonBar_AlertDialog
  1181 +style Widget_AppCompat_Button_Colored
  1182 +style Widget_AppCompat_Button_Small
  1183 +style Widget_AppCompat_CompoundButton_CheckBox
  1184 +style Widget_AppCompat_CompoundButton_RadioButton
  1185 +style Widget_AppCompat_CompoundButton_Switch
  1186 +style Widget_AppCompat_DrawerArrowToggle
  1187 +style Widget_AppCompat_DropDownItem_Spinner
  1188 +style Widget_AppCompat_EditText
  1189 +style Widget_AppCompat_ImageButton
  1190 +style Widget_AppCompat_Light_ActionBar
  1191 +style Widget_AppCompat_Light_ActionBar_Solid
  1192 +style Widget_AppCompat_Light_ActionBar_Solid_Inverse
  1193 +style Widget_AppCompat_Light_ActionBar_TabBar
  1194 +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse
  1195 +style Widget_AppCompat_Light_ActionBar_TabText
  1196 +style Widget_AppCompat_Light_ActionBar_TabText_Inverse
  1197 +style Widget_AppCompat_Light_ActionBar_TabView
  1198 +style Widget_AppCompat_Light_ActionBar_TabView_Inverse
  1199 +style Widget_AppCompat_Light_ActionButton
  1200 +style Widget_AppCompat_Light_ActionButton_CloseMode
  1201 +style Widget_AppCompat_Light_ActionButton_Overflow
  1202 +style Widget_AppCompat_Light_ActionMode_Inverse
  1203 +style Widget_AppCompat_Light_ActivityChooserView
  1204 +style Widget_AppCompat_Light_AutoCompleteTextView
  1205 +style Widget_AppCompat_Light_DropDownItem_Spinner
  1206 +style Widget_AppCompat_Light_ListPopupWindow
  1207 +style Widget_AppCompat_Light_ListView_DropDown
  1208 +style Widget_AppCompat_Light_PopupMenu
  1209 +style Widget_AppCompat_Light_PopupMenu_Overflow
  1210 +style Widget_AppCompat_Light_SearchView
  1211 +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar
  1212 +style Widget_AppCompat_ListMenuView
  1213 +style Widget_AppCompat_ListPopupWindow
  1214 +style Widget_AppCompat_ListView
  1215 +style Widget_AppCompat_ListView_DropDown
  1216 +style Widget_AppCompat_ListView_Menu
  1217 +style Widget_AppCompat_PopupMenu
  1218 +style Widget_AppCompat_PopupMenu_Overflow
  1219 +style Widget_AppCompat_PopupWindow
  1220 +style Widget_AppCompat_ProgressBar
  1221 +style Widget_AppCompat_ProgressBar_Horizontal
  1222 +style Widget_AppCompat_RatingBar
  1223 +style Widget_AppCompat_RatingBar_Indicator
  1224 +style Widget_AppCompat_RatingBar_Small
  1225 +style Widget_AppCompat_SearchView
  1226 +style Widget_AppCompat_SearchView_ActionBar
  1227 +style Widget_AppCompat_SeekBar
  1228 +style Widget_AppCompat_SeekBar_Discrete
  1229 +style Widget_AppCompat_Spinner
  1230 +style Widget_AppCompat_Spinner_DropDown
  1231 +style Widget_AppCompat_Spinner_DropDown_ActionBar
  1232 +style Widget_AppCompat_Spinner_Underlined
  1233 +style Widget_AppCompat_TextView_SpinnerItem
  1234 +style Widget_AppCompat_Toolbar
  1235 +style Widget_AppCompat_Toolbar_Button_Navigation
  1236 +style Widget_Compat_NotificationActionContainer
  1237 +style Widget_Compat_NotificationActionText
  1238 +style Widget_Support_CoordinatorLayout
  1239 +style redboxButton
  1240 +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle
  1241 +styleable ActionBarLayout android_layout_gravity
  1242 +styleable ActionMenuItemView android_minWidth
  1243 +styleable ActionMenuView
  1244 +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle
  1245 +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount
  1246 +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout
  1247 +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
  1248 +styleable AnimatedStateListDrawableItem android_drawable android_id
  1249 +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId
  1250 +styleable AppCompatImageView android_src srcCompat tint tintMode
  1251 +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode
  1252 +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance
  1253 +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType firstBaselineToTopHeight fontFamily lastBaselineToBottomHeight lineHeight textAllCaps
  1254 +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
  1255 +styleable ButtonBarLayout allowStacking
  1256 +styleable ColorStateListItem alpha android_alpha android_color
  1257 +styleable CompoundButton android_button buttonTint buttonTintMode
  1258 +styleable CoordinatorLayout keylines statusBarBackground
  1259 +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline
  1260 +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
  1261 +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery
  1262 +styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex
  1263 +styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio
  1264 +styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type
  1265 +styleable GradientColorItem android_color android_offset
  1266 +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers
  1267 +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width
  1268 +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
  1269 +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible
  1270 +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText
  1271 +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow
  1272 +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor
  1273 +styleable PopupWindowBackgroundState state_above_anchor
  1274 +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle
  1275 +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon
  1276 +styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio
  1277 +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme
  1278 +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
  1279 +styleable StateListDrawableItem android_drawable
  1280 +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode
  1281 +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textSize android_textStyle android_typeface fontFamily textAllCaps
  1282 +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor
  1283 +styleable View android_focusable android_theme paddingEnd paddingStart theme
  1284 +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode
  1285 +styleable ViewStubCompat android_id android_inflatedId android_layout
  1286 +xml rn_dev_preferences
  1 +int anim abc_fade_in 0x7f010001
  2 +int anim abc_fade_out 0x7f010002
  3 +int anim abc_grow_fade_in_from_bottom 0x7f010003
  4 +int anim abc_popup_enter 0x7f010004
  5 +int anim abc_popup_exit 0x7f010005
  6 +int anim abc_shrink_fade_out_from_bottom 0x7f010006
  7 +int anim abc_slide_in_bottom 0x7f010007
  8 +int anim abc_slide_in_top 0x7f010008
  9 +int anim abc_slide_out_bottom 0x7f010009
  10 +int anim abc_slide_out_top 0x7f01000a
  11 +int anim abc_tooltip_enter 0x7f01000b
  12 +int anim abc_tooltip_exit 0x7f01000c
  13 +int anim catalyst_fade_in 0x7f01000d
  14 +int anim catalyst_fade_out 0x7f01000e
  15 +int anim catalyst_push_up_in 0x7f01000f
  16 +int anim catalyst_push_up_out 0x7f010010
  17 +int anim catalyst_slide_down 0x7f010011
  18 +int anim catalyst_slide_up 0x7f010012
  19 +int attr actionBarDivider 0x7f040001
  20 +int attr actionBarItemBackground 0x7f040002
  21 +int attr actionBarPopupTheme 0x7f040003
  22 +int attr actionBarSize 0x7f040004
  23 +int attr actionBarSplitStyle 0x7f040005
  24 +int attr actionBarStyle 0x7f040006
  25 +int attr actionBarTabBarStyle 0x7f040007
  26 +int attr actionBarTabStyle 0x7f040008
  27 +int attr actionBarTabTextStyle 0x7f040009
  28 +int attr actionBarTheme 0x7f04000a
  29 +int attr actionBarWidgetTheme 0x7f04000b
  30 +int attr actionButtonStyle 0x7f04000c
  31 +int attr actionDropDownStyle 0x7f04000d
  32 +int attr actionLayout 0x7f04000e
  33 +int attr actionMenuTextAppearance 0x7f04000f
  34 +int attr actionMenuTextColor 0x7f040010
  35 +int attr actionModeBackground 0x7f040011
  36 +int attr actionModeCloseButtonStyle 0x7f040012
  37 +int attr actionModeCloseDrawable 0x7f040013
  38 +int attr actionModeCopyDrawable 0x7f040014
  39 +int attr actionModeCutDrawable 0x7f040015
  40 +int attr actionModeFindDrawable 0x7f040016
  41 +int attr actionModePasteDrawable 0x7f040017
  42 +int attr actionModePopupWindowStyle 0x7f040018
  43 +int attr actionModeSelectAllDrawable 0x7f040019
  44 +int attr actionModeShareDrawable 0x7f04001a
  45 +int attr actionModeSplitBackground 0x7f04001b
  46 +int attr actionModeStyle 0x7f04001c
  47 +int attr actionModeWebSearchDrawable 0x7f04001d
  48 +int attr actionOverflowButtonStyle 0x7f04001e
  49 +int attr actionOverflowMenuStyle 0x7f04001f
  50 +int attr actionProviderClass 0x7f040020
  51 +int attr actionViewClass 0x7f040021
  52 +int attr activityChooserViewStyle 0x7f040022
  53 +int attr actualImageResource 0x7f040023
  54 +int attr actualImageScaleType 0x7f040024
  55 +int attr actualImageUri 0x7f040025
  56 +int attr alertDialogButtonGroupStyle 0x7f040026
  57 +int attr alertDialogCenterButtons 0x7f040027
  58 +int attr alertDialogStyle 0x7f040028
  59 +int attr alertDialogTheme 0x7f040029
  60 +int attr allowStacking 0x7f04002a
  61 +int attr alpha 0x7f04002b
  62 +int attr alphabeticModifiers 0x7f04002c
  63 +int attr arrowHeadLength 0x7f04002d
  64 +int attr arrowShaftLength 0x7f04002e
  65 +int attr autoCompleteTextViewStyle 0x7f04002f
  66 +int attr autoSizeMaxTextSize 0x7f040030
  67 +int attr autoSizeMinTextSize 0x7f040031
  68 +int attr autoSizePresetSizes 0x7f040032
  69 +int attr autoSizeStepGranularity 0x7f040033
  70 +int attr autoSizeTextType 0x7f040034
  71 +int attr background 0x7f040035
  72 +int attr backgroundImage 0x7f040036
  73 +int attr backgroundSplit 0x7f040037
  74 +int attr backgroundStacked 0x7f040038
  75 +int attr backgroundTint 0x7f040039
  76 +int attr backgroundTintMode 0x7f04003a
  77 +int attr barLength 0x7f04003b
  78 +int attr borderlessButtonStyle 0x7f04003c
  79 +int attr buttonBarButtonStyle 0x7f04003d
  80 +int attr buttonBarNegativeButtonStyle 0x7f04003e
  81 +int attr buttonBarNeutralButtonStyle 0x7f04003f
  82 +int attr buttonBarPositiveButtonStyle 0x7f040040
  83 +int attr buttonBarStyle 0x7f040041
  84 +int attr buttonGravity 0x7f040042
  85 +int attr buttonIconDimen 0x7f040043
  86 +int attr buttonPanelSideLayout 0x7f040044
  87 +int attr buttonStyle 0x7f040045
  88 +int attr buttonStyleSmall 0x7f040046
  89 +int attr buttonTint 0x7f040047
  90 +int attr buttonTintMode 0x7f040048
  91 +int attr checkboxStyle 0x7f040049
  92 +int attr checkedTextViewStyle 0x7f04004a
  93 +int attr closeIcon 0x7f04004b
  94 +int attr closeItemLayout 0x7f04004c
  95 +int attr collapseContentDescription 0x7f04004d
  96 +int attr collapseIcon 0x7f04004e
  97 +int attr color 0x7f04004f
  98 +int attr colorAccent 0x7f040050
  99 +int attr colorBackgroundFloating 0x7f040051
  100 +int attr colorButtonNormal 0x7f040052
  101 +int attr colorControlActivated 0x7f040053
  102 +int attr colorControlHighlight 0x7f040054
  103 +int attr colorControlNormal 0x7f040055
  104 +int attr colorError 0x7f040056
  105 +int attr colorPrimary 0x7f040057
  106 +int attr colorPrimaryDark 0x7f040058
  107 +int attr colorSwitchThumbNormal 0x7f040059
  108 +int attr commitIcon 0x7f04005a
  109 +int attr contentDescription 0x7f04005b
  110 +int attr contentInsetEnd 0x7f04005c
  111 +int attr contentInsetEndWithActions 0x7f04005d
  112 +int attr contentInsetLeft 0x7f04005e
  113 +int attr contentInsetRight 0x7f04005f
  114 +int attr contentInsetStart 0x7f040060
  115 +int attr contentInsetStartWithNavigation 0x7f040061
  116 +int attr controlBackground 0x7f040062
  117 +int attr coordinatorLayoutStyle 0x7f040063
  118 +int attr customNavigationLayout 0x7f040064
  119 +int attr defaultQueryHint 0x7f040065
  120 +int attr dialogCornerRadius 0x7f040066
  121 +int attr dialogPreferredPadding 0x7f040067
  122 +int attr dialogTheme 0x7f040068
  123 +int attr displayOptions 0x7f040069
  124 +int attr divider 0x7f04006a
  125 +int attr dividerHorizontal 0x7f04006b
  126 +int attr dividerPadding 0x7f04006c
  127 +int attr dividerVertical 0x7f04006d
  128 +int attr drawableSize 0x7f04006e
  129 +int attr drawerArrowStyle 0x7f04006f
  130 +int attr dropDownListViewStyle 0x7f040070
  131 +int attr dropdownListPreferredItemHeight 0x7f040071
  132 +int attr editTextBackground 0x7f040072
  133 +int attr editTextColor 0x7f040073
  134 +int attr editTextStyle 0x7f040074
  135 +int attr elevation 0x7f040075
  136 +int attr expandActivityOverflowButtonDrawable 0x7f040076
  137 +int attr fadeDuration 0x7f040077
  138 +int attr failureImage 0x7f040078
  139 +int attr failureImageScaleType 0x7f040079
  140 +int attr firstBaselineToTopHeight 0x7f04007a
  141 +int attr font 0x7f04007b
  142 +int attr fontFamily 0x7f04007c
  143 +int attr fontProviderAuthority 0x7f04007d
  144 +int attr fontProviderCerts 0x7f04007e
  145 +int attr fontProviderFetchStrategy 0x7f04007f
  146 +int attr fontProviderFetchTimeout 0x7f040080
  147 +int attr fontProviderPackage 0x7f040081
  148 +int attr fontProviderQuery 0x7f040082
  149 +int attr fontStyle 0x7f040083
  150 +int attr fontVariationSettings 0x7f040084
  151 +int attr fontWeight 0x7f040085
  152 +int attr gapBetweenBars 0x7f040086
  153 +int attr goIcon 0x7f040087
  154 +int attr height 0x7f040088
  155 +int attr hideOnContentScroll 0x7f040089
  156 +int attr homeAsUpIndicator 0x7f04008a
  157 +int attr homeLayout 0x7f04008b
  158 +int attr icon 0x7f04008c
  159 +int attr iconTint 0x7f04008d
  160 +int attr iconTintMode 0x7f04008e
  161 +int attr iconifiedByDefault 0x7f04008f
  162 +int attr imageButtonStyle 0x7f040090
  163 +int attr indeterminateProgressStyle 0x7f040091
  164 +int attr initialActivityCount 0x7f040092
  165 +int attr isLightTheme 0x7f040093
  166 +int attr itemPadding 0x7f040094
  167 +int attr keylines 0x7f040095
  168 +int attr lastBaselineToBottomHeight 0x7f040096
  169 +int attr layout 0x7f040097
  170 +int attr layout_anchor 0x7f040098
  171 +int attr layout_anchorGravity 0x7f040099
  172 +int attr layout_behavior 0x7f04009a
  173 +int attr layout_dodgeInsetEdges 0x7f04009b
  174 +int attr layout_insetEdge 0x7f04009c
  175 +int attr layout_keyline 0x7f04009d
  176 +int attr lineHeight 0x7f04009e
  177 +int attr listChoiceBackgroundIndicator 0x7f04009f
  178 +int attr listDividerAlertDialog 0x7f0400a0
  179 +int attr listItemLayout 0x7f0400a1
  180 +int attr listLayout 0x7f0400a2
  181 +int attr listMenuViewStyle 0x7f0400a3
  182 +int attr listPopupWindowStyle 0x7f0400a4
  183 +int attr listPreferredItemHeight 0x7f0400a5
  184 +int attr listPreferredItemHeightLarge 0x7f0400a6
  185 +int attr listPreferredItemHeightSmall 0x7f0400a7
  186 +int attr listPreferredItemPaddingLeft 0x7f0400a8
  187 +int attr listPreferredItemPaddingRight 0x7f0400a9
  188 +int attr logo 0x7f0400aa
  189 +int attr logoDescription 0x7f0400ab
  190 +int attr maxButtonHeight 0x7f0400ac
  191 +int attr measureWithLargestChild 0x7f0400ad
  192 +int attr multiChoiceItemLayout 0x7f0400ae
  193 +int attr navigationContentDescription 0x7f0400af
  194 +int attr navigationIcon 0x7f0400b0
  195 +int attr navigationMode 0x7f0400b1
  196 +int attr numericModifiers 0x7f0400b2
  197 +int attr overlapAnchor 0x7f0400b3
  198 +int attr overlayImage 0x7f0400b4
  199 +int attr paddingBottomNoButtons 0x7f0400b5
  200 +int attr paddingEnd 0x7f0400b6
  201 +int attr paddingStart 0x7f0400b7
  202 +int attr paddingTopNoTitle 0x7f0400b8
  203 +int attr panelBackground 0x7f0400b9
  204 +int attr panelMenuListTheme 0x7f0400ba
  205 +int attr panelMenuListWidth 0x7f0400bb
  206 +int attr placeholderImage 0x7f0400bc
  207 +int attr placeholderImageScaleType 0x7f0400bd
  208 +int attr popupMenuStyle 0x7f0400be
  209 +int attr popupTheme 0x7f0400bf
  210 +int attr popupWindowStyle 0x7f0400c0
  211 +int attr preserveIconSpacing 0x7f0400c1
  212 +int attr pressedStateOverlayImage 0x7f0400c2
  213 +int attr progressBarAutoRotateInterval 0x7f0400c3
  214 +int attr progressBarImage 0x7f0400c4
  215 +int attr progressBarImageScaleType 0x7f0400c5
  216 +int attr progressBarPadding 0x7f0400c6
  217 +int attr progressBarStyle 0x7f0400c7
  218 +int attr queryBackground 0x7f0400c8
  219 +int attr queryHint 0x7f0400c9
  220 +int attr radioButtonStyle 0x7f0400ca
  221 +int attr ratingBarStyle 0x7f0400cb
  222 +int attr ratingBarStyleIndicator 0x7f0400cc
  223 +int attr ratingBarStyleSmall 0x7f0400cd
  224 +int attr retryImage 0x7f0400ce
  225 +int attr retryImageScaleType 0x7f0400cf
  226 +int attr roundAsCircle 0x7f0400d0
  227 +int attr roundBottomEnd 0x7f0400d1
  228 +int attr roundBottomLeft 0x7f0400d2
  229 +int attr roundBottomRight 0x7f0400d3
  230 +int attr roundBottomStart 0x7f0400d4
  231 +int attr roundTopEnd 0x7f0400d5
  232 +int attr roundTopLeft 0x7f0400d6
  233 +int attr roundTopRight 0x7f0400d7
  234 +int attr roundTopStart 0x7f0400d8
  235 +int attr roundWithOverlayColor 0x7f0400d9
  236 +int attr roundedCornerRadius 0x7f0400da
  237 +int attr roundingBorderColor 0x7f0400db
  238 +int attr roundingBorderPadding 0x7f0400dc
  239 +int attr roundingBorderWidth 0x7f0400dd
  240 +int attr searchHintIcon 0x7f0400de
  241 +int attr searchIcon 0x7f0400df
  242 +int attr searchViewStyle 0x7f0400e0
  243 +int attr seekBarStyle 0x7f0400e1
  244 +int attr selectableItemBackground 0x7f0400e2
  245 +int attr selectableItemBackgroundBorderless 0x7f0400e3
  246 +int attr showAsAction 0x7f0400e4
  247 +int attr showDividers 0x7f0400e5
  248 +int attr showText 0x7f0400e6
  249 +int attr showTitle 0x7f0400e7
  250 +int attr singleChoiceItemLayout 0x7f0400e8
  251 +int attr spinBars 0x7f0400e9
  252 +int attr spinnerDropDownItemStyle 0x7f0400ea
  253 +int attr spinnerStyle 0x7f0400eb
  254 +int attr splitTrack 0x7f0400ec
  255 +int attr srcCompat 0x7f0400ed
  256 +int attr state_above_anchor 0x7f0400ee
  257 +int attr statusBarBackground 0x7f0400ef
  258 +int attr subMenuArrow 0x7f0400f0
  259 +int attr submitBackground 0x7f0400f1
  260 +int attr subtitle 0x7f0400f2
  261 +int attr subtitleTextAppearance 0x7f0400f3
  262 +int attr subtitleTextColor 0x7f0400f4
  263 +int attr subtitleTextStyle 0x7f0400f5
  264 +int attr suggestionRowLayout 0x7f0400f6
  265 +int attr switchMinWidth 0x7f0400f7
  266 +int attr switchPadding 0x7f0400f8
  267 +int attr switchStyle 0x7f0400f9
  268 +int attr switchTextAppearance 0x7f0400fa
  269 +int attr textAllCaps 0x7f0400fb
  270 +int attr textAppearanceLargePopupMenu 0x7f0400fc
  271 +int attr textAppearanceListItem 0x7f0400fd
  272 +int attr textAppearanceListItemSecondary 0x7f0400fe
  273 +int attr textAppearanceListItemSmall 0x7f0400ff
  274 +int attr textAppearancePopupMenuHeader 0x7f040100
  275 +int attr textAppearanceSearchResultSubtitle 0x7f040101
  276 +int attr textAppearanceSearchResultTitle 0x7f040102
  277 +int attr textAppearanceSmallPopupMenu 0x7f040103
  278 +int attr textColorAlertDialogListItem 0x7f040104
  279 +int attr textColorSearchUrl 0x7f040105
  280 +int attr theme 0x7f040106
  281 +int attr thickness 0x7f040107
  282 +int attr thumbTextPadding 0x7f040108
  283 +int attr thumbTint 0x7f040109
  284 +int attr thumbTintMode 0x7f04010a
  285 +int attr tickMark 0x7f04010b
  286 +int attr tickMarkTint 0x7f04010c
  287 +int attr tickMarkTintMode 0x7f04010d
  288 +int attr tint 0x7f04010e
  289 +int attr tintMode 0x7f04010f
  290 +int attr title 0x7f040110
  291 +int attr titleMargin 0x7f040111
  292 +int attr titleMarginBottom 0x7f040112
  293 +int attr titleMarginEnd 0x7f040113
  294 +int attr titleMarginStart 0x7f040114
  295 +int attr titleMarginTop 0x7f040115
  296 +int attr titleMargins 0x7f040116
  297 +int attr titleTextAppearance 0x7f040117
  298 +int attr titleTextColor 0x7f040118
  299 +int attr titleTextStyle 0x7f040119
  300 +int attr toolbarNavigationButtonStyle 0x7f04011a
  301 +int attr toolbarStyle 0x7f04011b
  302 +int attr tooltipForegroundColor 0x7f04011c
  303 +int attr tooltipFrameBackground 0x7f04011d
  304 +int attr tooltipText 0x7f04011e
  305 +int attr track 0x7f04011f
  306 +int attr trackTint 0x7f040120
  307 +int attr trackTintMode 0x7f040121
  308 +int attr ttcIndex 0x7f040122
  309 +int attr viewAspectRatio 0x7f040123
  310 +int attr viewInflaterClass 0x7f040124
  311 +int attr voiceIcon 0x7f040125
  312 +int attr windowActionBar 0x7f040126
  313 +int attr windowActionBarOverlay 0x7f040127
  314 +int attr windowActionModeOverlay 0x7f040128
  315 +int attr windowFixedHeightMajor 0x7f040129
  316 +int attr windowFixedHeightMinor 0x7f04012a
  317 +int attr windowFixedWidthMajor 0x7f04012b
  318 +int attr windowFixedWidthMinor 0x7f04012c
  319 +int attr windowMinWidthMajor 0x7f04012d
  320 +int attr windowMinWidthMinor 0x7f04012e
  321 +int attr windowNoTitle 0x7f04012f
  322 +int bool abc_action_bar_embed_tabs 0x7f050001
  323 +int bool abc_allow_stacked_button_bar 0x7f050002
  324 +int bool abc_config_actionMenuItemAllCaps 0x7f050003
  325 +int color abc_background_cache_hint_selector_material_dark 0x7f060001
  326 +int color abc_background_cache_hint_selector_material_light 0x7f060002
  327 +int color abc_btn_colored_borderless_text_material 0x7f060003
  328 +int color abc_btn_colored_text_material 0x7f060004
  329 +int color abc_color_highlight_material 0x7f060005
  330 +int color abc_hint_foreground_material_dark 0x7f060006
  331 +int color abc_hint_foreground_material_light 0x7f060007
  332 +int color abc_input_method_navigation_guard 0x7f060008
  333 +int color abc_primary_text_disable_only_material_dark 0x7f060009
  334 +int color abc_primary_text_disable_only_material_light 0x7f06000a
  335 +int color abc_primary_text_material_dark 0x7f06000b
  336 +int color abc_primary_text_material_light 0x7f06000c
  337 +int color abc_search_url_text 0x7f06000d
  338 +int color abc_search_url_text_normal 0x7f06000e
  339 +int color abc_search_url_text_pressed 0x7f06000f
  340 +int color abc_search_url_text_selected 0x7f060010
  341 +int color abc_secondary_text_material_dark 0x7f060011
  342 +int color abc_secondary_text_material_light 0x7f060012
  343 +int color abc_tint_btn_checkable 0x7f060013
  344 +int color abc_tint_default 0x7f060014
  345 +int color abc_tint_edittext 0x7f060015
  346 +int color abc_tint_seek_thumb 0x7f060016
  347 +int color abc_tint_spinner 0x7f060017
  348 +int color abc_tint_switch_track 0x7f060018
  349 +int color accent_material_dark 0x7f060019
  350 +int color accent_material_light 0x7f06001a
  351 +int color background_floating_material_dark 0x7f06001b
  352 +int color background_floating_material_light 0x7f06001c
  353 +int color background_material_dark 0x7f06001d
  354 +int color background_material_light 0x7f06001e
  355 +int color bright_foreground_disabled_material_dark 0x7f06001f
  356 +int color bright_foreground_disabled_material_light 0x7f060020
  357 +int color bright_foreground_inverse_material_dark 0x7f060021
  358 +int color bright_foreground_inverse_material_light 0x7f060022
  359 +int color bright_foreground_material_dark 0x7f060023
  360 +int color bright_foreground_material_light 0x7f060024
  361 +int color button_material_dark 0x7f060025
  362 +int color button_material_light 0x7f060026
  363 +int color catalyst_redbox_background 0x7f060027
  364 +int color dim_foreground_disabled_material_dark 0x7f060028
  365 +int color dim_foreground_disabled_material_light 0x7f060029
  366 +int color dim_foreground_material_dark 0x7f06002a
  367 +int color dim_foreground_material_light 0x7f06002b
  368 +int color error_color_material_dark 0x7f06002c
  369 +int color error_color_material_light 0x7f06002d
  370 +int color foreground_material_dark 0x7f06002e
  371 +int color foreground_material_light 0x7f06002f
  372 +int color highlighted_text_material_dark 0x7f060030
  373 +int color highlighted_text_material_light 0x7f060031
  374 +int color material_blue_grey_800 0x7f060032
  375 +int color material_blue_grey_900 0x7f060033
  376 +int color material_blue_grey_950 0x7f060034
  377 +int color material_deep_teal_200 0x7f060035
  378 +int color material_deep_teal_500 0x7f060036
  379 +int color material_grey_100 0x7f060037
  380 +int color material_grey_300 0x7f060038
  381 +int color material_grey_50 0x7f060039
  382 +int color material_grey_600 0x7f06003a
  383 +int color material_grey_800 0x7f06003b
  384 +int color material_grey_850 0x7f06003c
  385 +int color material_grey_900 0x7f06003d
  386 +int color notification_action_color_filter 0x7f06003e
  387 +int color notification_icon_bg_color 0x7f06003f
  388 +int color primary_dark_material_dark 0x7f060040
  389 +int color primary_dark_material_light 0x7f060041
  390 +int color primary_material_dark 0x7f060042
  391 +int color primary_material_light 0x7f060043
  392 +int color primary_text_default_material_dark 0x7f060044
  393 +int color primary_text_default_material_light 0x7f060045
  394 +int color primary_text_disabled_material_dark 0x7f060046
  395 +int color primary_text_disabled_material_light 0x7f060047
  396 +int color ripple_material_dark 0x7f060048
  397 +int color ripple_material_light 0x7f060049
  398 +int color secondary_text_default_material_dark 0x7f06004a
  399 +int color secondary_text_default_material_light 0x7f06004b
  400 +int color secondary_text_disabled_material_dark 0x7f06004c
  401 +int color secondary_text_disabled_material_light 0x7f06004d
  402 +int color switch_thumb_disabled_material_dark 0x7f06004e
  403 +int color switch_thumb_disabled_material_light 0x7f06004f
  404 +int color switch_thumb_material_dark 0x7f060050
  405 +int color switch_thumb_material_light 0x7f060051
  406 +int color switch_thumb_normal_material_dark 0x7f060052
  407 +int color switch_thumb_normal_material_light 0x7f060053
  408 +int color tooltip_background_dark 0x7f060054
  409 +int color tooltip_background_light 0x7f060055
  410 +int dimen abc_action_bar_content_inset_material 0x7f070001
  411 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002
  412 +int dimen abc_action_bar_default_height_material 0x7f070003
  413 +int dimen abc_action_bar_default_padding_end_material 0x7f070004
  414 +int dimen abc_action_bar_default_padding_start_material 0x7f070005
  415 +int dimen abc_action_bar_elevation_material 0x7f070006
  416 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007
  417 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008
  418 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009
  419 +int dimen abc_action_bar_stacked_max_height 0x7f07000a
  420 +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000b
  421 +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000c
  422 +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000d
  423 +int dimen abc_action_button_min_height_material 0x7f07000e
  424 +int dimen abc_action_button_min_width_material 0x7f07000f
  425 +int dimen abc_action_button_min_width_overflow_material 0x7f070010
  426 +int dimen abc_alert_dialog_button_bar_height 0x7f070011
  427 +int dimen abc_alert_dialog_button_dimen 0x7f070012
  428 +int dimen abc_button_inset_horizontal_material 0x7f070013
  429 +int dimen abc_button_inset_vertical_material 0x7f070014
  430 +int dimen abc_button_padding_horizontal_material 0x7f070015
  431 +int dimen abc_button_padding_vertical_material 0x7f070016
  432 +int dimen abc_cascading_menus_min_smallest_width 0x7f070017
  433 +int dimen abc_config_prefDialogWidth 0x7f070018
  434 +int dimen abc_control_corner_material 0x7f070019
  435 +int dimen abc_control_inset_material 0x7f07001a
  436 +int dimen abc_control_padding_material 0x7f07001b
  437 +int dimen abc_dialog_corner_radius_material 0x7f07001c
  438 +int dimen abc_dialog_fixed_height_major 0x7f07001d
  439 +int dimen abc_dialog_fixed_height_minor 0x7f07001e
  440 +int dimen abc_dialog_fixed_width_major 0x7f07001f
  441 +int dimen abc_dialog_fixed_width_minor 0x7f070020
  442 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070021
  443 +int dimen abc_dialog_list_padding_top_no_title 0x7f070022
  444 +int dimen abc_dialog_min_width_major 0x7f070023
  445 +int dimen abc_dialog_min_width_minor 0x7f070024
  446 +int dimen abc_dialog_padding_material 0x7f070025
  447 +int dimen abc_dialog_padding_top_material 0x7f070026
  448 +int dimen abc_dialog_title_divider_material 0x7f070027
  449 +int dimen abc_disabled_alpha_material_dark 0x7f070028
  450 +int dimen abc_disabled_alpha_material_light 0x7f070029
  451 +int dimen abc_dropdownitem_icon_width 0x7f07002a
  452 +int dimen abc_dropdownitem_text_padding_left 0x7f07002b
  453 +int dimen abc_dropdownitem_text_padding_right 0x7f07002c
  454 +int dimen abc_edit_text_inset_bottom_material 0x7f07002d
  455 +int dimen abc_edit_text_inset_horizontal_material 0x7f07002e
  456 +int dimen abc_edit_text_inset_top_material 0x7f07002f
  457 +int dimen abc_floating_window_z 0x7f070030
  458 +int dimen abc_list_item_padding_horizontal_material 0x7f070031
  459 +int dimen abc_panel_menu_list_width 0x7f070032
  460 +int dimen abc_progress_bar_height_material 0x7f070033
  461 +int dimen abc_search_view_preferred_height 0x7f070034
  462 +int dimen abc_search_view_preferred_width 0x7f070035
  463 +int dimen abc_seekbar_track_background_height_material 0x7f070036
  464 +int dimen abc_seekbar_track_progress_height_material 0x7f070037
  465 +int dimen abc_select_dialog_padding_start_material 0x7f070038
  466 +int dimen abc_switch_padding 0x7f070039
  467 +int dimen abc_text_size_body_1_material 0x7f07003a
  468 +int dimen abc_text_size_body_2_material 0x7f07003b
  469 +int dimen abc_text_size_button_material 0x7f07003c
  470 +int dimen abc_text_size_caption_material 0x7f07003d
  471 +int dimen abc_text_size_display_1_material 0x7f07003e
  472 +int dimen abc_text_size_display_2_material 0x7f07003f
  473 +int dimen abc_text_size_display_3_material 0x7f070040
  474 +int dimen abc_text_size_display_4_material 0x7f070041
  475 +int dimen abc_text_size_headline_material 0x7f070042
  476 +int dimen abc_text_size_large_material 0x7f070043
  477 +int dimen abc_text_size_medium_material 0x7f070044
  478 +int dimen abc_text_size_menu_header_material 0x7f070045
  479 +int dimen abc_text_size_menu_material 0x7f070046
  480 +int dimen abc_text_size_small_material 0x7f070047
  481 +int dimen abc_text_size_subhead_material 0x7f070048
  482 +int dimen abc_text_size_subtitle_material_toolbar 0x7f070049
  483 +int dimen abc_text_size_title_material 0x7f07004a
  484 +int dimen abc_text_size_title_material_toolbar 0x7f07004b
  485 +int dimen compat_button_inset_horizontal_material 0x7f07004c
  486 +int dimen compat_button_inset_vertical_material 0x7f07004d
  487 +int dimen compat_button_padding_horizontal_material 0x7f07004e
  488 +int dimen compat_button_padding_vertical_material 0x7f07004f
  489 +int dimen compat_control_corner_material 0x7f070050
  490 +int dimen compat_notification_large_icon_max_height 0x7f070051
  491 +int dimen compat_notification_large_icon_max_width 0x7f070052
  492 +int dimen disabled_alpha_material_dark 0x7f070053
  493 +int dimen disabled_alpha_material_light 0x7f070054
  494 +int dimen highlight_alpha_material_colored 0x7f070055
  495 +int dimen highlight_alpha_material_dark 0x7f070056
  496 +int dimen highlight_alpha_material_light 0x7f070057
  497 +int dimen hint_alpha_material_dark 0x7f070058
  498 +int dimen hint_alpha_material_light 0x7f070059
  499 +int dimen hint_pressed_alpha_material_dark 0x7f07005a
  500 +int dimen hint_pressed_alpha_material_light 0x7f07005b
  501 +int dimen notification_action_icon_size 0x7f07005c
  502 +int dimen notification_action_text_size 0x7f07005d
  503 +int dimen notification_big_circle_margin 0x7f07005e
  504 +int dimen notification_content_margin_start 0x7f07005f
  505 +int dimen notification_large_icon_height 0x7f070060
  506 +int dimen notification_large_icon_width 0x7f070061
  507 +int dimen notification_main_column_padding_top 0x7f070062
  508 +int dimen notification_media_narrow_margin 0x7f070063
  509 +int dimen notification_right_icon_size 0x7f070064
  510 +int dimen notification_right_side_padding_top 0x7f070065
  511 +int dimen notification_small_icon_background_padding 0x7f070066
  512 +int dimen notification_small_icon_size_as_large 0x7f070067
  513 +int dimen notification_subtext_size 0x7f070068
  514 +int dimen notification_top_pad 0x7f070069
  515 +int dimen notification_top_pad_large_text 0x7f07006a
  516 +int dimen tooltip_corner_radius 0x7f07006b
  517 +int dimen tooltip_horizontal_padding 0x7f07006c
  518 +int dimen tooltip_margin 0x7f07006d
  519 +int dimen tooltip_precise_anchor_extra_offset 0x7f07006e
  520 +int dimen tooltip_precise_anchor_threshold 0x7f07006f
  521 +int dimen tooltip_vertical_padding 0x7f070070
  522 +int dimen tooltip_y_offset_non_touch 0x7f070071
  523 +int dimen tooltip_y_offset_touch 0x7f070072
  524 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001
  525 +int drawable abc_action_bar_item_background_material 0x7f080002
  526 +int drawable abc_btn_borderless_material 0x7f080003
  527 +int drawable abc_btn_check_material 0x7f080004
  528 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080005
  529 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080006
  530 +int drawable abc_btn_colored_material 0x7f080007
  531 +int drawable abc_btn_default_mtrl_shape 0x7f080008
  532 +int drawable abc_btn_radio_material 0x7f080009
  533 +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000a
  534 +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000b
  535 +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000c
  536 +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000d
  537 +int drawable abc_cab_background_internal_bg 0x7f08000e
  538 +int drawable abc_cab_background_top_material 0x7f08000f
  539 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080010
  540 +int drawable abc_control_background_material 0x7f080011
  541 +int drawable abc_dialog_material_background 0x7f080012
  542 +int drawable abc_edit_text_material 0x7f080013
  543 +int drawable abc_ic_ab_back_material 0x7f080014
  544 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080015
  545 +int drawable abc_ic_clear_material 0x7f080016
  546 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080017
  547 +int drawable abc_ic_go_search_api_material 0x7f080018
  548 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f080019
  549 +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001a
  550 +int drawable abc_ic_menu_overflow_material 0x7f08001b
  551 +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001c
  552 +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001d
  553 +int drawable abc_ic_menu_share_mtrl_alpha 0x7f08001e
  554 +int drawable abc_ic_search_api_material 0x7f08001f
  555 +int drawable abc_ic_star_black_16dp 0x7f080020
  556 +int drawable abc_ic_star_black_36dp 0x7f080021
  557 +int drawable abc_ic_star_black_48dp 0x7f080022
  558 +int drawable abc_ic_star_half_black_16dp 0x7f080023
  559 +int drawable abc_ic_star_half_black_36dp 0x7f080024
  560 +int drawable abc_ic_star_half_black_48dp 0x7f080025
  561 +int drawable abc_ic_voice_search_api_material 0x7f080026
  562 +int drawable abc_item_background_holo_dark 0x7f080027
  563 +int drawable abc_item_background_holo_light 0x7f080028
  564 +int drawable abc_list_divider_material 0x7f080029
  565 +int drawable abc_list_divider_mtrl_alpha 0x7f08002a
  566 +int drawable abc_list_focused_holo 0x7f08002b
  567 +int drawable abc_list_longpressed_holo 0x7f08002c
  568 +int drawable abc_list_pressed_holo_dark 0x7f08002d
  569 +int drawable abc_list_pressed_holo_light 0x7f08002e
  570 +int drawable abc_list_selector_background_transition_holo_dark 0x7f08002f
  571 +int drawable abc_list_selector_background_transition_holo_light 0x7f080030
  572 +int drawable abc_list_selector_disabled_holo_dark 0x7f080031
  573 +int drawable abc_list_selector_disabled_holo_light 0x7f080032
  574 +int drawable abc_list_selector_holo_dark 0x7f080033
  575 +int drawable abc_list_selector_holo_light 0x7f080034
  576 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080035
  577 +int drawable abc_popup_background_mtrl_mult 0x7f080036
  578 +int drawable abc_ratingbar_indicator_material 0x7f080037
  579 +int drawable abc_ratingbar_material 0x7f080038
  580 +int drawable abc_ratingbar_small_material 0x7f080039
  581 +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003a
  582 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003b
  583 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003c
  584 +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003d
  585 +int drawable abc_scrubber_track_mtrl_alpha 0x7f08003e
  586 +int drawable abc_seekbar_thumb_material 0x7f08003f
  587 +int drawable abc_seekbar_tick_mark_material 0x7f080040
  588 +int drawable abc_seekbar_track_material 0x7f080041
  589 +int drawable abc_spinner_mtrl_am_alpha 0x7f080042
  590 +int drawable abc_spinner_textfield_background_material 0x7f080043
  591 +int drawable abc_switch_thumb_material 0x7f080044
  592 +int drawable abc_switch_track_mtrl_alpha 0x7f080045
  593 +int drawable abc_tab_indicator_material 0x7f080046
  594 +int drawable abc_tab_indicator_mtrl_alpha 0x7f080047
  595 +int drawable abc_text_cursor_material 0x7f080048
  596 +int drawable abc_text_select_handle_left_mtrl_dark 0x7f080049
  597 +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004a
  598 +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004b
  599 +int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004c
  600 +int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004d
  601 +int drawable abc_text_select_handle_right_mtrl_light 0x7f08004e
  602 +int drawable abc_textfield_activated_mtrl_alpha 0x7f08004f
  603 +int drawable abc_textfield_default_mtrl_alpha 0x7f080050
  604 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080051
  605 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080052
  606 +int drawable abc_textfield_search_material 0x7f080053
  607 +int drawable abc_vector_test 0x7f080054
  608 +int drawable notification_action_background 0x7f080055
  609 +int drawable notification_bg 0x7f080056
  610 +int drawable notification_bg_low 0x7f080057
  611 +int drawable notification_bg_low_normal 0x7f080058
  612 +int drawable notification_bg_low_pressed 0x7f080059
  613 +int drawable notification_bg_normal 0x7f08005a
  614 +int drawable notification_bg_normal_pressed 0x7f08005b
  615 +int drawable notification_icon_background 0x7f08005c
  616 +int drawable notification_template_icon_bg 0x7f08005d
  617 +int drawable notification_template_icon_low_bg 0x7f08005e
  618 +int drawable notification_tile_bg 0x7f08005f
  619 +int drawable notify_panel_notification_icon_bg 0x7f080060
  620 +int drawable redbox_top_border_background 0x7f080061
  621 +int drawable tooltip_frame_dark 0x7f080062
  622 +int drawable tooltip_frame_light 0x7f080063
  623 +int id accessibility_hint 0x7f0b0001
  624 +int id accessibility_role 0x7f0b0002
  625 +int id action_bar 0x7f0b0003
  626 +int id action_bar_activity_content 0x7f0b0004
  627 +int id action_bar_container 0x7f0b0005
  628 +int id action_bar_root 0x7f0b0006
  629 +int id action_bar_spinner 0x7f0b0007
  630 +int id action_bar_subtitle 0x7f0b0008
  631 +int id action_bar_title 0x7f0b0009
  632 +int id action_container 0x7f0b000a
  633 +int id action_context_bar 0x7f0b000b
  634 +int id action_divider 0x7f0b000c
  635 +int id action_image 0x7f0b000d
  636 +int id action_menu_divider 0x7f0b000e
  637 +int id action_menu_presenter 0x7f0b000f
  638 +int id action_mode_bar 0x7f0b0010
  639 +int id action_mode_bar_stub 0x7f0b0011
  640 +int id action_mode_close_button 0x7f0b0012
  641 +int id action_text 0x7f0b0013
  642 +int id actions 0x7f0b0014
  643 +int id activity_chooser_view_content 0x7f0b0015
  644 +int id add 0x7f0b0016
  645 +int id alertTitle 0x7f0b0017
  646 +int id async 0x7f0b0018
  647 +int id blocking 0x7f0b0019
  648 +int id bottom 0x7f0b001a
  649 +int id buttonPanel 0x7f0b001b
  650 +int id catalyst_redbox_title 0x7f0b001c
  651 +int id center 0x7f0b001d
  652 +int id centerCrop 0x7f0b001e
  653 +int id centerInside 0x7f0b001f
  654 +int id checkbox 0x7f0b0020
  655 +int id chronometer 0x7f0b0021
  656 +int id content 0x7f0b0022
  657 +int id contentPanel 0x7f0b0023
  658 +int id custom 0x7f0b0024
  659 +int id customPanel 0x7f0b0025
  660 +int id decor_content_parent 0x7f0b0026
  661 +int id default_activity_button 0x7f0b0027
  662 +int id edit_query 0x7f0b0028
  663 +int id end 0x7f0b0029
  664 +int id expand_activities_button 0x7f0b002a
  665 +int id expanded_menu 0x7f0b002b
  666 +int id fitBottomStart 0x7f0b002c
  667 +int id fitCenter 0x7f0b002d
  668 +int id fitEnd 0x7f0b002e
  669 +int id fitStart 0x7f0b002f
  670 +int id fitXY 0x7f0b0030
  671 +int id focusCrop 0x7f0b0031
  672 +int id forever 0x7f0b0032
  673 +int id fps_text 0x7f0b0033
  674 +int id group_divider 0x7f0b0034
  675 +int id home 0x7f0b0035
  676 +int id icon 0x7f0b0036
  677 +int id icon_group 0x7f0b0037
  678 +int id image 0x7f0b0038
  679 +int id info 0x7f0b0039
  680 +int id italic 0x7f0b003a
  681 +int id left 0x7f0b003b
  682 +int id line1 0x7f0b003c
  683 +int id line3 0x7f0b003d
  684 +int id listMode 0x7f0b003e
  685 +int id list_item 0x7f0b003f
  686 +int id message 0x7f0b0040
  687 +int id multiply 0x7f0b0041
  688 +int id none 0x7f0b0042
  689 +int id normal 0x7f0b0043
  690 +int id notification_background 0x7f0b0044
  691 +int id notification_main_column 0x7f0b0045
  692 +int id notification_main_column_container 0x7f0b0046
  693 +int id parentPanel 0x7f0b0047
  694 +int id progress_circular 0x7f0b0048
  695 +int id progress_horizontal 0x7f0b0049
  696 +int id radio 0x7f0b004a
  697 +int id react_test_id 0x7f0b004b
  698 +int id right 0x7f0b004c
  699 +int id right_icon 0x7f0b004d
  700 +int id right_side 0x7f0b004e
  701 +int id rn_frame_file 0x7f0b004f
  702 +int id rn_frame_method 0x7f0b0050
  703 +int id rn_redbox_copy_button 0x7f0b0051
  704 +int id rn_redbox_dismiss_button 0x7f0b0052
  705 +int id rn_redbox_line_separator 0x7f0b0053
  706 +int id rn_redbox_loading_indicator 0x7f0b0054
  707 +int id rn_redbox_reload_button 0x7f0b0055
  708 +int id rn_redbox_report_button 0x7f0b0056
  709 +int id rn_redbox_report_label 0x7f0b0057
  710 +int id rn_redbox_stack 0x7f0b0058
  711 +int id screen 0x7f0b0059
  712 +int id scrollIndicatorDown 0x7f0b005a
  713 +int id scrollIndicatorUp 0x7f0b005b
  714 +int id scrollView 0x7f0b005c
  715 +int id search_badge 0x7f0b005d
  716 +int id search_bar 0x7f0b005e
  717 +int id search_button 0x7f0b005f
  718 +int id search_close_btn 0x7f0b0060
  719 +int id search_edit_frame 0x7f0b0061
  720 +int id search_go_btn 0x7f0b0062
  721 +int id search_mag_icon 0x7f0b0063
  722 +int id search_plate 0x7f0b0064
  723 +int id search_src_text 0x7f0b0065
  724 +int id search_voice_btn 0x7f0b0066
  725 +int id select_dialog_listview 0x7f0b0067
  726 +int id shortcut 0x7f0b0068
  727 +int id spacer 0x7f0b0069
  728 +int id split_action_bar 0x7f0b006a
  729 +int id src_atop 0x7f0b006b
  730 +int id src_in 0x7f0b006c
  731 +int id src_over 0x7f0b006d
  732 +int id start 0x7f0b006e
  733 +int id submenuarrow 0x7f0b006f
  734 +int id submit_area 0x7f0b0070
  735 +int id tabMode 0x7f0b0071
  736 +int id tag_transition_group 0x7f0b0072
  737 +int id tag_unhandled_key_event_manager 0x7f0b0073
  738 +int id tag_unhandled_key_listeners 0x7f0b0074
  739 +int id text 0x7f0b0075
  740 +int id text2 0x7f0b0076
  741 +int id textSpacerNoButtons 0x7f0b0077
  742 +int id textSpacerNoTitle 0x7f0b0078
  743 +int id time 0x7f0b0079
  744 +int id title 0x7f0b007a
  745 +int id titleDividerNoCustom 0x7f0b007b
  746 +int id title_template 0x7f0b007c
  747 +int id top 0x7f0b007d
  748 +int id topPanel 0x7f0b007e
  749 +int id uniform 0x7f0b007f
  750 +int id up 0x7f0b0080
  751 +int id view_tag_instance_handle 0x7f0b0081
  752 +int id view_tag_native_id 0x7f0b0082
  753 +int id wrap_content 0x7f0b0083
  754 +int integer abc_config_activityDefaultDur 0x7f0c0001
  755 +int integer abc_config_activityShortDur 0x7f0c0002
  756 +int integer cancel_button_image_alpha 0x7f0c0003
  757 +int integer config_tooltipAnimTime 0x7f0c0004
  758 +int integer status_bar_notification_info_maxnum 0x7f0c0005
  759 +int layout abc_action_bar_title_item 0x7f0e0001
  760 +int layout abc_action_bar_up_container 0x7f0e0002
  761 +int layout abc_action_menu_item_layout 0x7f0e0003
  762 +int layout abc_action_menu_layout 0x7f0e0004
  763 +int layout abc_action_mode_bar 0x7f0e0005
  764 +int layout abc_action_mode_close_item_material 0x7f0e0006
  765 +int layout abc_activity_chooser_view 0x7f0e0007
  766 +int layout abc_activity_chooser_view_list_item 0x7f0e0008
  767 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009
  768 +int layout abc_alert_dialog_material 0x7f0e000a
  769 +int layout abc_alert_dialog_title_material 0x7f0e000b
  770 +int layout abc_cascading_menu_item_layout 0x7f0e000c
  771 +int layout abc_dialog_title_material 0x7f0e000d
  772 +int layout abc_expanded_menu_layout 0x7f0e000e
  773 +int layout abc_list_menu_item_checkbox 0x7f0e000f
  774 +int layout abc_list_menu_item_icon 0x7f0e0010
  775 +int layout abc_list_menu_item_layout 0x7f0e0011
  776 +int layout abc_list_menu_item_radio 0x7f0e0012
  777 +int layout abc_popup_menu_header_item_layout 0x7f0e0013
  778 +int layout abc_popup_menu_item_layout 0x7f0e0014
  779 +int layout abc_screen_content_include 0x7f0e0015
  780 +int layout abc_screen_simple 0x7f0e0016
  781 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017
  782 +int layout abc_screen_toolbar 0x7f0e0018
  783 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019
  784 +int layout abc_search_view 0x7f0e001a
  785 +int layout abc_select_dialog_material 0x7f0e001b
  786 +int layout abc_tooltip 0x7f0e001c
  787 +int layout dev_loading_view 0x7f0e001d
  788 +int layout fps_view 0x7f0e001e
  789 +int layout notification_action 0x7f0e001f
  790 +int layout notification_action_tombstone 0x7f0e0020
  791 +int layout notification_template_custom_big 0x7f0e0021
  792 +int layout notification_template_icon_group 0x7f0e0022
  793 +int layout notification_template_part_chronometer 0x7f0e0023
  794 +int layout notification_template_part_time 0x7f0e0024
  795 +int layout redbox_item_frame 0x7f0e0025
  796 +int layout redbox_item_title 0x7f0e0026
  797 +int layout redbox_view 0x7f0e0027
  798 +int layout select_dialog_item_material 0x7f0e0028
  799 +int layout select_dialog_multichoice_material 0x7f0e0029
  800 +int layout select_dialog_singlechoice_material 0x7f0e002a
  801 +int layout support_simple_spinner_dropdown_item 0x7f0e002b
  802 +int string abc_action_bar_home_description 0x7f140001
  803 +int string abc_action_bar_up_description 0x7f140002
  804 +int string abc_action_menu_overflow_description 0x7f140003
  805 +int string abc_action_mode_done 0x7f140004
  806 +int string abc_activity_chooser_view_see_all 0x7f140005
  807 +int string abc_activitychooserview_choose_application 0x7f140006
  808 +int string abc_capital_off 0x7f140007
  809 +int string abc_capital_on 0x7f140008
  810 +int string abc_font_family_body_1_material 0x7f140009
  811 +int string abc_font_family_body_2_material 0x7f14000a
  812 +int string abc_font_family_button_material 0x7f14000b
  813 +int string abc_font_family_caption_material 0x7f14000c
  814 +int string abc_font_family_display_1_material 0x7f14000d
  815 +int string abc_font_family_display_2_material 0x7f14000e
  816 +int string abc_font_family_display_3_material 0x7f14000f
  817 +int string abc_font_family_display_4_material 0x7f140010
  818 +int string abc_font_family_headline_material 0x7f140011
  819 +int string abc_font_family_menu_material 0x7f140012
  820 +int string abc_font_family_subhead_material 0x7f140013
  821 +int string abc_font_family_title_material 0x7f140014
  822 +int string abc_menu_alt_shortcut_label 0x7f140015
  823 +int string abc_menu_ctrl_shortcut_label 0x7f140016
  824 +int string abc_menu_delete_shortcut_label 0x7f140017
  825 +int string abc_menu_enter_shortcut_label 0x7f140018
  826 +int string abc_menu_function_shortcut_label 0x7f140019
  827 +int string abc_menu_meta_shortcut_label 0x7f14001a
  828 +int string abc_menu_shift_shortcut_label 0x7f14001b
  829 +int string abc_menu_space_shortcut_label 0x7f14001c
  830 +int string abc_menu_sym_shortcut_label 0x7f14001d
  831 +int string abc_prepend_shortcut_label 0x7f14001e
  832 +int string abc_search_hint 0x7f14001f
  833 +int string abc_searchview_description_clear 0x7f140020
  834 +int string abc_searchview_description_query 0x7f140021
  835 +int string abc_searchview_description_search 0x7f140022
  836 +int string abc_searchview_description_submit 0x7f140023
  837 +int string abc_searchview_description_voice 0x7f140024
  838 +int string abc_shareactionprovider_share_with 0x7f140025
  839 +int string abc_shareactionprovider_share_with_application 0x7f140026
  840 +int string abc_toolbar_collapse_description 0x7f140027
  841 +int string adjustable_description 0x7f140028
  842 +int string catalyst_copy_button 0x7f140029
  843 +int string catalyst_debugjs 0x7f14002a
  844 +int string catalyst_debugjs_nuclide 0x7f14002b
  845 +int string catalyst_debugjs_nuclide_failure 0x7f14002c
  846 +int string catalyst_debugjs_off 0x7f14002d
  847 +int string catalyst_dismiss_button 0x7f14002e
  848 +int string catalyst_element_inspector 0x7f14002f
  849 +int string catalyst_heap_capture 0x7f140030
  850 +int string catalyst_hot_module_replacement 0x7f140031
  851 +int string catalyst_hot_module_replacement_off 0x7f140032
  852 +int string catalyst_jsload_error 0x7f140033
  853 +int string catalyst_live_reload 0x7f140034
  854 +int string catalyst_live_reload_off 0x7f140035
  855 +int string catalyst_loading_from_url 0x7f140036
  856 +int string catalyst_perf_monitor 0x7f140037
  857 +int string catalyst_perf_monitor_off 0x7f140038
  858 +int string catalyst_poke_sampling_profiler 0x7f140039
  859 +int string catalyst_reload_button 0x7f14003a
  860 +int string catalyst_reloadjs 0x7f14003b
  861 +int string catalyst_remotedbg_error 0x7f14003c
  862 +int string catalyst_remotedbg_message 0x7f14003d
  863 +int string catalyst_report_button 0x7f14003e
  864 +int string catalyst_settings 0x7f14003f
  865 +int string catalyst_settings_title 0x7f140040
  866 +int string header_description 0x7f140041
  867 +int string image_button_description 0x7f140042
  868 +int string image_description 0x7f140043
  869 +int string link_description 0x7f140044
  870 +int string search_description 0x7f140045
  871 +int string search_menu_title 0x7f140046
  872 +int string status_bar_notification_info_overflow 0x7f140047
  873 +int style AlertDialog_AppCompat 0x7f150001
  874 +int style AlertDialog_AppCompat_Light 0x7f150002
  875 +int style Animation_AppCompat_Dialog 0x7f150003
  876 +int style Animation_AppCompat_DropDownUp 0x7f150004
  877 +int style Animation_AppCompat_Tooltip 0x7f150005
  878 +int style Animation_Catalyst_RedBox 0x7f150006
  879 +int style Base_AlertDialog_AppCompat 0x7f150007
  880 +int style Base_AlertDialog_AppCompat_Light 0x7f150008
  881 +int style Base_Animation_AppCompat_Dialog 0x7f150009
  882 +int style Base_Animation_AppCompat_DropDownUp 0x7f15000a
  883 +int style Base_Animation_AppCompat_Tooltip 0x7f15000b
  884 +int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000c
  885 +int style Base_DialogWindowTitle_AppCompat 0x7f15000d
  886 +int style Base_TextAppearance_AppCompat 0x7f15000e
  887 +int style Base_TextAppearance_AppCompat_Body1 0x7f15000f
  888 +int style Base_TextAppearance_AppCompat_Body2 0x7f150010
  889 +int style Base_TextAppearance_AppCompat_Button 0x7f150011
  890 +int style Base_TextAppearance_AppCompat_Caption 0x7f150012
  891 +int style Base_TextAppearance_AppCompat_Display1 0x7f150013
  892 +int style Base_TextAppearance_AppCompat_Display2 0x7f150014
  893 +int style Base_TextAppearance_AppCompat_Display3 0x7f150015
  894 +int style Base_TextAppearance_AppCompat_Display4 0x7f150016
  895 +int style Base_TextAppearance_AppCompat_Headline 0x7f150017
  896 +int style Base_TextAppearance_AppCompat_Inverse 0x7f150018
  897 +int style Base_TextAppearance_AppCompat_Large 0x7f150019
  898 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f15001a
  899 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001b
  900 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001c
  901 +int style Base_TextAppearance_AppCompat_Medium 0x7f15001d
  902 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f15001e
  903 +int style Base_TextAppearance_AppCompat_Menu 0x7f15001f
  904 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f150020
  905 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150021
  906 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150022
  907 +int style Base_TextAppearance_AppCompat_Small 0x7f150023
  908 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150024
  909 +int style Base_TextAppearance_AppCompat_Subhead 0x7f150025
  910 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150026
  911 +int style Base_TextAppearance_AppCompat_Title 0x7f150027
  912 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150028
  913 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f150029
  914 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15002a
  915 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002b
  916 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002c
  917 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002d
  918 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15002e
  919 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15002f
  920 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150030
  921 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150031
  922 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150032
  923 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150033
  924 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150034
  925 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150035
  926 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150036
  927 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150037
  928 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150038
  929 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150039
  930 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15003a
  931 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003b
  932 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003c
  933 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003d
  934 +int style Base_ThemeOverlay_AppCompat 0x7f15003e
  935 +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15003f
  936 +int style Base_ThemeOverlay_AppCompat_Dark 0x7f150040
  937 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150041
  938 +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150042
  939 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150043
  940 +int style Base_ThemeOverlay_AppCompat_Light 0x7f150044
  941 +int style Base_Theme_AppCompat 0x7f150045
  942 +int style Base_Theme_AppCompat_CompactMenu 0x7f150046
  943 +int style Base_Theme_AppCompat_Dialog 0x7f150047
  944 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150048
  945 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f150049
  946 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15004a
  947 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004b
  948 +int style Base_Theme_AppCompat_Light 0x7f15004c
  949 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15004d
  950 +int style Base_Theme_AppCompat_Light_Dialog 0x7f15004e
  951 +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f15004f
  952 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150050
  953 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150051
  954 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150052
  955 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150053
  956 +int style Base_V21_Theme_AppCompat 0x7f150054
  957 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150055
  958 +int style Base_V21_Theme_AppCompat_Light 0x7f150056
  959 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150057
  960 +int style Base_V22_Theme_AppCompat 0x7f150058
  961 +int style Base_V22_Theme_AppCompat_Light 0x7f150059
  962 +int style Base_V23_Theme_AppCompat 0x7f15005a
  963 +int style Base_V23_Theme_AppCompat_Light 0x7f15005b
  964 +int style Base_V26_Theme_AppCompat 0x7f15005c
  965 +int style Base_V26_Theme_AppCompat_Light 0x7f15005d
  966 +int style Base_V26_Widget_AppCompat_Toolbar 0x7f15005e
  967 +int style Base_V28_Theme_AppCompat 0x7f15005f
  968 +int style Base_V28_Theme_AppCompat_Light 0x7f150060
  969 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150061
  970 +int style Base_V7_Theme_AppCompat 0x7f150062
  971 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150063
  972 +int style Base_V7_Theme_AppCompat_Light 0x7f150064
  973 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150065
  974 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150066
  975 +int style Base_V7_Widget_AppCompat_EditText 0x7f150067
  976 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f150068
  977 +int style Base_Widget_AppCompat_ActionBar 0x7f150069
  978 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f15006a
  979 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f15006b
  980 +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15006c
  981 +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15006d
  982 +int style Base_Widget_AppCompat_ActionButton 0x7f15006e
  983 +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f15006f
  984 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f150070
  985 +int style Base_Widget_AppCompat_ActionMode 0x7f150071
  986 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f150072
  987 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150073
  988 +int style Base_Widget_AppCompat_Button 0x7f150074
  989 +int style Base_Widget_AppCompat_ButtonBar 0x7f150075
  990 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150076
  991 +int style Base_Widget_AppCompat_Button_Borderless 0x7f150077
  992 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f150078
  993 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150079
  994 +int style Base_Widget_AppCompat_Button_Colored 0x7f15007a
  995 +int style Base_Widget_AppCompat_Button_Small 0x7f15007b
  996 +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f15007c
  997 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15007d
  998 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f15007e
  999 +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f15007f
  1000 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f150080
  1001 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f150081
  1002 +int style Base_Widget_AppCompat_EditText 0x7f150082
  1003 +int style Base_Widget_AppCompat_ImageButton 0x7f150083
  1004 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f150084
  1005 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f150085
  1006 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f150086
  1007 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f150087
  1008 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150088
  1009 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f150089
  1010 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f15008a
  1011 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15008b
  1012 +int style Base_Widget_AppCompat_ListMenuView 0x7f15008c
  1013 +int style Base_Widget_AppCompat_ListPopupWindow 0x7f15008d
  1014 +int style Base_Widget_AppCompat_ListView 0x7f15008e
  1015 +int style Base_Widget_AppCompat_ListView_DropDown 0x7f15008f
  1016 +int style Base_Widget_AppCompat_ListView_Menu 0x7f150090
  1017 +int style Base_Widget_AppCompat_PopupMenu 0x7f150091
  1018 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f150092
  1019 +int style Base_Widget_AppCompat_PopupWindow 0x7f150093
  1020 +int style Base_Widget_AppCompat_ProgressBar 0x7f150094
  1021 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f150095
  1022 +int style Base_Widget_AppCompat_RatingBar 0x7f150096
  1023 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f150097
  1024 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f150098
  1025 +int style Base_Widget_AppCompat_SearchView 0x7f150099
  1026 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f15009a
  1027 +int style Base_Widget_AppCompat_SeekBar 0x7f15009b
  1028 +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f15009c
  1029 +int style Base_Widget_AppCompat_Spinner 0x7f15009d
  1030 +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f15009e
  1031 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f15009f
  1032 +int style Base_Widget_AppCompat_Toolbar 0x7f1500a0
  1033 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500a1
  1034 +int style CalendarDatePickerDialog 0x7f1500a2
  1035 +int style CalendarDatePickerStyle 0x7f1500a3
  1036 +int style ClockTimePickerDialog 0x7f1500a4
  1037 +int style ClockTimePickerStyle 0x7f1500a5
  1038 +int style DialogAnimationFade 0x7f1500a6
  1039 +int style DialogAnimationSlide 0x7f1500a7
  1040 +int style Platform_AppCompat 0x7f1500a8
  1041 +int style Platform_AppCompat_Light 0x7f1500a9
  1042 +int style Platform_ThemeOverlay_AppCompat 0x7f1500aa
  1043 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500ab
  1044 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500ac
  1045 +int style Platform_V21_AppCompat 0x7f1500ad
  1046 +int style Platform_V21_AppCompat_Light 0x7f1500ae
  1047 +int style Platform_V25_AppCompat 0x7f1500af
  1048 +int style Platform_V25_AppCompat_Light 0x7f1500b0
  1049 +int style Platform_Widget_AppCompat_Spinner 0x7f1500b1
  1050 +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500b2
  1051 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500b3
  1052 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500b4
  1053 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500b5
  1054 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500b6
  1055 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f1500b7
  1056 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f1500b8
  1057 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500b9
  1058 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f1500ba
  1059 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500bb
  1060 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500bc
  1061 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500bd
  1062 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500be
  1063 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500bf
  1064 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500c0
  1065 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500c1
  1066 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500c2
  1067 +int style SpinnerDatePickerDialog 0x7f1500c3
  1068 +int style SpinnerDatePickerStyle 0x7f1500c4
  1069 +int style SpinnerTimePickerDialog 0x7f1500c5
  1070 +int style SpinnerTimePickerStyle 0x7f1500c6
  1071 +int style TextAppearance_AppCompat 0x7f1500c7
  1072 +int style TextAppearance_AppCompat_Body1 0x7f1500c8
  1073 +int style TextAppearance_AppCompat_Body2 0x7f1500c9
  1074 +int style TextAppearance_AppCompat_Button 0x7f1500ca
  1075 +int style TextAppearance_AppCompat_Caption 0x7f1500cb
  1076 +int style TextAppearance_AppCompat_Display1 0x7f1500cc
  1077 +int style TextAppearance_AppCompat_Display2 0x7f1500cd
  1078 +int style TextAppearance_AppCompat_Display3 0x7f1500ce
  1079 +int style TextAppearance_AppCompat_Display4 0x7f1500cf
  1080 +int style TextAppearance_AppCompat_Headline 0x7f1500d0
  1081 +int style TextAppearance_AppCompat_Inverse 0x7f1500d1
  1082 +int style TextAppearance_AppCompat_Large 0x7f1500d2
  1083 +int style TextAppearance_AppCompat_Large_Inverse 0x7f1500d3
  1084 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500d4
  1085 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500d5
  1086 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500d6
  1087 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500d7
  1088 +int style TextAppearance_AppCompat_Medium 0x7f1500d8
  1089 +int style TextAppearance_AppCompat_Medium_Inverse 0x7f1500d9
  1090 +int style TextAppearance_AppCompat_Menu 0x7f1500da
  1091 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1500db
  1092 +int style TextAppearance_AppCompat_SearchResult_Title 0x7f1500dc
  1093 +int style TextAppearance_AppCompat_Small 0x7f1500dd
  1094 +int style TextAppearance_AppCompat_Small_Inverse 0x7f1500de
  1095 +int style TextAppearance_AppCompat_Subhead 0x7f1500df
  1096 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1500e0
  1097 +int style TextAppearance_AppCompat_Title 0x7f1500e1
  1098 +int style TextAppearance_AppCompat_Title_Inverse 0x7f1500e2
  1099 +int style TextAppearance_AppCompat_Tooltip 0x7f1500e3
  1100 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1500e4
  1101 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1500e5
  1102 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1500e6
  1103 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1500e7
  1104 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1500e8
  1105 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1500e9
  1106 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1500ea
  1107 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1500eb
  1108 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1500ec
  1109 +int style TextAppearance_AppCompat_Widget_Button 0x7f1500ed
  1110 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1500ee
  1111 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1500ef
  1112 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1500f0
  1113 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1500f1
  1114 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1500f2
  1115 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1500f3
  1116 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1500f4
  1117 +int style TextAppearance_AppCompat_Widget_Switch 0x7f1500f5
  1118 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1500f6
  1119 +int style TextAppearance_Compat_Notification 0x7f1500f7
  1120 +int style TextAppearance_Compat_Notification_Info 0x7f1500f8
  1121 +int style TextAppearance_Compat_Notification_Line2 0x7f1500f9
  1122 +int style TextAppearance_Compat_Notification_Time 0x7f1500fa
  1123 +int style TextAppearance_Compat_Notification_Title 0x7f1500fb
  1124 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f1500fc
  1125 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f1500fd
  1126 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f1500fe
  1127 +int style Theme 0x7f1500ff
  1128 +int style ThemeOverlay_AppCompat 0x7f150100
  1129 +int style ThemeOverlay_AppCompat_ActionBar 0x7f150101
  1130 +int style ThemeOverlay_AppCompat_Dark 0x7f150102
  1131 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150103
  1132 +int style ThemeOverlay_AppCompat_Dialog 0x7f150104
  1133 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150105
  1134 +int style ThemeOverlay_AppCompat_Light 0x7f150106
  1135 +int style Theme_AppCompat 0x7f150107
  1136 +int style Theme_AppCompat_CompactMenu 0x7f150108
  1137 +int style Theme_AppCompat_DayNight 0x7f150109
  1138 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f15010a
  1139 +int style Theme_AppCompat_DayNight_Dialog 0x7f15010b
  1140 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f15010c
  1141 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f15010d
  1142 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f15010e
  1143 +int style Theme_AppCompat_DayNight_NoActionBar 0x7f15010f
  1144 +int style Theme_AppCompat_Dialog 0x7f150110
  1145 +int style Theme_AppCompat_DialogWhenLarge 0x7f150111
  1146 +int style Theme_AppCompat_Dialog_Alert 0x7f150112
  1147 +int style Theme_AppCompat_Dialog_MinWidth 0x7f150113
  1148 +int style Theme_AppCompat_Light 0x7f150114
  1149 +int style Theme_AppCompat_Light_DarkActionBar 0x7f150115
  1150 +int style Theme_AppCompat_Light_Dialog 0x7f150116
  1151 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f150117
  1152 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f150118
  1153 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f150119
  1154 +int style Theme_AppCompat_Light_NoActionBar 0x7f15011a
  1155 +int style Theme_AppCompat_NoActionBar 0x7f15011b
  1156 +int style Theme_Catalyst 0x7f15011c
  1157 +int style Theme_Catalyst_RedBox 0x7f15011d
  1158 +int style Theme_FullScreenDialog 0x7f15011e
  1159 +int style Theme_FullScreenDialogAnimatedFade 0x7f15011f
  1160 +int style Theme_FullScreenDialogAnimatedSlide 0x7f150120
  1161 +int style Theme_ReactNative_AppCompat_Light 0x7f150121
  1162 +int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f150122
  1163 +int style Widget_AppCompat_ActionBar 0x7f150123
  1164 +int style Widget_AppCompat_ActionBar_Solid 0x7f150124
  1165 +int style Widget_AppCompat_ActionBar_TabBar 0x7f150125
  1166 +int style Widget_AppCompat_ActionBar_TabText 0x7f150126
  1167 +int style Widget_AppCompat_ActionBar_TabView 0x7f150127
  1168 +int style Widget_AppCompat_ActionButton 0x7f150128
  1169 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f150129
  1170 +int style Widget_AppCompat_ActionButton_Overflow 0x7f15012a
  1171 +int style Widget_AppCompat_ActionMode 0x7f15012b
  1172 +int style Widget_AppCompat_ActivityChooserView 0x7f15012c
  1173 +int style Widget_AppCompat_AutoCompleteTextView 0x7f15012d
  1174 +int style Widget_AppCompat_Button 0x7f15012e
  1175 +int style Widget_AppCompat_ButtonBar 0x7f15012f
  1176 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150130
  1177 +int style Widget_AppCompat_Button_Borderless 0x7f150131
  1178 +int style Widget_AppCompat_Button_Borderless_Colored 0x7f150132
  1179 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150133
  1180 +int style Widget_AppCompat_Button_Colored 0x7f150134
  1181 +int style Widget_AppCompat_Button_Small 0x7f150135
  1182 +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150136
  1183 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150137
  1184 +int style Widget_AppCompat_CompoundButton_Switch 0x7f150138
  1185 +int style Widget_AppCompat_DrawerArrowToggle 0x7f150139
  1186 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f15013a
  1187 +int style Widget_AppCompat_EditText 0x7f15013b
  1188 +int style Widget_AppCompat_ImageButton 0x7f15013c
  1189 +int style Widget_AppCompat_Light_ActionBar 0x7f15013d
  1190 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f15013e
  1191 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f15013f
  1192 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f150140
  1193 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f150141
  1194 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f150142
  1195 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150143
  1196 +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f150144
  1197 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f150145
  1198 +int style Widget_AppCompat_Light_ActionButton 0x7f150146
  1199 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150147
  1200 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150148
  1201 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150149
  1202 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f15014a
  1203 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f15014b
  1204 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f15014c
  1205 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f15014d
  1206 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f15014e
  1207 +int style Widget_AppCompat_Light_PopupMenu 0x7f15014f
  1208 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150150
  1209 +int style Widget_AppCompat_Light_SearchView 0x7f150151
  1210 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f150152
  1211 +int style Widget_AppCompat_ListMenuView 0x7f150153
  1212 +int style Widget_AppCompat_ListPopupWindow 0x7f150154
  1213 +int style Widget_AppCompat_ListView 0x7f150155
  1214 +int style Widget_AppCompat_ListView_DropDown 0x7f150156
  1215 +int style Widget_AppCompat_ListView_Menu 0x7f150157
  1216 +int style Widget_AppCompat_PopupMenu 0x7f150158
  1217 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f150159
  1218 +int style Widget_AppCompat_PopupWindow 0x7f15015a
  1219 +int style Widget_AppCompat_ProgressBar 0x7f15015b
  1220 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f15015c
  1221 +int style Widget_AppCompat_RatingBar 0x7f15015d
  1222 +int style Widget_AppCompat_RatingBar_Indicator 0x7f15015e
  1223 +int style Widget_AppCompat_RatingBar_Small 0x7f15015f
  1224 +int style Widget_AppCompat_SearchView 0x7f150160
  1225 +int style Widget_AppCompat_SearchView_ActionBar 0x7f150161
  1226 +int style Widget_AppCompat_SeekBar 0x7f150162
  1227 +int style Widget_AppCompat_SeekBar_Discrete 0x7f150163
  1228 +int style Widget_AppCompat_Spinner 0x7f150164
  1229 +int style Widget_AppCompat_Spinner_DropDown 0x7f150165
  1230 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150166
  1231 +int style Widget_AppCompat_Spinner_Underlined 0x7f150167
  1232 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f150168
  1233 +int style Widget_AppCompat_Toolbar 0x7f150169
  1234 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f15016a
  1235 +int style Widget_Compat_NotificationActionContainer 0x7f15016b
  1236 +int style Widget_Compat_NotificationActionText 0x7f15016c
  1237 +int style Widget_Support_CoordinatorLayout 0x7f15016d
  1238 +int style redboxButton 0x7f15016e
  1239 +int[] styleable ActionBar { 0x7f040035, 0x7f040037, 0x7f040038, 0x7f04005c, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040064, 0x7f040069, 0x7f04006a, 0x7f040075, 0x7f040088, 0x7f040089, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f040091, 0x7f040094, 0x7f0400aa, 0x7f0400b1, 0x7f0400bf, 0x7f0400c6, 0x7f0400c7, 0x7f0400f2, 0x7f0400f5, 0x7f040110, 0x7f040119 }
  1240 +int styleable ActionBar_background 0
  1241 +int styleable ActionBar_backgroundSplit 1
  1242 +int styleable ActionBar_backgroundStacked 2
  1243 +int styleable ActionBar_contentInsetEnd 3
  1244 +int styleable ActionBar_contentInsetEndWithActions 4
  1245 +int styleable ActionBar_contentInsetLeft 5
  1246 +int styleable ActionBar_contentInsetRight 6
  1247 +int styleable ActionBar_contentInsetStart 7
  1248 +int styleable ActionBar_contentInsetStartWithNavigation 8
  1249 +int styleable ActionBar_customNavigationLayout 9
  1250 +int styleable ActionBar_displayOptions 10
  1251 +int styleable ActionBar_divider 11
  1252 +int styleable ActionBar_elevation 12
  1253 +int styleable ActionBar_height 13
  1254 +int styleable ActionBar_hideOnContentScroll 14
  1255 +int styleable ActionBar_homeAsUpIndicator 15
  1256 +int styleable ActionBar_homeLayout 16
  1257 +int styleable ActionBar_icon 17
  1258 +int styleable ActionBar_indeterminateProgressStyle 18
  1259 +int styleable ActionBar_itemPadding 19
  1260 +int styleable ActionBar_logo 20
  1261 +int styleable ActionBar_navigationMode 21
  1262 +int styleable ActionBar_popupTheme 22
  1263 +int styleable ActionBar_progressBarPadding 23
  1264 +int styleable ActionBar_progressBarStyle 24
  1265 +int styleable ActionBar_subtitle 25
  1266 +int styleable ActionBar_subtitleTextStyle 26
  1267 +int styleable ActionBar_title 27
  1268 +int styleable ActionBar_titleTextStyle 28
  1269 +int[] styleable ActionBarLayout { 0x10100b3 }
  1270 +int styleable ActionBarLayout_android_layout_gravity 0
  1271 +int[] styleable ActionMenuItemView { 0x101013f }
  1272 +int styleable ActionMenuItemView_android_minWidth 0
  1273 +int[] styleable ActionMenuView { }
  1274 +int[] styleable ActionMode { 0x7f040035, 0x7f040037, 0x7f04004c, 0x7f040088, 0x7f0400f5, 0x7f040119 }
  1275 +int styleable ActionMode_background 0
  1276 +int styleable ActionMode_backgroundSplit 1
  1277 +int styleable ActionMode_closeItemLayout 2
  1278 +int styleable ActionMode_height 3
  1279 +int styleable ActionMode_subtitleTextStyle 4
  1280 +int styleable ActionMode_titleTextStyle 5
  1281 +int[] styleable ActivityChooserView { 0x7f040076, 0x7f040092 }
  1282 +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
  1283 +int styleable ActivityChooserView_initialActivityCount 1
  1284 +int[] styleable AlertDialog { 0x10100f2, 0x7f040043, 0x7f040044, 0x7f0400a1, 0x7f0400a2, 0x7f0400ae, 0x7f0400e7, 0x7f0400e8 }
  1285 +int styleable AlertDialog_android_layout 0
  1286 +int styleable AlertDialog_buttonIconDimen 1
  1287 +int styleable AlertDialog_buttonPanelSideLayout 2
  1288 +int styleable AlertDialog_listItemLayout 3
  1289 +int styleable AlertDialog_listLayout 4
  1290 +int styleable AlertDialog_multiChoiceItemLayout 5
  1291 +int styleable AlertDialog_showTitle 6
  1292 +int styleable AlertDialog_singleChoiceItemLayout 7
  1293 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
  1294 +int styleable AnimatedStateListDrawableCompat_android_constantSize 0
  1295 +int styleable AnimatedStateListDrawableCompat_android_dither 1
  1296 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
  1297 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
  1298 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
  1299 +int styleable AnimatedStateListDrawableCompat_android_visible 5
  1300 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
  1301 +int styleable AnimatedStateListDrawableItem_android_drawable 0
  1302 +int styleable AnimatedStateListDrawableItem_android_id 1
  1303 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
  1304 +int styleable AnimatedStateListDrawableTransition_android_drawable 0
  1305 +int styleable AnimatedStateListDrawableTransition_android_fromId 1
  1306 +int styleable AnimatedStateListDrawableTransition_android_reversible 2
  1307 +int styleable AnimatedStateListDrawableTransition_android_toId 3
  1308 +int[] styleable AppCompatImageView { 0x1010119, 0x7f0400ed, 0x7f04010e, 0x7f04010f }
  1309 +int styleable AppCompatImageView_android_src 0
  1310 +int styleable AppCompatImageView_srcCompat 1
  1311 +int styleable AppCompatImageView_tint 2
  1312 +int styleable AppCompatImageView_tintMode 3
  1313 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f04010b, 0x7f04010c, 0x7f04010d }
  1314 +int styleable AppCompatSeekBar_android_thumb 0
  1315 +int styleable AppCompatSeekBar_tickMark 1
  1316 +int styleable AppCompatSeekBar_tickMarkTint 2
  1317 +int styleable AppCompatSeekBar_tickMarkTintMode 3
  1318 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
  1319 +int styleable AppCompatTextHelper_android_drawableBottom 0
  1320 +int styleable AppCompatTextHelper_android_drawableEnd 1
  1321 +int styleable AppCompatTextHelper_android_drawableLeft 2
  1322 +int styleable AppCompatTextHelper_android_drawableRight 3
  1323 +int styleable AppCompatTextHelper_android_drawableStart 4
  1324 +int styleable AppCompatTextHelper_android_drawableTop 5
  1325 +int styleable AppCompatTextHelper_android_textAppearance 6
  1326 +int[] styleable AppCompatTextView { 0x1010034, 0x7f040030, 0x7f040031, 0x7f040032, 0x7f040033, 0x7f040034, 0x7f04007a, 0x7f04007c, 0x7f040096, 0x7f04009e, 0x7f0400fb }
  1327 +int styleable AppCompatTextView_android_textAppearance 0
  1328 +int styleable AppCompatTextView_autoSizeMaxTextSize 1
  1329 +int styleable AppCompatTextView_autoSizeMinTextSize 2
  1330 +int styleable AppCompatTextView_autoSizePresetSizes 3
  1331 +int styleable AppCompatTextView_autoSizeStepGranularity 4
  1332 +int styleable AppCompatTextView_autoSizeTextType 5
  1333 +int styleable AppCompatTextView_firstBaselineToTopHeight 6
  1334 +int styleable AppCompatTextView_fontFamily 7
  1335 +int styleable AppCompatTextView_lastBaselineToBottomHeight 8
  1336 +int styleable AppCompatTextView_lineHeight 9
  1337 +int styleable AppCompatTextView_textAllCaps 10
  1338 +int[] styleable AppCompatTheme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040026, 0x7f040027, 0x7f040028, 0x7f040029, 0x10100ae, 0x1010057, 0x7f04002f, 0x7f04003c, 0x7f04003d, 0x7f04003e, 0x7f04003f, 0x7f040040, 0x7f040041, 0x7f040045, 0x7f040046, 0x7f040049, 0x7f04004a, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040056, 0x7f040057, 0x7f040058, 0x7f040059, 0x7f040062, 0x7f040066, 0x7f040067, 0x7f040068, 0x7f04006b, 0x7f04006d, 0x7f040070, 0x7f040071, 0x7f040072, 0x7f040073, 0x7f040074, 0x7f04008a, 0x7f040090, 0x7f04009f, 0x7f0400a0, 0x7f0400a3, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400b9, 0x7f0400ba, 0x7f0400bb, 0x7f0400be, 0x7f0400c0, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400cd, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400ea, 0x7f0400eb, 0x7f0400f9, 0x7f0400fc, 0x7f0400fd, 0x7f0400fe, 0x7f0400ff, 0x7f040100, 0x7f040101, 0x7f040102, 0x7f040103, 0x7f040104, 0x7f040105, 0x7f04011a, 0x7f04011b, 0x7f04011c, 0x7f04011d, 0x7f040124, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f040129, 0x7f04012a, 0x7f04012b, 0x7f04012c, 0x7f04012d, 0x7f04012e, 0x7f04012f }
  1339 +int styleable AppCompatTheme_actionBarDivider 0
  1340 +int styleable AppCompatTheme_actionBarItemBackground 1
  1341 +int styleable AppCompatTheme_actionBarPopupTheme 2
  1342 +int styleable AppCompatTheme_actionBarSize 3
  1343 +int styleable AppCompatTheme_actionBarSplitStyle 4
  1344 +int styleable AppCompatTheme_actionBarStyle 5
  1345 +int styleable AppCompatTheme_actionBarTabBarStyle 6
  1346 +int styleable AppCompatTheme_actionBarTabStyle 7
  1347 +int styleable AppCompatTheme_actionBarTabTextStyle 8
  1348 +int styleable AppCompatTheme_actionBarTheme 9
  1349 +int styleable AppCompatTheme_actionBarWidgetTheme 10
  1350 +int styleable AppCompatTheme_actionButtonStyle 11
  1351 +int styleable AppCompatTheme_actionDropDownStyle 12
  1352 +int styleable AppCompatTheme_actionMenuTextAppearance 13
  1353 +int styleable AppCompatTheme_actionMenuTextColor 14
  1354 +int styleable AppCompatTheme_actionModeBackground 15
  1355 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16
  1356 +int styleable AppCompatTheme_actionModeCloseDrawable 17
  1357 +int styleable AppCompatTheme_actionModeCopyDrawable 18
  1358 +int styleable AppCompatTheme_actionModeCutDrawable 19
  1359 +int styleable AppCompatTheme_actionModeFindDrawable 20
  1360 +int styleable AppCompatTheme_actionModePasteDrawable 21
  1361 +int styleable AppCompatTheme_actionModePopupWindowStyle 22
  1362 +int styleable AppCompatTheme_actionModeSelectAllDrawable 23
  1363 +int styleable AppCompatTheme_actionModeShareDrawable 24
  1364 +int styleable AppCompatTheme_actionModeSplitBackground 25
  1365 +int styleable AppCompatTheme_actionModeStyle 26
  1366 +int styleable AppCompatTheme_actionModeWebSearchDrawable 27
  1367 +int styleable AppCompatTheme_actionOverflowButtonStyle 28
  1368 +int styleable AppCompatTheme_actionOverflowMenuStyle 29
  1369 +int styleable AppCompatTheme_activityChooserViewStyle 30
  1370 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
  1371 +int styleable AppCompatTheme_alertDialogCenterButtons 32
  1372 +int styleable AppCompatTheme_alertDialogStyle 33
  1373 +int styleable AppCompatTheme_alertDialogTheme 34
  1374 +int styleable AppCompatTheme_android_windowAnimationStyle 35
  1375 +int styleable AppCompatTheme_android_windowIsFloating 36
  1376 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37
  1377 +int styleable AppCompatTheme_borderlessButtonStyle 38
  1378 +int styleable AppCompatTheme_buttonBarButtonStyle 39
  1379 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
  1380 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
  1381 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
  1382 +int styleable AppCompatTheme_buttonBarStyle 43
  1383 +int styleable AppCompatTheme_buttonStyle 44
  1384 +int styleable AppCompatTheme_buttonStyleSmall 45
  1385 +int styleable AppCompatTheme_checkboxStyle 46
  1386 +int styleable AppCompatTheme_checkedTextViewStyle 47
  1387 +int styleable AppCompatTheme_colorAccent 48
  1388 +int styleable AppCompatTheme_colorBackgroundFloating 49
  1389 +int styleable AppCompatTheme_colorButtonNormal 50
  1390 +int styleable AppCompatTheme_colorControlActivated 51
  1391 +int styleable AppCompatTheme_colorControlHighlight 52
  1392 +int styleable AppCompatTheme_colorControlNormal 53
  1393 +int styleable AppCompatTheme_colorError 54
  1394 +int styleable AppCompatTheme_colorPrimary 55
  1395 +int styleable AppCompatTheme_colorPrimaryDark 56
  1396 +int styleable AppCompatTheme_colorSwitchThumbNormal 57
  1397 +int styleable AppCompatTheme_controlBackground 58
  1398 +int styleable AppCompatTheme_dialogCornerRadius 59
  1399 +int styleable AppCompatTheme_dialogPreferredPadding 60
  1400 +int styleable AppCompatTheme_dialogTheme 61
  1401 +int styleable AppCompatTheme_dividerHorizontal 62
  1402 +int styleable AppCompatTheme_dividerVertical 63
  1403 +int styleable AppCompatTheme_dropDownListViewStyle 64
  1404 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
  1405 +int styleable AppCompatTheme_editTextBackground 66
  1406 +int styleable AppCompatTheme_editTextColor 67
  1407 +int styleable AppCompatTheme_editTextStyle 68
  1408 +int styleable AppCompatTheme_homeAsUpIndicator 69
  1409 +int styleable AppCompatTheme_imageButtonStyle 70
  1410 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
  1411 +int styleable AppCompatTheme_listDividerAlertDialog 72
  1412 +int styleable AppCompatTheme_listMenuViewStyle 73
  1413 +int styleable AppCompatTheme_listPopupWindowStyle 74
  1414 +int styleable AppCompatTheme_listPreferredItemHeight 75
  1415 +int styleable AppCompatTheme_listPreferredItemHeightLarge 76
  1416 +int styleable AppCompatTheme_listPreferredItemHeightSmall 77
  1417 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
  1418 +int styleable AppCompatTheme_listPreferredItemPaddingRight 79
  1419 +int styleable AppCompatTheme_panelBackground 80
  1420 +int styleable AppCompatTheme_panelMenuListTheme 81
  1421 +int styleable AppCompatTheme_panelMenuListWidth 82
  1422 +int styleable AppCompatTheme_popupMenuStyle 83
  1423 +int styleable AppCompatTheme_popupWindowStyle 84
  1424 +int styleable AppCompatTheme_radioButtonStyle 85
  1425 +int styleable AppCompatTheme_ratingBarStyle 86
  1426 +int styleable AppCompatTheme_ratingBarStyleIndicator 87
  1427 +int styleable AppCompatTheme_ratingBarStyleSmall 88
  1428 +int styleable AppCompatTheme_searchViewStyle 89
  1429 +int styleable AppCompatTheme_seekBarStyle 90
  1430 +int styleable AppCompatTheme_selectableItemBackground 91
  1431 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
  1432 +int styleable AppCompatTheme_spinnerDropDownItemStyle 93
  1433 +int styleable AppCompatTheme_spinnerStyle 94
  1434 +int styleable AppCompatTheme_switchStyle 95
  1435 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
  1436 +int styleable AppCompatTheme_textAppearanceListItem 97
  1437 +int styleable AppCompatTheme_textAppearanceListItemSecondary 98
  1438 +int styleable AppCompatTheme_textAppearanceListItemSmall 99
  1439 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
  1440 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
  1441 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
  1442 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
  1443 +int styleable AppCompatTheme_textColorAlertDialogListItem 104
  1444 +int styleable AppCompatTheme_textColorSearchUrl 105
  1445 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
  1446 +int styleable AppCompatTheme_toolbarStyle 107
  1447 +int styleable AppCompatTheme_tooltipForegroundColor 108
  1448 +int styleable AppCompatTheme_tooltipFrameBackground 109
  1449 +int styleable AppCompatTheme_viewInflaterClass 110
  1450 +int styleable AppCompatTheme_windowActionBar 111
  1451 +int styleable AppCompatTheme_windowActionBarOverlay 112
  1452 +int styleable AppCompatTheme_windowActionModeOverlay 113
  1453 +int styleable AppCompatTheme_windowFixedHeightMajor 114
  1454 +int styleable AppCompatTheme_windowFixedHeightMinor 115
  1455 +int styleable AppCompatTheme_windowFixedWidthMajor 116
  1456 +int styleable AppCompatTheme_windowFixedWidthMinor 117
  1457 +int styleable AppCompatTheme_windowMinWidthMajor 118
  1458 +int styleable AppCompatTheme_windowMinWidthMinor 119
  1459 +int styleable AppCompatTheme_windowNoTitle 120
  1460 +int[] styleable ButtonBarLayout { 0x7f04002a }
  1461 +int styleable ButtonBarLayout_allowStacking 0
  1462 +int[] styleable ColorStateListItem { 0x7f04002b, 0x101031f, 0x10101a5 }
  1463 +int styleable ColorStateListItem_alpha 0
  1464 +int styleable ColorStateListItem_android_alpha 1
  1465 +int styleable ColorStateListItem_android_color 2
  1466 +int[] styleable CompoundButton { 0x1010107, 0x7f040047, 0x7f040048 }
  1467 +int styleable CompoundButton_android_button 0
  1468 +int styleable CompoundButton_buttonTint 1
  1469 +int styleable CompoundButton_buttonTintMode 2
  1470 +int[] styleable CoordinatorLayout { 0x7f040095, 0x7f0400ef }
  1471 +int styleable CoordinatorLayout_keylines 0
  1472 +int styleable CoordinatorLayout_statusBarBackground 1
  1473 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f04009c, 0x7f04009d }
  1474 +int styleable CoordinatorLayout_Layout_android_layout_gravity 0
  1475 +int styleable CoordinatorLayout_Layout_layout_anchor 1
  1476 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
  1477 +int styleable CoordinatorLayout_Layout_layout_behavior 3
  1478 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
  1479 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5
  1480 +int styleable CoordinatorLayout_Layout_layout_keyline 6
  1481 +int[] styleable DrawerArrowToggle { 0x7f04002d, 0x7f04002e, 0x7f04003b, 0x7f04004f, 0x7f04006e, 0x7f040086, 0x7f0400e9, 0x7f040107 }
  1482 +int styleable DrawerArrowToggle_arrowHeadLength 0
  1483 +int styleable DrawerArrowToggle_arrowShaftLength 1
  1484 +int styleable DrawerArrowToggle_barLength 2
  1485 +int styleable DrawerArrowToggle_color 3
  1486 +int styleable DrawerArrowToggle_drawableSize 4
  1487 +int styleable DrawerArrowToggle_gapBetweenBars 5
  1488 +int styleable DrawerArrowToggle_spinBars 6
  1489 +int styleable DrawerArrowToggle_thickness 7
  1490 +int[] styleable FontFamily { 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040082 }
  1491 +int styleable FontFamily_fontProviderAuthority 0
  1492 +int styleable FontFamily_fontProviderCerts 1
  1493 +int styleable FontFamily_fontProviderFetchStrategy 2
  1494 +int styleable FontFamily_fontProviderFetchTimeout 3
  1495 +int styleable FontFamily_fontProviderPackage 4
  1496 +int styleable FontFamily_fontProviderQuery 5
  1497 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f04007b, 0x7f040083, 0x7f040084, 0x7f040085, 0x7f040122 }
  1498 +int styleable FontFamilyFont_android_font 0
  1499 +int styleable FontFamilyFont_android_fontStyle 1
  1500 +int styleable FontFamilyFont_android_fontVariationSettings 2
  1501 +int styleable FontFamilyFont_android_fontWeight 3
  1502 +int styleable FontFamilyFont_android_ttcIndex 4
  1503 +int styleable FontFamilyFont_font 5
  1504 +int styleable FontFamilyFont_fontStyle 6
  1505 +int styleable FontFamilyFont_fontVariationSettings 7
  1506 +int styleable FontFamilyFont_fontWeight 8
  1507 +int styleable FontFamilyFont_ttcIndex 9
  1508 +int[] styleable GenericDraweeHierarchy { 0x7f040024, 0x7f040036, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f0400b4, 0x7f0400bc, 0x7f0400bd, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f040123 }
  1509 +int styleable GenericDraweeHierarchy_actualImageScaleType 0
  1510 +int styleable GenericDraweeHierarchy_backgroundImage 1
  1511 +int styleable GenericDraweeHierarchy_fadeDuration 2
  1512 +int styleable GenericDraweeHierarchy_failureImage 3
  1513 +int styleable GenericDraweeHierarchy_failureImageScaleType 4
  1514 +int styleable GenericDraweeHierarchy_overlayImage 5
  1515 +int styleable GenericDraweeHierarchy_placeholderImage 6
  1516 +int styleable GenericDraweeHierarchy_placeholderImageScaleType 7
  1517 +int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8
  1518 +int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9
  1519 +int styleable GenericDraweeHierarchy_progressBarImage 10
  1520 +int styleable GenericDraweeHierarchy_progressBarImageScaleType 11
  1521 +int styleable GenericDraweeHierarchy_retryImage 12
  1522 +int styleable GenericDraweeHierarchy_retryImageScaleType 13
  1523 +int styleable GenericDraweeHierarchy_roundAsCircle 14
  1524 +int styleable GenericDraweeHierarchy_roundBottomEnd 15
  1525 +int styleable GenericDraweeHierarchy_roundBottomLeft 16
  1526 +int styleable GenericDraweeHierarchy_roundBottomRight 17
  1527 +int styleable GenericDraweeHierarchy_roundBottomStart 18
  1528 +int styleable GenericDraweeHierarchy_roundTopEnd 19
  1529 +int styleable GenericDraweeHierarchy_roundTopLeft 20
  1530 +int styleable GenericDraweeHierarchy_roundTopRight 21
  1531 +int styleable GenericDraweeHierarchy_roundTopStart 22
  1532 +int styleable GenericDraweeHierarchy_roundWithOverlayColor 23
  1533 +int styleable GenericDraweeHierarchy_roundedCornerRadius 24
  1534 +int styleable GenericDraweeHierarchy_roundingBorderColor 25
  1535 +int styleable GenericDraweeHierarchy_roundingBorderPadding 26
  1536 +int styleable GenericDraweeHierarchy_roundingBorderWidth 27
  1537 +int styleable GenericDraweeHierarchy_viewAspectRatio 28
  1538 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
  1539 +int styleable GradientColor_android_centerColor 0
  1540 +int styleable GradientColor_android_centerX 1
  1541 +int styleable GradientColor_android_centerY 2
  1542 +int styleable GradientColor_android_endColor 3
  1543 +int styleable GradientColor_android_endX 4
  1544 +int styleable GradientColor_android_endY 5
  1545 +int styleable GradientColor_android_gradientRadius 6
  1546 +int styleable GradientColor_android_startColor 7
  1547 +int styleable GradientColor_android_startX 8
  1548 +int styleable GradientColor_android_startY 9
  1549 +int styleable GradientColor_android_tileMode 10
  1550 +int styleable GradientColor_android_type 11
  1551 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
  1552 +int styleable GradientColorItem_android_color 0
  1553 +int styleable GradientColorItem_android_offset 1
  1554 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f04006a, 0x7f04006c, 0x7f0400ad, 0x7f0400e5 }
  1555 +int styleable LinearLayoutCompat_android_baselineAligned 0
  1556 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
  1557 +int styleable LinearLayoutCompat_android_gravity 2
  1558 +int styleable LinearLayoutCompat_android_orientation 3
  1559 +int styleable LinearLayoutCompat_android_weightSum 4
  1560 +int styleable LinearLayoutCompat_divider 5
  1561 +int styleable LinearLayoutCompat_dividerPadding 6
  1562 +int styleable LinearLayoutCompat_measureWithLargestChild 7
  1563 +int styleable LinearLayoutCompat_showDividers 8
  1564 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
  1565 +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
  1566 +int styleable LinearLayoutCompat_Layout_android_layout_height 1
  1567 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2
  1568 +int styleable LinearLayoutCompat_Layout_android_layout_width 3
  1569 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
  1570 +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
  1571 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1
  1572 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
  1573 +int styleable MenuGroup_android_checkableBehavior 0
  1574 +int styleable MenuGroup_android_enabled 1
  1575 +int styleable MenuGroup_android_id 2
  1576 +int styleable MenuGroup_android_menuCategory 3
  1577 +int styleable MenuGroup_android_orderInCategory 4
  1578 +int styleable MenuGroup_android_visible 5
  1579 +int[] styleable MenuItem { 0x7f04000e, 0x7f040020, 0x7f040021, 0x7f04002c, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f04005b, 0x7f04008d, 0x7f04008e, 0x7f0400b2, 0x7f0400e4, 0x7f04011e }
  1580 +int styleable MenuItem_actionLayout 0
  1581 +int styleable MenuItem_actionProviderClass 1
  1582 +int styleable MenuItem_actionViewClass 2
  1583 +int styleable MenuItem_alphabeticModifiers 3
  1584 +int styleable MenuItem_android_alphabeticShortcut 4
  1585 +int styleable MenuItem_android_checkable 5
  1586 +int styleable MenuItem_android_checked 6
  1587 +int styleable MenuItem_android_enabled 7
  1588 +int styleable MenuItem_android_icon 8
  1589 +int styleable MenuItem_android_id 9
  1590 +int styleable MenuItem_android_menuCategory 10
  1591 +int styleable MenuItem_android_numericShortcut 11
  1592 +int styleable MenuItem_android_onClick 12
  1593 +int styleable MenuItem_android_orderInCategory 13
  1594 +int styleable MenuItem_android_title 14
  1595 +int styleable MenuItem_android_titleCondensed 15
  1596 +int styleable MenuItem_android_visible 16
  1597 +int styleable MenuItem_contentDescription 17
  1598 +int styleable MenuItem_iconTint 18
  1599 +int styleable MenuItem_iconTintMode 19
  1600 +int styleable MenuItem_numericModifiers 20
  1601 +int styleable MenuItem_showAsAction 21
  1602 +int styleable MenuItem_tooltipText 22
  1603 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f0400c1, 0x7f0400f0 }
  1604 +int styleable MenuView_android_headerBackground 0
  1605 +int styleable MenuView_android_horizontalDivider 1
  1606 +int styleable MenuView_android_itemBackground 2
  1607 +int styleable MenuView_android_itemIconDisabledAlpha 3
  1608 +int styleable MenuView_android_itemTextAppearance 4
  1609 +int styleable MenuView_android_verticalDivider 5
  1610 +int styleable MenuView_android_windowAnimationStyle 6
  1611 +int styleable MenuView_preserveIconSpacing 7
  1612 +int styleable MenuView_subMenuArrow 8
  1613 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f0400b3 }
  1614 +int styleable PopupWindow_android_popupAnimationStyle 0
  1615 +int styleable PopupWindow_android_popupBackground 1
  1616 +int styleable PopupWindow_overlapAnchor 2
  1617 +int[] styleable PopupWindowBackgroundState { 0x7f0400ee }
  1618 +int styleable PopupWindowBackgroundState_state_above_anchor 0
  1619 +int[] styleable RecycleListView { 0x7f0400b5, 0x7f0400b8 }
  1620 +int styleable RecycleListView_paddingBottomNoButtons 0
  1621 +int styleable RecycleListView_paddingTopNoTitle 1
  1622 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f04004b, 0x7f04005a, 0x7f040065, 0x7f040087, 0x7f04008f, 0x7f040097, 0x7f0400c8, 0x7f0400c9, 0x7f0400de, 0x7f0400df, 0x7f0400f1, 0x7f0400f6, 0x7f040125 }
  1623 +int styleable SearchView_android_focusable 0
  1624 +int styleable SearchView_android_imeOptions 1
  1625 +int styleable SearchView_android_inputType 2
  1626 +int styleable SearchView_android_maxWidth 3
  1627 +int styleable SearchView_closeIcon 4
  1628 +int styleable SearchView_commitIcon 5
  1629 +int styleable SearchView_defaultQueryHint 6
  1630 +int styleable SearchView_goIcon 7
  1631 +int styleable SearchView_iconifiedByDefault 8
  1632 +int styleable SearchView_layout 9
  1633 +int styleable SearchView_queryBackground 10
  1634 +int styleable SearchView_queryHint 11
  1635 +int styleable SearchView_searchHintIcon 12
  1636 +int styleable SearchView_searchIcon 13
  1637 +int styleable SearchView_submitBackground 14
  1638 +int styleable SearchView_suggestionRowLayout 15
  1639 +int styleable SearchView_voiceIcon 16
  1640 +int[] styleable SimpleDraweeView { 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040036, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f0400b4, 0x7f0400bc, 0x7f0400bd, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f040123 }
  1641 +int styleable SimpleDraweeView_actualImageResource 0
  1642 +int styleable SimpleDraweeView_actualImageScaleType 1
  1643 +int styleable SimpleDraweeView_actualImageUri 2
  1644 +int styleable SimpleDraweeView_backgroundImage 3
  1645 +int styleable SimpleDraweeView_fadeDuration 4
  1646 +int styleable SimpleDraweeView_failureImage 5
  1647 +int styleable SimpleDraweeView_failureImageScaleType 6
  1648 +int styleable SimpleDraweeView_overlayImage 7
  1649 +int styleable SimpleDraweeView_placeholderImage 8
  1650 +int styleable SimpleDraweeView_placeholderImageScaleType 9
  1651 +int styleable SimpleDraweeView_pressedStateOverlayImage 10
  1652 +int styleable SimpleDraweeView_progressBarAutoRotateInterval 11
  1653 +int styleable SimpleDraweeView_progressBarImage 12
  1654 +int styleable SimpleDraweeView_progressBarImageScaleType 13
  1655 +int styleable SimpleDraweeView_retryImage 14
  1656 +int styleable SimpleDraweeView_retryImageScaleType 15
  1657 +int styleable SimpleDraweeView_roundAsCircle 16
  1658 +int styleable SimpleDraweeView_roundBottomEnd 17
  1659 +int styleable SimpleDraweeView_roundBottomLeft 18
  1660 +int styleable SimpleDraweeView_roundBottomRight 19
  1661 +int styleable SimpleDraweeView_roundBottomStart 20
  1662 +int styleable SimpleDraweeView_roundTopEnd 21
  1663 +int styleable SimpleDraweeView_roundTopLeft 22
  1664 +int styleable SimpleDraweeView_roundTopRight 23
  1665 +int styleable SimpleDraweeView_roundTopStart 24
  1666 +int styleable SimpleDraweeView_roundWithOverlayColor 25
  1667 +int styleable SimpleDraweeView_roundedCornerRadius 26
  1668 +int styleable SimpleDraweeView_roundingBorderColor 27
  1669 +int styleable SimpleDraweeView_roundingBorderPadding 28
  1670 +int styleable SimpleDraweeView_roundingBorderWidth 29
  1671 +int styleable SimpleDraweeView_viewAspectRatio 30
  1672 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f0400bf }
  1673 +int styleable Spinner_android_dropDownWidth 0
  1674 +int styleable Spinner_android_entries 1
  1675 +int styleable Spinner_android_popupBackground 2
  1676 +int styleable Spinner_android_prompt 3
  1677 +int styleable Spinner_popupTheme 4
  1678 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
  1679 +int styleable StateListDrawable_android_constantSize 0
  1680 +int styleable StateListDrawable_android_dither 1
  1681 +int styleable StateListDrawable_android_enterFadeDuration 2
  1682 +int styleable StateListDrawable_android_exitFadeDuration 3
  1683 +int styleable StateListDrawable_android_variablePadding 4
  1684 +int styleable StateListDrawable_android_visible 5
  1685 +int[] styleable StateListDrawableItem { 0x1010199 }
  1686 +int styleable StateListDrawableItem_android_drawable 0
  1687 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f0400e6, 0x7f0400ec, 0x7f0400f7, 0x7f0400f8, 0x7f0400fa, 0x7f040108, 0x7f040109, 0x7f04010a, 0x7f04011f, 0x7f040120, 0x7f040121 }
  1688 +int styleable SwitchCompat_android_textOff 0
  1689 +int styleable SwitchCompat_android_textOn 1
  1690 +int styleable SwitchCompat_android_thumb 2
  1691 +int styleable SwitchCompat_showText 3
  1692 +int styleable SwitchCompat_splitTrack 4
  1693 +int styleable SwitchCompat_switchMinWidth 5
  1694 +int styleable SwitchCompat_switchPadding 6
  1695 +int styleable SwitchCompat_switchTextAppearance 7
  1696 +int styleable SwitchCompat_thumbTextPadding 8
  1697 +int styleable SwitchCompat_thumbTint 9
  1698 +int styleable SwitchCompat_thumbTintMode 10
  1699 +int styleable SwitchCompat_track 11
  1700 +int styleable SwitchCompat_trackTint 12
  1701 +int styleable SwitchCompat_trackTintMode 13
  1702 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x7f04007c, 0x7f0400fb }
  1703 +int styleable TextAppearance_android_fontFamily 0
  1704 +int styleable TextAppearance_android_shadowColor 1
  1705 +int styleable TextAppearance_android_shadowDx 2
  1706 +int styleable TextAppearance_android_shadowDy 3
  1707 +int styleable TextAppearance_android_shadowRadius 4
  1708 +int styleable TextAppearance_android_textColor 5
  1709 +int styleable TextAppearance_android_textColorHint 6
  1710 +int styleable TextAppearance_android_textColorLink 7
  1711 +int styleable TextAppearance_android_textSize 8
  1712 +int styleable TextAppearance_android_textStyle 9
  1713 +int styleable TextAppearance_android_typeface 10
  1714 +int styleable TextAppearance_fontFamily 11
  1715 +int styleable TextAppearance_textAllCaps 12
  1716 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040042, 0x7f04004d, 0x7f04004e, 0x7f04005c, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0400af, 0x7f0400b0, 0x7f0400bf, 0x7f0400f2, 0x7f0400f3, 0x7f0400f4, 0x7f040110, 0x7f040111, 0x7f040112, 0x7f040113, 0x7f040114, 0x7f040115, 0x7f040116, 0x7f040117, 0x7f040118 }
  1717 +int styleable Toolbar_android_gravity 0
  1718 +int styleable Toolbar_android_minHeight 1
  1719 +int styleable Toolbar_buttonGravity 2
  1720 +int styleable Toolbar_collapseContentDescription 3
  1721 +int styleable Toolbar_collapseIcon 4
  1722 +int styleable Toolbar_contentInsetEnd 5
  1723 +int styleable Toolbar_contentInsetEndWithActions 6
  1724 +int styleable Toolbar_contentInsetLeft 7
  1725 +int styleable Toolbar_contentInsetRight 8
  1726 +int styleable Toolbar_contentInsetStart 9
  1727 +int styleable Toolbar_contentInsetStartWithNavigation 10
  1728 +int styleable Toolbar_logo 11
  1729 +int styleable Toolbar_logoDescription 12
  1730 +int styleable Toolbar_maxButtonHeight 13
  1731 +int styleable Toolbar_navigationContentDescription 14
  1732 +int styleable Toolbar_navigationIcon 15
  1733 +int styleable Toolbar_popupTheme 16
  1734 +int styleable Toolbar_subtitle 17
  1735 +int styleable Toolbar_subtitleTextAppearance 18
  1736 +int styleable Toolbar_subtitleTextColor 19
  1737 +int styleable Toolbar_title 20
  1738 +int styleable Toolbar_titleMargin 21
  1739 +int styleable Toolbar_titleMarginBottom 22
  1740 +int styleable Toolbar_titleMarginEnd 23
  1741 +int styleable Toolbar_titleMarginStart 24
  1742 +int styleable Toolbar_titleMarginTop 25
  1743 +int styleable Toolbar_titleMargins 26
  1744 +int styleable Toolbar_titleTextAppearance 27
  1745 +int styleable Toolbar_titleTextColor 28
  1746 +int[] styleable View { 0x10100da, 0x1010000, 0x7f0400b6, 0x7f0400b7, 0x7f040106 }
  1747 +int styleable View_android_focusable 0
  1748 +int styleable View_android_theme 1
  1749 +int styleable View_paddingEnd 2
  1750 +int styleable View_paddingStart 3
  1751 +int styleable View_theme 4
  1752 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040039, 0x7f04003a }
  1753 +int styleable ViewBackgroundHelper_android_background 0
  1754 +int styleable ViewBackgroundHelper_backgroundTint 1
  1755 +int styleable ViewBackgroundHelper_backgroundTintMode 2
  1756 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
  1757 +int styleable ViewStubCompat_android_id 0
  1758 +int styleable ViewStubCompat_android_inflatedId 1
  1759 +int styleable ViewStubCompat_android_layout 2
  1760 +int xml rn_dev_preferences 0x7f180001
  1 +-- Merging decision tree log ---
  2 +manifest
  3 +ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:1-8:12
  4 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:1-8:12
  5 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:1-8:12
  6 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:1-8:12
  7 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:1-8:12
  8 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:1-8:12
  9 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:1-8:12
  10 + package
  11 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:2:11-40
  12 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  13 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  14 + android:versionName
  15 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  16 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:1-8:12
  17 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  18 + android:versionCode
  19 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  20 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:1-8:12
  21 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  22 + xmlns:android
  23 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:1:11-69
  24 +uses-permission#android.permission.INTERNET
  25 +ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:3:5-66
  26 + android:name
  27 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:3:22-64
  28 +uses-permission#android.permission.ACCESS_NETWORK_STATE
  29 +ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:4:5-78
  30 + android:name
  31 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:4:22-76
  32 +uses-permission#android.permission.ACCESS_WIFI_STATE
  33 +ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:5:5-75
  34 + android:name
  35 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:5:22-73
  36 +uses-permission#android.permission.READ_PHONE_STATE
  37 +ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:6:5-74
  38 + android:name
  39 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:6:22-72
  40 +uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
  41 +ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:7:5-80
  42 + android:name
  43 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml:7:22-78
  44 +uses-sdk
  45 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
  46 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  47 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  48 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  49 +INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  50 + android:targetSdkVersion
  51 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  52 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  53 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  54 + android:minSdkVersion
  55 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  56 + ADDED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  57 + INJECTED from /Users/kluass/Desktop/work/NewVode/vodeApp/node_modules/react-native-wechat-lib/android/src/main/AndroidManifest.xml
  1 +#Mon Nov 16 15:28:05 CST 2020
  2 +distributionBase=GRADLE_USER_HOME
  3 +distributionPath=wrapper/dists
  4 +zipStoreBase=GRADLE_USER_HOME
  5 +zipStorePath=wrapper/dists
  6 +distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
  1 +#!/usr/bin/env sh
  2 +
  3 +##############################################################################
  4 +##
  5 +## Gradle start up script for UN*X
  6 +##
  7 +##############################################################################
  8 +
  9 +# Attempt to set APP_HOME
  10 +# Resolve links: $0 may be a link
  11 +PRG="$0"
  12 +# Need this for relative symlinks.
  13 +while [ -h "$PRG" ] ; do
  14 + ls=`ls -ld "$PRG"`
  15 + link=`expr "$ls" : '.*-> \(.*\)$'`
  16 + if expr "$link" : '/.*' > /dev/null; then
  17 + PRG="$link"
  18 + else
  19 + PRG=`dirname "$PRG"`"/$link"
  20 + fi
  21 +done
  22 +SAVED="`pwd`"
  23 +cd "`dirname \"$PRG\"`/" >/dev/null
  24 +APP_HOME="`pwd -P`"
  25 +cd "$SAVED" >/dev/null
  26 +
  27 +APP_NAME="Gradle"
  28 +APP_BASE_NAME=`basename "$0"`
  29 +
  30 +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
  31 +DEFAULT_JVM_OPTS=""
  32 +
  33 +# Use the maximum available, or set MAX_FD != -1 to use that value.
  34 +MAX_FD="maximum"
  35 +
  36 +warn () {
  37 + echo "$*"
  38 +}
  39 +
  40 +die () {
  41 + echo
  42 + echo "$*"
  43 + echo
  44 + exit 1
  45 +}
  46 +
  47 +# OS specific support (must be 'true' or 'false').
  48 +cygwin=false
  49 +msys=false
  50 +darwin=false
  51 +nonstop=false
  52 +case "`uname`" in
  53 + CYGWIN* )
  54 + cygwin=true
  55 + ;;
  56 + Darwin* )
  57 + darwin=true
  58 + ;;
  59 + MINGW* )
  60 + msys=true
  61 + ;;
  62 + NONSTOP* )
  63 + nonstop=true
  64 + ;;
  65 +esac
  66 +
  67 +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
  68 +
  69 +# Determine the Java command to use to start the JVM.
  70 +if [ -n "$JAVA_HOME" ] ; then
  71 + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
  72 + # IBM's JDK on AIX uses strange locations for the executables
  73 + JAVACMD="$JAVA_HOME/jre/sh/java"
  74 + else
  75 + JAVACMD="$JAVA_HOME/bin/java"
  76 + fi
  77 + if [ ! -x "$JAVACMD" ] ; then
  78 + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
  79 +
  80 +Please set the JAVA_HOME variable in your environment to match the
  81 +location of your Java installation."
  82 + fi
  83 +else
  84 + JAVACMD="java"
  85 + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
  86 +
  87 +Please set the JAVA_HOME variable in your environment to match the
  88 +location of your Java installation."
  89 +fi
  90 +
  91 +# Increase the maximum file descriptors if we can.
  92 +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
  93 + MAX_FD_LIMIT=`ulimit -H -n`
  94 + if [ $? -eq 0 ] ; then
  95 + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
  96 + MAX_FD="$MAX_FD_LIMIT"
  97 + fi
  98 + ulimit -n $MAX_FD
  99 + if [ $? -ne 0 ] ; then
  100 + warn "Could not set maximum file descriptor limit: $MAX_FD"
  101 + fi
  102 + else
  103 + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
  104 + fi
  105 +fi
  106 +
  107 +# For Darwin, add options to specify how the application appears in the dock
  108 +if $darwin; then
  109 + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
  110 +fi
  111 +
  112 +# For Cygwin, switch paths to Windows format before running java
  113 +if $cygwin ; then
  114 + APP_HOME=`cygpath --path --mixed "$APP_HOME"`
  115 + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
  116 + JAVACMD=`cygpath --unix "$JAVACMD"`
  117 +
  118 + # We build the pattern for arguments to be converted via cygpath
  119 + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
  120 + SEP=""
  121 + for dir in $ROOTDIRSRAW ; do
  122 + ROOTDIRS="$ROOTDIRS$SEP$dir"
  123 + SEP="|"
  124 + done
  125 + OURCYGPATTERN="(^($ROOTDIRS))"
  126 + # Add a user-defined pattern to the cygpath arguments
  127 + if [ "$GRADLE_CYGPATTERN" != "" ] ; then
  128 + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
  129 + fi
  130 + # Now convert the arguments - kludge to limit ourselves to /bin/sh
  131 + i=0
  132 + for arg in "$@" ; do
  133 + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
  134 + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
  135 +
  136 + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
  137 + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
  138 + else
  139 + eval `echo args$i`="\"$arg\""
  140 + fi
  141 + i=$((i+1))
  142 + done
  143 + case $i in
  144 + (0) set -- ;;
  145 + (1) set -- "$args0" ;;
  146 + (2) set -- "$args0" "$args1" ;;
  147 + (3) set -- "$args0" "$args1" "$args2" ;;
  148 + (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
  149 + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
  150 + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
  151 + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
  152 + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
  153 + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
  154 + esac
  155 +fi
  156 +
  157 +# Escape application args
  158 +save () {
  159 + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
  160 + echo " "
  161 +}
  162 +APP_ARGS=$(save "$@")
  163 +
  164 +# Collect all arguments for the java command, following the shell quoting and substitution rules
  165 +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
  166 +
  167 +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
  168 +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
  169 + cd "$(dirname "$0")"
  170 +fi
  171 +
  172 +exec "$JAVACMD" "$@"
  1 +@if "%DEBUG%" == "" @echo off
  2 +@rem ##########################################################################
  3 +@rem
  4 +@rem Gradle startup script for Windows
  5 +@rem
  6 +@rem ##########################################################################
  7 +
  8 +@rem Set local scope for the variables with windows NT shell
  9 +if "%OS%"=="Windows_NT" setlocal
  10 +
  11 +set DIRNAME=%~dp0
  12 +if "%DIRNAME%" == "" set DIRNAME=.
  13 +set APP_BASE_NAME=%~n0
  14 +set APP_HOME=%DIRNAME%
  15 +
  16 +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
  17 +set DEFAULT_JVM_OPTS=
  18 +
  19 +@rem Find java.exe
  20 +if defined JAVA_HOME goto findJavaFromJavaHome
  21 +
  22 +set JAVA_EXE=java.exe
  23 +%JAVA_EXE% -version >NUL 2>&1
  24 +if "%ERRORLEVEL%" == "0" goto init
  25 +
  26 +echo.
  27 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
  28 +echo.
  29 +echo Please set the JAVA_HOME variable in your environment to match the
  30 +echo location of your Java installation.
  31 +
  32 +goto fail
  33 +
  34 +:findJavaFromJavaHome
  35 +set JAVA_HOME=%JAVA_HOME:"=%
  36 +set JAVA_EXE=%JAVA_HOME%/bin/java.exe
  37 +
  38 +if exist "%JAVA_EXE%" goto init
  39 +
  40 +echo.
  41 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
  42 +echo.
  43 +echo Please set the JAVA_HOME variable in your environment to match the
  44 +echo location of your Java installation.
  45 +
  46 +goto fail
  47 +
  48 +:init
  49 +@rem Get command-line arguments, handling Windows variants
  50 +
  51 +if not "%OS%" == "Windows_NT" goto win9xME_args
  52 +
  53 +:win9xME_args
  54 +@rem Slurp the command line arguments.
  55 +set CMD_LINE_ARGS=
  56 +set _SKIP=2
  57 +
  58 +:win9xME_args_slurp
  59 +if "x%~1" == "x" goto execute
  60 +
  61 +set CMD_LINE_ARGS=%*
  62 +
  63 +:execute
  64 +@rem Setup the command line
  65 +
  66 +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
  67 +
  68 +@rem Execute Gradle
  69 +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
  70 +
  71 +:end
  72 +@rem End local scope for the variables with windows NT shell
  73 +if "%ERRORLEVEL%"=="0" goto mainEnd
  74 +
  75 +:fail
  76 +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
  77 +rem the _cmd.exe /c_ return code!
  78 +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
  79 +exit /b 1
  80 +
  81 +:mainEnd
  82 +if "%OS%"=="Windows_NT" endlocal
  83 +
  84 +:omega
不能预览此文件类型
  1 +## This file must *NOT* be checked into Version Control Systems,
  2 +# as it contains information specific to your local configuration.
  3 +#
  4 +# Location of the SDK. This is only used by Gradle.
  5 +# For customization when using a Version Control System, please read the
  6 +# header note.
  7 +#Mon Nov 16 15:27:54 CST 2020
  8 +sdk.dir=/Users/snowfox/Library/Android/sdk
  1 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  2 + package="com.theweflex.react">
  3 + <uses-permission android:name="android.permission.INTERNET"/>
  4 + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  5 + <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
  6 + <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
  7 + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  8 +</manifest>