@bugfender/rn-bugfender 1.1.4 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (285) hide show
  1. package/README.md +147 -96
  2. package/RnBugfender.podspec +21 -0
  3. package/android/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  4. package/android/.gradle/{6.1.1 → 7.1/dependencies-accessors}/gc.properties +0 -0
  5. package/android/.gradle/{6.1.1/javaCompile/taskHistory.bin → 7.1/executionHistory/executionHistory.bin} +0 -0
  6. package/android/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
  7. package/android/.gradle/{6.1.1 → 7.1}/fileChanges/last-build.bin +0 -0
  8. package/android/.gradle/{6.1.1/fileHashes/resourceHashesCache.bin → 7.1/fileHashes/fileHashes.bin} +0 -0
  9. package/android/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
  10. package/android/{build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt → .gradle/7.1/gc.properties} +0 -0
  11. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  12. package/android/.gradle/buildOutputCleanup/cache.properties +2 -2
  13. package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  14. package/android/.gradle/checksums/checksums.lock +0 -0
  15. package/android/.gradle/checksums/md5-checksums.bin +0 -0
  16. package/android/.gradle/checksums/sha1-checksums.bin +0 -0
  17. package/android/.idea/compiler.xml +6 -0
  18. package/android/.idea/gradle.xml +1 -3
  19. package/android/.idea/jarRepositories.xml +12 -17
  20. package/android/.idea/misc.xml +4 -1
  21. package/android/.idea/runConfigurations.xml +10 -0
  22. package/android/.idea/uiDesigner.xml +124 -0
  23. package/android/build.gradle +43 -85
  24. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  25. package/android/gradle/wrapper/gradle-wrapper.properties +1 -2
  26. package/android/gradlew +34 -21
  27. package/android/gradlew.bat +24 -19
  28. package/android/src/main/AndroidManifest.xml +4 -3
  29. package/android/src/main/java/com/bugfender/react/{RNBugfenderModule.java → RnBugfenderModule.java} +44 -15
  30. package/android/src/main/java/com/bugfender/react/RnBugfenderPackage.java +28 -0
  31. package/ios/RnBugfender.h +5 -0
  32. package/ios/{RNBugfender.m → RnBugfender.m} +30 -9
  33. package/ios/{RNBugfender.xcodeproj → RnBugfender.xcodeproj}/project.pbxproj +42 -37
  34. package/ios/RnBugfender.xcodeproj/project.xcworkspace/xcuserdata/fj.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  35. package/ios/{RNBugfender.xcodeproj → RnBugfender.xcodeproj}/xcuserdata/fj.xcuserdatad/xcschemes/xcschememanagement.plist +1 -1
  36. package/lib/commonjs/bugfender.js +338 -0
  37. package/lib/commonjs/bugfender.js.map +1 -0
  38. package/lib/commonjs/index.js +28 -0
  39. package/lib/commonjs/index.js.map +1 -0
  40. package/lib/commonjs/index.web.js +30 -0
  41. package/lib/commonjs/index.web.js.map +1 -0
  42. package/lib/commonjs/override-console-methods.js +91 -0
  43. package/lib/commonjs/override-console-methods.js.map +1 -0
  44. package/lib/commonjs/print-to-console.js +78 -0
  45. package/lib/commonjs/print-to-console.js.map +1 -0
  46. package/lib/commonjs/sdk-options.js +75 -0
  47. package/lib/commonjs/sdk-options.js.map +1 -0
  48. package/lib/commonjs/string-formatter.js +55 -0
  49. package/lib/commonjs/string-formatter.js.map +1 -0
  50. package/lib/commonjs/types/device.js +2 -0
  51. package/lib/commonjs/types/device.js.map +1 -0
  52. package/lib/commonjs/types/log.js +35 -0
  53. package/lib/commonjs/types/log.js.map +1 -0
  54. package/lib/commonjs/types/sdk-options.js +57 -0
  55. package/lib/commonjs/types/sdk-options.js.map +1 -0
  56. package/lib/commonjs/user-feedback.js +31 -0
  57. package/lib/commonjs/user-feedback.js.map +1 -0
  58. package/lib/commonjs/utilities.js +18 -0
  59. package/lib/commonjs/utilities.js.map +1 -0
  60. package/lib/module/bugfender.js +323 -0
  61. package/lib/module/bugfender.js.map +1 -0
  62. package/lib/module/index.js +6 -0
  63. package/lib/module/index.js.map +1 -0
  64. package/lib/module/index.web.js +5 -0
  65. package/lib/module/index.web.js.map +1 -0
  66. package/lib/module/override-console-methods.js +75 -0
  67. package/lib/module/override-console-methods.js.map +1 -0
  68. package/lib/module/print-to-console.js +67 -0
  69. package/lib/module/print-to-console.js.map +1 -0
  70. package/lib/module/sdk-options.js +65 -0
  71. package/lib/module/sdk-options.js.map +1 -0
  72. package/lib/module/string-formatter.js +45 -0
  73. package/lib/module/string-formatter.js.map +1 -0
  74. package/lib/module/types/device.js +2 -0
  75. package/lib/module/types/device.js.map +1 -0
  76. package/lib/module/types/log.js +24 -0
  77. package/lib/module/types/log.js.map +1 -0
  78. package/lib/module/types/sdk-options.js +47 -0
  79. package/lib/module/types/sdk-options.js.map +1 -0
  80. package/lib/module/user-feedback.js +22 -0
  81. package/lib/module/user-feedback.js.map +1 -0
  82. package/lib/module/utilities.js +11 -0
  83. package/lib/module/utilities.js.map +1 -0
  84. package/lib/typescript/bugfender.d.ts +163 -0
  85. package/lib/typescript/index.d.ts +5 -0
  86. package/lib/typescript/index.web.d.ts +4 -0
  87. package/lib/typescript/override-console-methods.d.ts +10 -0
  88. package/lib/typescript/print-to-console.d.ts +14 -0
  89. package/lib/typescript/sdk-options.d.ts +16 -0
  90. package/lib/typescript/string-formatter.d.ts +4 -0
  91. package/lib/typescript/types/device.d.ts +4 -0
  92. package/lib/typescript/types/log.d.ts +59 -0
  93. package/lib/typescript/types/sdk-options.d.ts +40 -0
  94. package/lib/typescript/user-feedback.d.ts +31 -0
  95. package/lib/typescript/utilities.d.ts +1 -0
  96. package/package.json +146 -12
  97. package/src/bugfender.ts +360 -0
  98. package/src/index.tsx +7 -0
  99. package/src/index.web.tsx +5 -0
  100. package/src/override-console-methods.ts +53 -0
  101. package/src/print-to-console.ts +67 -0
  102. package/src/sdk-options.ts +63 -0
  103. package/src/string-formatter.ts +44 -0
  104. package/src/types/device.ts +4 -0
  105. package/src/types/log.ts +75 -0
  106. package/src/types/sdk-options.ts +77 -0
  107. package/src/user-feedback.ts +33 -0
  108. package/src/utilities.ts +8 -0
  109. package/RNBugfender.podspec +0 -24
  110. package/android/.gradle/6.1.1/executionHistory/executionHistory.bin +0 -0
  111. package/android/.gradle/6.1.1/executionHistory/executionHistory.lock +0 -0
  112. package/android/.gradle/6.1.1/fileContent/fileContent.lock +0 -0
  113. package/android/.gradle/6.1.1/fileHashes/fileHashes.bin +0 -0
  114. package/android/.gradle/6.1.1/fileHashes/fileHashes.lock +0 -0
  115. package/android/.gradle/6.1.1/javaCompile/classAnalysis.bin +0 -0
  116. package/android/.gradle/6.1.1/javaCompile/javaCompile.lock +0 -0
  117. package/android/.idea/android.iml +0 -29
  118. package/android/.idea/caches/build_file_checksums.ser +0 -0
  119. package/android/.idea/codeStyles/Project.xml +0 -116
  120. package/android/.idea/libraries/Gradle__android_arch_core_common_1_1_1_jar.xml +0 -11
  121. package/android/.idea/libraries/Gradle__android_arch_core_runtime_1_1_1_aar.xml +0 -12
  122. package/android/.idea/libraries/Gradle__android_arch_lifecycle_common_1_1_1_jar.xml +0 -11
  123. package/android/.idea/libraries/Gradle__android_arch_lifecycle_livedata_1_1_1_aar.xml +0 -12
  124. package/android/.idea/libraries/Gradle__android_arch_lifecycle_livedata_core_1_1_1_aar.xml +0 -12
  125. package/android/.idea/libraries/Gradle__android_arch_lifecycle_runtime_1_1_1_aar.xml +0 -12
  126. package/android/.idea/libraries/Gradle__android_arch_lifecycle_viewmodel_1_1_1_aar.xml +0 -12
  127. package/android/.idea/libraries/Gradle__com_android_support_animated_vector_drawable_28_0_0_aar.xml +0 -10
  128. package/android/.idea/libraries/Gradle__com_android_support_appcompat_v7_28_0_0_aar.xml +0 -13
  129. package/android/.idea/libraries/Gradle__com_android_support_asynclayoutinflater_28_0_0_aar.xml +0 -10
  130. package/android/.idea/libraries/Gradle__com_android_support_collections_28_0_0_jar.xml +0 -9
  131. package/android/.idea/libraries/Gradle__com_android_support_coordinatorlayout_28_0_0_aar.xml +0 -13
  132. package/android/.idea/libraries/Gradle__com_android_support_cursoradapter_28_0_0_aar.xml +0 -10
  133. package/android/.idea/libraries/Gradle__com_android_support_customview_28_0_0_aar.xml +0 -10
  134. package/android/.idea/libraries/Gradle__com_android_support_documentfile_28_0_0_aar.xml +0 -10
  135. package/android/.idea/libraries/Gradle__com_android_support_drawerlayout_28_0_0_aar.xml +0 -13
  136. package/android/.idea/libraries/Gradle__com_android_support_interpolator_28_0_0_aar.xml +0 -10
  137. package/android/.idea/libraries/Gradle__com_android_support_loader_28_0_0_aar.xml +0 -10
  138. package/android/.idea/libraries/Gradle__com_android_support_localbroadcastmanager_28_0_0_aar.xml +0 -10
  139. package/android/.idea/libraries/Gradle__com_android_support_print_28_0_0_aar.xml +0 -13
  140. package/android/.idea/libraries/Gradle__com_android_support_slidingpanelayout_28_0_0_aar.xml +0 -10
  141. package/android/.idea/libraries/Gradle__com_android_support_support_annotations_28_0_0_jar.xml +0 -9
  142. package/android/.idea/libraries/Gradle__com_android_support_support_compat_28_0_0_aar.xml +0 -13
  143. package/android/.idea/libraries/Gradle__com_android_support_support_core_ui_28_0_0_aar.xml +0 -10
  144. package/android/.idea/libraries/Gradle__com_android_support_support_core_utils_28_0_0_aar.xml +0 -10
  145. package/android/.idea/libraries/Gradle__com_android_support_support_fragment_28_0_0_aar.xml +0 -13
  146. package/android/.idea/libraries/Gradle__com_android_support_support_vector_drawable_28_0_0_aar.xml +0 -10
  147. package/android/.idea/libraries/Gradle__com_android_support_swiperefreshlayout_28_0_0_aar.xml +0 -13
  148. package/android/.idea/libraries/Gradle__com_android_support_versionedparcelable_28_0_0_aar.xml +0 -10
  149. package/android/.idea/libraries/Gradle__com_android_support_viewpager_28_0_0_aar.xml +0 -10
  150. package/android/.idea/libraries/Gradle__com_bugfender_sdk_android_3_0_5_aar.xml +0 -12
  151. package/android/.idea/libraries/Gradle__com_facebook_fresco_drawee_1_10_0_aar.xml +0 -12
  152. package/android/.idea/libraries/Gradle__com_facebook_fresco_fbcore_1_10_0_aar.xml +0 -15
  153. package/android/.idea/libraries/Gradle__com_facebook_fresco_fresco_1_10_0_aar.xml +0 -15
  154. package/android/.idea/libraries/Gradle__com_facebook_fresco_imagepipeline_1_10_0_aar.xml +0 -15
  155. package/android/.idea/libraries/Gradle__com_facebook_fresco_imagepipeline_base_1_10_0_aar.xml +0 -15
  156. package/android/.idea/libraries/Gradle__com_facebook_fresco_imagepipeline_okhttp3_1_10_0_aar.xml +0 -12
  157. package/android/.idea/libraries/Gradle__com_facebook_infer_annotation_infer_annotation_0_11_2_jar.xml +0 -11
  158. package/android/.idea/libraries/Gradle__com_facebook_react_react_native_0_59_9_aar.xml +0 -17
  159. package/android/.idea/libraries/Gradle__com_facebook_soloader_soloader_0_6_0_aar.xml +0 -12
  160. package/android/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_3_0_2_jar.xml +0 -13
  161. package/android/.idea/libraries/Gradle__com_squareup_okhttp3_okhttp_3_12_1_jar.xml +0 -11
  162. package/android/.idea/libraries/Gradle__com_squareup_okhttp3_okhttp_urlconnection_3_12_1_jar.xml +0 -11
  163. package/android/.idea/libraries/Gradle__com_squareup_okio_okio_1_15_0_jar.xml +0 -13
  164. package/android/.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml +0 -13
  165. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/android/support/v4/R.java +0 -12
  166. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/android/support/v7/appcompat/R.java +0 -1248
  167. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/android/support/v7/recyclerview/R.java +0 -40
  168. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/bugfender/android/R.java +0 -55
  169. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/bugfender/react/R.java +0 -1384
  170. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/facebook/drawee/R.java +0 -82
  171. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/facebook/drawee/backends/pipeline/R.java +0 -82
  172. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/facebook/fbcore/R.java +0 -12
  173. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/facebook/imagepipeline/R.java +0 -12
  174. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/facebook/imagepipeline/backends/okhttp/R.java +0 -12
  175. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/facebook/react/R.java +0 -1361
  176. package/android/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/org/webkit/android_jsc/R.java +0 -12
  177. package/android/build/generated/source/buildConfig/debug/com/bugfender/react/BuildConfig.java +0 -13
  178. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +0 -11
  179. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json +0 -1
  180. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +0 -11
  181. package/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output.json +0 -1
  182. package/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json +0 -1
  183. package/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +0 -1
  184. package/android/build/intermediates/compile_library_classes/debug/classes.jar +0 -0
  185. package/android/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/generateDebugRFile/R.jar +0 -0
  186. package/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state +0 -0
  187. package/android/build/intermediates/incremental/debug-mergeJniLibs/merge-state +0 -0
  188. package/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
  189. package/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
  190. package/android/build/intermediates/incremental/packageDebugAssets/merger.xml +0 -2
  191. package/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +0 -1
  192. package/android/build/intermediates/incremental/packageDebugResources/merger.xml +0 -2
  193. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R.class +0 -0
  194. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class +0 -0
  195. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class +0 -0
  196. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class +0 -0
  197. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$color.class +0 -0
  198. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class +0 -0
  199. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class +0 -0
  200. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$id.class +0 -0
  201. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class +0 -0
  202. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class +0 -0
  203. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$string.class +0 -0
  204. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$style.class +0 -0
  205. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class +0 -0
  206. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R.class +0 -0
  207. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$attr.class +0 -0
  208. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$dimen.class +0 -0
  209. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$id.class +0 -0
  210. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R$styleable.class +0 -0
  211. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/recyclerview/R.class +0 -0
  212. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/android/R$color.class +0 -0
  213. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/android/R$drawable.class +0 -0
  214. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/android/R$id.class +0 -0
  215. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/android/R$layout.class +0 -0
  216. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/android/R$string.class +0 -0
  217. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/android/R.class +0 -0
  218. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/BuildConfig.class +0 -0
  219. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$anim.class +0 -0
  220. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$attr.class +0 -0
  221. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$bool.class +0 -0
  222. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$color.class +0 -0
  223. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$dimen.class +0 -0
  224. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$drawable.class +0 -0
  225. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$id.class +0 -0
  226. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$integer.class +0 -0
  227. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$layout.class +0 -0
  228. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$string.class +0 -0
  229. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$style.class +0 -0
  230. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$styleable.class +0 -0
  231. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R$xml.class +0 -0
  232. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/R.class +0 -0
  233. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/RNBugfenderModule.class +0 -0
  234. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/bugfender/react/RNBugfenderPackage.class +0 -0
  235. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$attr.class +0 -0
  236. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$id.class +0 -0
  237. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R$styleable.class +0 -0
  238. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/R.class +0 -0
  239. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$attr.class +0 -0
  240. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$id.class +0 -0
  241. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R$styleable.class +0 -0
  242. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/drawee/backends/pipeline/R.class +0 -0
  243. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/fbcore/R.class +0 -0
  244. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipeline/R.class +0 -0
  245. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/imagepipeline/backends/okhttp/R.class +0 -0
  246. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$anim.class +0 -0
  247. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$attr.class +0 -0
  248. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$bool.class +0 -0
  249. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$color.class +0 -0
  250. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$dimen.class +0 -0
  251. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$drawable.class +0 -0
  252. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$id.class +0 -0
  253. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$integer.class +0 -0
  254. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$layout.class +0 -0
  255. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$string.class +0 -0
  256. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$style.class +0 -0
  257. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$styleable.class +0 -0
  258. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R$xml.class +0 -0
  259. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/R.class +0 -0
  260. package/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/org/webkit/android_jsc/R.class +0 -0
  261. package/android/build/intermediates/library_java_res/debug/res.jar +0 -0
  262. package/android/build/intermediates/library_manifest/debug/AndroidManifest.xml +0 -11
  263. package/android/build/intermediates/merged_manifests/debug/output.json +0 -1
  264. package/android/build/intermediates/merged_manifests/debug/processDebugManifest/merged/AndroidManifest.xml +0 -11
  265. package/android/build/intermediates/merged_manifests/debug/processDebugManifest/merged/output.json +0 -1
  266. package/android/build/intermediates/packaged-classes/debug/classes.jar +0 -0
  267. package/android/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt +0 -1309
  268. package/android/build/intermediates/runtime_library_classes/debug/classes.jar +0 -0
  269. package/android/build/intermediates/symbols/debug/R.txt +0 -1783
  270. package/android/build/intermediates/transforms/mergeJavaRes/debug/0.jar +0 -0
  271. package/android/build/intermediates/transforms/mergeJavaRes/debug/__content__.json +0 -1
  272. package/android/build/intermediates/transforms/mergeJniLibs/debug/__content__.json +0 -1
  273. package/android/build/outputs/aar/android.aar +0 -0
  274. package/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -37
  275. package/android/local.properties +0 -1
  276. package/android/src/main/java/com/bugfender/react/RNBugfenderPackage.java +0 -29
  277. package/bugfender.js +0 -217
  278. package/example/.babelrc +0 -3
  279. package/example/.watchmanconfig +0 -1
  280. package/example/App.js +0 -121
  281. package/ios/RNBugfender.h +0 -7
  282. package/ios/RNBugfender.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
  283. package/ios/RNBugfender.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  284. package/ios/RNBugfender.xcodeproj/project.xcworkspace/xcuserdata/fj.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  285. package/ios/RNBugfender.xcodeproj/xcuserdata/rubenvot.xcuserdatad/xcschemes/xcschememanagement.plist +0 -19
@@ -1,1783 +0,0 @@
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 feedback_appbar_action_button 0x7f06002e
371
- int color feedback_appbar_background 0x7f06002f
372
- int color feedback_appbar_close_button 0x7f060030
373
- int color feedback_appbar_title 0x7f060031
374
- int color feedback_background 0x7f060032
375
- int color feedback_input_background 0x7f060033
376
- int color feedback_input_hint 0x7f060034
377
- int color feedback_input_text 0x7f060035
378
- int color feedback_text 0x7f060036
379
- int color foreground_material_dark 0x7f060037
380
- int color foreground_material_light 0x7f060038
381
- int color highlighted_text_material_dark 0x7f060039
382
- int color highlighted_text_material_light 0x7f06003a
383
- int color material_blue_grey_800 0x7f06003b
384
- int color material_blue_grey_900 0x7f06003c
385
- int color material_blue_grey_950 0x7f06003d
386
- int color material_deep_teal_200 0x7f06003e
387
- int color material_deep_teal_500 0x7f06003f
388
- int color material_grey_100 0x7f060040
389
- int color material_grey_300 0x7f060041
390
- int color material_grey_50 0x7f060042
391
- int color material_grey_600 0x7f060043
392
- int color material_grey_800 0x7f060044
393
- int color material_grey_850 0x7f060045
394
- int color material_grey_900 0x7f060046
395
- int color notification_action_color_filter 0x7f060047
396
- int color notification_icon_bg_color 0x7f060048
397
- int color primary_dark_material_dark 0x7f060049
398
- int color primary_dark_material_light 0x7f06004a
399
- int color primary_material_dark 0x7f06004b
400
- int color primary_material_light 0x7f06004c
401
- int color primary_text_default_material_dark 0x7f06004d
402
- int color primary_text_default_material_light 0x7f06004e
403
- int color primary_text_disabled_material_dark 0x7f06004f
404
- int color primary_text_disabled_material_light 0x7f060050
405
- int color ripple_material_dark 0x7f060051
406
- int color ripple_material_light 0x7f060052
407
- int color secondary_text_default_material_dark 0x7f060053
408
- int color secondary_text_default_material_light 0x7f060054
409
- int color secondary_text_disabled_material_dark 0x7f060055
410
- int color secondary_text_disabled_material_light 0x7f060056
411
- int color switch_thumb_disabled_material_dark 0x7f060057
412
- int color switch_thumb_disabled_material_light 0x7f060058
413
- int color switch_thumb_material_dark 0x7f060059
414
- int color switch_thumb_material_light 0x7f06005a
415
- int color switch_thumb_normal_material_dark 0x7f06005b
416
- int color switch_thumb_normal_material_light 0x7f06005c
417
- int color tooltip_background_dark 0x7f06005d
418
- int color tooltip_background_light 0x7f06005e
419
- int dimen abc_action_bar_content_inset_material 0x7f070001
420
- int dimen abc_action_bar_content_inset_with_nav 0x7f070002
421
- int dimen abc_action_bar_default_height_material 0x7f070003
422
- int dimen abc_action_bar_default_padding_end_material 0x7f070004
423
- int dimen abc_action_bar_default_padding_start_material 0x7f070005
424
- int dimen abc_action_bar_elevation_material 0x7f070006
425
- int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007
426
- int dimen abc_action_bar_overflow_padding_end_material 0x7f070008
427
- int dimen abc_action_bar_overflow_padding_start_material 0x7f070009
428
- int dimen abc_action_bar_stacked_max_height 0x7f07000a
429
- int dimen abc_action_bar_stacked_tab_max_width 0x7f07000b
430
- int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000c
431
- int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000d
432
- int dimen abc_action_button_min_height_material 0x7f07000e
433
- int dimen abc_action_button_min_width_material 0x7f07000f
434
- int dimen abc_action_button_min_width_overflow_material 0x7f070010
435
- int dimen abc_alert_dialog_button_bar_height 0x7f070011
436
- int dimen abc_alert_dialog_button_dimen 0x7f070012
437
- int dimen abc_button_inset_horizontal_material 0x7f070013
438
- int dimen abc_button_inset_vertical_material 0x7f070014
439
- int dimen abc_button_padding_horizontal_material 0x7f070015
440
- int dimen abc_button_padding_vertical_material 0x7f070016
441
- int dimen abc_cascading_menus_min_smallest_width 0x7f070017
442
- int dimen abc_config_prefDialogWidth 0x7f070018
443
- int dimen abc_control_corner_material 0x7f070019
444
- int dimen abc_control_inset_material 0x7f07001a
445
- int dimen abc_control_padding_material 0x7f07001b
446
- int dimen abc_dialog_corner_radius_material 0x7f07001c
447
- int dimen abc_dialog_fixed_height_major 0x7f07001d
448
- int dimen abc_dialog_fixed_height_minor 0x7f07001e
449
- int dimen abc_dialog_fixed_width_major 0x7f07001f
450
- int dimen abc_dialog_fixed_width_minor 0x7f070020
451
- int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070021
452
- int dimen abc_dialog_list_padding_top_no_title 0x7f070022
453
- int dimen abc_dialog_min_width_major 0x7f070023
454
- int dimen abc_dialog_min_width_minor 0x7f070024
455
- int dimen abc_dialog_padding_material 0x7f070025
456
- int dimen abc_dialog_padding_top_material 0x7f070026
457
- int dimen abc_dialog_title_divider_material 0x7f070027
458
- int dimen abc_disabled_alpha_material_dark 0x7f070028
459
- int dimen abc_disabled_alpha_material_light 0x7f070029
460
- int dimen abc_dropdownitem_icon_width 0x7f07002a
461
- int dimen abc_dropdownitem_text_padding_left 0x7f07002b
462
- int dimen abc_dropdownitem_text_padding_right 0x7f07002c
463
- int dimen abc_edit_text_inset_bottom_material 0x7f07002d
464
- int dimen abc_edit_text_inset_horizontal_material 0x7f07002e
465
- int dimen abc_edit_text_inset_top_material 0x7f07002f
466
- int dimen abc_floating_window_z 0x7f070030
467
- int dimen abc_list_item_padding_horizontal_material 0x7f070031
468
- int dimen abc_panel_menu_list_width 0x7f070032
469
- int dimen abc_progress_bar_height_material 0x7f070033
470
- int dimen abc_search_view_preferred_height 0x7f070034
471
- int dimen abc_search_view_preferred_width 0x7f070035
472
- int dimen abc_seekbar_track_background_height_material 0x7f070036
473
- int dimen abc_seekbar_track_progress_height_material 0x7f070037
474
- int dimen abc_select_dialog_padding_start_material 0x7f070038
475
- int dimen abc_switch_padding 0x7f070039
476
- int dimen abc_text_size_body_1_material 0x7f07003a
477
- int dimen abc_text_size_body_2_material 0x7f07003b
478
- int dimen abc_text_size_button_material 0x7f07003c
479
- int dimen abc_text_size_caption_material 0x7f07003d
480
- int dimen abc_text_size_display_1_material 0x7f07003e
481
- int dimen abc_text_size_display_2_material 0x7f07003f
482
- int dimen abc_text_size_display_3_material 0x7f070040
483
- int dimen abc_text_size_display_4_material 0x7f070041
484
- int dimen abc_text_size_headline_material 0x7f070042
485
- int dimen abc_text_size_large_material 0x7f070043
486
- int dimen abc_text_size_medium_material 0x7f070044
487
- int dimen abc_text_size_menu_header_material 0x7f070045
488
- int dimen abc_text_size_menu_material 0x7f070046
489
- int dimen abc_text_size_small_material 0x7f070047
490
- int dimen abc_text_size_subhead_material 0x7f070048
491
- int dimen abc_text_size_subtitle_material_toolbar 0x7f070049
492
- int dimen abc_text_size_title_material 0x7f07004a
493
- int dimen abc_text_size_title_material_toolbar 0x7f07004b
494
- int dimen compat_button_inset_horizontal_material 0x7f07004c
495
- int dimen compat_button_inset_vertical_material 0x7f07004d
496
- int dimen compat_button_padding_horizontal_material 0x7f07004e
497
- int dimen compat_button_padding_vertical_material 0x7f07004f
498
- int dimen compat_control_corner_material 0x7f070050
499
- int dimen compat_notification_large_icon_max_height 0x7f070051
500
- int dimen compat_notification_large_icon_max_width 0x7f070052
501
- int dimen disabled_alpha_material_dark 0x7f070053
502
- int dimen disabled_alpha_material_light 0x7f070054
503
- int dimen highlight_alpha_material_colored 0x7f070055
504
- int dimen highlight_alpha_material_dark 0x7f070056
505
- int dimen highlight_alpha_material_light 0x7f070057
506
- int dimen hint_alpha_material_dark 0x7f070058
507
- int dimen hint_alpha_material_light 0x7f070059
508
- int dimen hint_pressed_alpha_material_dark 0x7f07005a
509
- int dimen hint_pressed_alpha_material_light 0x7f07005b
510
- int dimen notification_action_icon_size 0x7f07005c
511
- int dimen notification_action_text_size 0x7f07005d
512
- int dimen notification_big_circle_margin 0x7f07005e
513
- int dimen notification_content_margin_start 0x7f07005f
514
- int dimen notification_large_icon_height 0x7f070060
515
- int dimen notification_large_icon_width 0x7f070061
516
- int dimen notification_main_column_padding_top 0x7f070062
517
- int dimen notification_media_narrow_margin 0x7f070063
518
- int dimen notification_right_icon_size 0x7f070064
519
- int dimen notification_right_side_padding_top 0x7f070065
520
- int dimen notification_small_icon_background_padding 0x7f070066
521
- int dimen notification_small_icon_size_as_large 0x7f070067
522
- int dimen notification_subtext_size 0x7f070068
523
- int dimen notification_top_pad 0x7f070069
524
- int dimen notification_top_pad_large_text 0x7f07006a
525
- int dimen tooltip_corner_radius 0x7f07006b
526
- int dimen tooltip_horizontal_padding 0x7f07006c
527
- int dimen tooltip_margin 0x7f07006d
528
- int dimen tooltip_precise_anchor_extra_offset 0x7f07006e
529
- int dimen tooltip_precise_anchor_threshold 0x7f07006f
530
- int dimen tooltip_vertical_padding 0x7f070070
531
- int dimen tooltip_y_offset_non_touch 0x7f070071
532
- int dimen tooltip_y_offset_touch 0x7f070072
533
- int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001
534
- int drawable abc_action_bar_item_background_material 0x7f080002
535
- int drawable abc_btn_borderless_material 0x7f080003
536
- int drawable abc_btn_check_material 0x7f080004
537
- int drawable abc_btn_check_to_on_mtrl_000 0x7f080005
538
- int drawable abc_btn_check_to_on_mtrl_015 0x7f080006
539
- int drawable abc_btn_colored_material 0x7f080007
540
- int drawable abc_btn_default_mtrl_shape 0x7f080008
541
- int drawable abc_btn_radio_material 0x7f080009
542
- int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000a
543
- int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000b
544
- int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000c
545
- int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000d
546
- int drawable abc_cab_background_internal_bg 0x7f08000e
547
- int drawable abc_cab_background_top_material 0x7f08000f
548
- int drawable abc_cab_background_top_mtrl_alpha 0x7f080010
549
- int drawable abc_control_background_material 0x7f080011
550
- int drawable abc_dialog_material_background 0x7f080012
551
- int drawable abc_edit_text_material 0x7f080013
552
- int drawable abc_ic_ab_back_material 0x7f080014
553
- int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080015
554
- int drawable abc_ic_clear_material 0x7f080016
555
- int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080017
556
- int drawable abc_ic_go_search_api_material 0x7f080018
557
- int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f080019
558
- int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001a
559
- int drawable abc_ic_menu_overflow_material 0x7f08001b
560
- int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001c
561
- int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001d
562
- int drawable abc_ic_menu_share_mtrl_alpha 0x7f08001e
563
- int drawable abc_ic_search_api_material 0x7f08001f
564
- int drawable abc_ic_star_black_16dp 0x7f080020
565
- int drawable abc_ic_star_black_36dp 0x7f080021
566
- int drawable abc_ic_star_black_48dp 0x7f080022
567
- int drawable abc_ic_star_half_black_16dp 0x7f080023
568
- int drawable abc_ic_star_half_black_36dp 0x7f080024
569
- int drawable abc_ic_star_half_black_48dp 0x7f080025
570
- int drawable abc_ic_voice_search_api_material 0x7f080026
571
- int drawable abc_item_background_holo_dark 0x7f080027
572
- int drawable abc_item_background_holo_light 0x7f080028
573
- int drawable abc_list_divider_material 0x7f080029
574
- int drawable abc_list_divider_mtrl_alpha 0x7f08002a
575
- int drawable abc_list_focused_holo 0x7f08002b
576
- int drawable abc_list_longpressed_holo 0x7f08002c
577
- int drawable abc_list_pressed_holo_dark 0x7f08002d
578
- int drawable abc_list_pressed_holo_light 0x7f08002e
579
- int drawable abc_list_selector_background_transition_holo_dark 0x7f08002f
580
- int drawable abc_list_selector_background_transition_holo_light 0x7f080030
581
- int drawable abc_list_selector_disabled_holo_dark 0x7f080031
582
- int drawable abc_list_selector_disabled_holo_light 0x7f080032
583
- int drawable abc_list_selector_holo_dark 0x7f080033
584
- int drawable abc_list_selector_holo_light 0x7f080034
585
- int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080035
586
- int drawable abc_popup_background_mtrl_mult 0x7f080036
587
- int drawable abc_ratingbar_indicator_material 0x7f080037
588
- int drawable abc_ratingbar_material 0x7f080038
589
- int drawable abc_ratingbar_small_material 0x7f080039
590
- int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003a
591
- int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003b
592
- int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003c
593
- int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003d
594
- int drawable abc_scrubber_track_mtrl_alpha 0x7f08003e
595
- int drawable abc_seekbar_thumb_material 0x7f08003f
596
- int drawable abc_seekbar_tick_mark_material 0x7f080040
597
- int drawable abc_seekbar_track_material 0x7f080041
598
- int drawable abc_spinner_mtrl_am_alpha 0x7f080042
599
- int drawable abc_spinner_textfield_background_material 0x7f080043
600
- int drawable abc_switch_thumb_material 0x7f080044
601
- int drawable abc_switch_track_mtrl_alpha 0x7f080045
602
- int drawable abc_tab_indicator_material 0x7f080046
603
- int drawable abc_tab_indicator_mtrl_alpha 0x7f080047
604
- int drawable abc_text_cursor_material 0x7f080048
605
- int drawable abc_text_select_handle_left_mtrl_dark 0x7f080049
606
- int drawable abc_text_select_handle_left_mtrl_light 0x7f08004a
607
- int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004b
608
- int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004c
609
- int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004d
610
- int drawable abc_text_select_handle_right_mtrl_light 0x7f08004e
611
- int drawable abc_textfield_activated_mtrl_alpha 0x7f08004f
612
- int drawable abc_textfield_default_mtrl_alpha 0x7f080050
613
- int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080051
614
- int drawable abc_textfield_search_default_mtrl_alpha 0x7f080052
615
- int drawable abc_textfield_search_material 0x7f080053
616
- int drawable abc_vector_test 0x7f080054
617
- int drawable bf_bugfender_logo 0x7f080055
618
- int drawable bf_ic_close 0x7f080056
619
- int drawable bugfender_logo 0x7f080057
620
- int drawable notification_action_background 0x7f080058
621
- int drawable notification_bg 0x7f080059
622
- int drawable notification_bg_low 0x7f08005a
623
- int drawable notification_bg_low_normal 0x7f08005b
624
- int drawable notification_bg_low_pressed 0x7f08005c
625
- int drawable notification_bg_normal 0x7f08005d
626
- int drawable notification_bg_normal_pressed 0x7f08005e
627
- int drawable notification_icon_background 0x7f08005f
628
- int drawable notification_template_icon_bg 0x7f080060
629
- int drawable notification_template_icon_low_bg 0x7f080061
630
- int drawable notification_tile_bg 0x7f080062
631
- int drawable notify_panel_notification_icon_bg 0x7f080063
632
- int drawable redbox_top_border_background 0x7f080064
633
- int drawable tooltip_frame_dark 0x7f080065
634
- int drawable tooltip_frame_light 0x7f080066
635
- int id accessibility_hint 0x7f0b0001
636
- int id accessibility_role 0x7f0b0002
637
- int id action_bar 0x7f0b0003
638
- int id action_bar_activity_content 0x7f0b0004
639
- int id action_bar_container 0x7f0b0005
640
- int id action_bar_root 0x7f0b0006
641
- int id action_bar_spinner 0x7f0b0007
642
- int id action_bar_subtitle 0x7f0b0008
643
- int id action_bar_title 0x7f0b0009
644
- int id action_container 0x7f0b000a
645
- int id action_context_bar 0x7f0b000b
646
- int id action_divider 0x7f0b000c
647
- int id action_image 0x7f0b000d
648
- int id action_menu_divider 0x7f0b000e
649
- int id action_menu_presenter 0x7f0b000f
650
- int id action_mode_bar 0x7f0b0010
651
- int id action_mode_bar_stub 0x7f0b0011
652
- int id action_mode_close_button 0x7f0b0012
653
- int id action_text 0x7f0b0013
654
- int id actions 0x7f0b0014
655
- int id activity_chooser_view_content 0x7f0b0015
656
- int id add 0x7f0b0016
657
- int id alertTitle 0x7f0b0017
658
- int id appbar_rl 0x7f0b0018
659
- int id async 0x7f0b0019
660
- int id blocking 0x7f0b001a
661
- int id bottom 0x7f0b001b
662
- int id bugfender_tv 0x7f0b001c
663
- int id buttonPanel 0x7f0b001d
664
- int id catalyst_redbox_title 0x7f0b001e
665
- int id center 0x7f0b001f
666
- int id centerCrop 0x7f0b0020
667
- int id centerInside 0x7f0b0021
668
- int id checkbox 0x7f0b0022
669
- int id chronometer 0x7f0b0023
670
- int id close_iv 0x7f0b0024
671
- int id content 0x7f0b0025
672
- int id contentPanel 0x7f0b0026
673
- int id custom 0x7f0b0027
674
- int id customPanel 0x7f0b0028
675
- int id decor_content_parent 0x7f0b0029
676
- int id default_activity_button 0x7f0b002a
677
- int id edit_query 0x7f0b002b
678
- int id end 0x7f0b002c
679
- int id expand_activities_button 0x7f0b002d
680
- int id expanded_menu 0x7f0b002e
681
- int id feedback_message_et 0x7f0b002f
682
- int id feedback_title_et 0x7f0b0030
683
- int id fitBottomStart 0x7f0b0031
684
- int id fitCenter 0x7f0b0032
685
- int id fitEnd 0x7f0b0033
686
- int id fitStart 0x7f0b0034
687
- int id fitXY 0x7f0b0035
688
- int id focusCrop 0x7f0b0036
689
- int id forever 0x7f0b0037
690
- int id fps_text 0x7f0b0038
691
- int id group_divider 0x7f0b0039
692
- int id home 0x7f0b003a
693
- int id icon 0x7f0b003b
694
- int id icon_group 0x7f0b003c
695
- int id image 0x7f0b003d
696
- int id info 0x7f0b003e
697
- int id italic 0x7f0b003f
698
- int id left 0x7f0b0040
699
- int id line1 0x7f0b0041
700
- int id line3 0x7f0b0042
701
- int id listMode 0x7f0b0043
702
- int id list_item 0x7f0b0044
703
- int id message 0x7f0b0045
704
- int id message_tv 0x7f0b0046
705
- int id multiply 0x7f0b0047
706
- int id none 0x7f0b0048
707
- int id normal 0x7f0b0049
708
- int id notification_background 0x7f0b004a
709
- int id notification_main_column 0x7f0b004b
710
- int id notification_main_column_container 0x7f0b004c
711
- int id parentPanel 0x7f0b004d
712
- int id positive_action_tv 0x7f0b004e
713
- int id progress_circular 0x7f0b004f
714
- int id progress_horizontal 0x7f0b0050
715
- int id radio 0x7f0b0051
716
- int id react_test_id 0x7f0b0052
717
- int id right 0x7f0b0053
718
- int id right_icon 0x7f0b0054
719
- int id right_side 0x7f0b0055
720
- int id rn_frame_file 0x7f0b0056
721
- int id rn_frame_method 0x7f0b0057
722
- int id rn_redbox_copy_button 0x7f0b0058
723
- int id rn_redbox_dismiss_button 0x7f0b0059
724
- int id rn_redbox_line_separator 0x7f0b005a
725
- int id rn_redbox_loading_indicator 0x7f0b005b
726
- int id rn_redbox_reload_button 0x7f0b005c
727
- int id rn_redbox_report_button 0x7f0b005d
728
- int id rn_redbox_report_label 0x7f0b005e
729
- int id rn_redbox_stack 0x7f0b005f
730
- int id root_vg 0x7f0b0060
731
- int id screen 0x7f0b0061
732
- int id scrollIndicatorDown 0x7f0b0062
733
- int id scrollIndicatorUp 0x7f0b0063
734
- int id scrollView 0x7f0b0064
735
- int id search_badge 0x7f0b0065
736
- int id search_bar 0x7f0b0066
737
- int id search_button 0x7f0b0067
738
- int id search_close_btn 0x7f0b0068
739
- int id search_edit_frame 0x7f0b0069
740
- int id search_go_btn 0x7f0b006a
741
- int id search_mag_icon 0x7f0b006b
742
- int id search_plate 0x7f0b006c
743
- int id search_src_text 0x7f0b006d
744
- int id search_voice_btn 0x7f0b006e
745
- int id select_dialog_listview 0x7f0b006f
746
- int id shortcut 0x7f0b0070
747
- int id spacer 0x7f0b0071
748
- int id split_action_bar 0x7f0b0072
749
- int id src_atop 0x7f0b0073
750
- int id src_in 0x7f0b0074
751
- int id src_over 0x7f0b0075
752
- int id start 0x7f0b0076
753
- int id submenuarrow 0x7f0b0077
754
- int id submit_area 0x7f0b0078
755
- int id tabMode 0x7f0b0079
756
- int id tag_transition_group 0x7f0b007a
757
- int id tag_unhandled_key_event_manager 0x7f0b007b
758
- int id tag_unhandled_key_listeners 0x7f0b007c
759
- int id text 0x7f0b007d
760
- int id text2 0x7f0b007e
761
- int id textSpacerNoButtons 0x7f0b007f
762
- int id textSpacerNoTitle 0x7f0b0080
763
- int id time 0x7f0b0081
764
- int id title 0x7f0b0082
765
- int id titleDividerNoCustom 0x7f0b0083
766
- int id title_template 0x7f0b0084
767
- int id title_tv 0x7f0b0085
768
- int id top 0x7f0b0086
769
- int id topPanel 0x7f0b0087
770
- int id uniform 0x7f0b0088
771
- int id up 0x7f0b0089
772
- int id view_tag_instance_handle 0x7f0b008a
773
- int id view_tag_native_id 0x7f0b008b
774
- int id wrap_content 0x7f0b008c
775
- int integer abc_config_activityDefaultDur 0x7f0c0001
776
- int integer abc_config_activityShortDur 0x7f0c0002
777
- int integer cancel_button_image_alpha 0x7f0c0003
778
- int integer config_tooltipAnimTime 0x7f0c0004
779
- int integer status_bar_notification_info_maxnum 0x7f0c0005
780
- int layout abc_action_bar_title_item 0x7f0e0001
781
- int layout abc_action_bar_up_container 0x7f0e0002
782
- int layout abc_action_menu_item_layout 0x7f0e0003
783
- int layout abc_action_menu_layout 0x7f0e0004
784
- int layout abc_action_mode_bar 0x7f0e0005
785
- int layout abc_action_mode_close_item_material 0x7f0e0006
786
- int layout abc_activity_chooser_view 0x7f0e0007
787
- int layout abc_activity_chooser_view_list_item 0x7f0e0008
788
- int layout abc_alert_dialog_button_bar_material 0x7f0e0009
789
- int layout abc_alert_dialog_material 0x7f0e000a
790
- int layout abc_alert_dialog_title_material 0x7f0e000b
791
- int layout abc_cascading_menu_item_layout 0x7f0e000c
792
- int layout abc_dialog_title_material 0x7f0e000d
793
- int layout abc_expanded_menu_layout 0x7f0e000e
794
- int layout abc_list_menu_item_checkbox 0x7f0e000f
795
- int layout abc_list_menu_item_icon 0x7f0e0010
796
- int layout abc_list_menu_item_layout 0x7f0e0011
797
- int layout abc_list_menu_item_radio 0x7f0e0012
798
- int layout abc_popup_menu_header_item_layout 0x7f0e0013
799
- int layout abc_popup_menu_item_layout 0x7f0e0014
800
- int layout abc_screen_content_include 0x7f0e0015
801
- int layout abc_screen_simple 0x7f0e0016
802
- int layout abc_screen_simple_overlay_action_mode 0x7f0e0017
803
- int layout abc_screen_toolbar 0x7f0e0018
804
- int layout abc_search_dropdown_item_icons_2line 0x7f0e0019
805
- int layout abc_search_view 0x7f0e001a
806
- int layout abc_select_dialog_material 0x7f0e001b
807
- int layout abc_tooltip 0x7f0e001c
808
- int layout bf_feedback_screen 0x7f0e001d
809
- int layout dev_loading_view 0x7f0e001e
810
- int layout fps_view 0x7f0e001f
811
- int layout notification_action 0x7f0e0020
812
- int layout notification_action_tombstone 0x7f0e0021
813
- int layout notification_template_custom_big 0x7f0e0022
814
- int layout notification_template_icon_group 0x7f0e0023
815
- int layout notification_template_part_chronometer 0x7f0e0024
816
- int layout notification_template_part_time 0x7f0e0025
817
- int layout redbox_item_frame 0x7f0e0026
818
- int layout redbox_item_title 0x7f0e0027
819
- int layout redbox_view 0x7f0e0028
820
- int layout select_dialog_item_material 0x7f0e0029
821
- int layout select_dialog_multichoice_material 0x7f0e002a
822
- int layout select_dialog_singlechoice_material 0x7f0e002b
823
- int layout support_simple_spinner_dropdown_item 0x7f0e002c
824
- int string abc_action_bar_home_description 0x7f140001
825
- int string abc_action_bar_up_description 0x7f140002
826
- int string abc_action_menu_overflow_description 0x7f140003
827
- int string abc_action_mode_done 0x7f140004
828
- int string abc_activity_chooser_view_see_all 0x7f140005
829
- int string abc_activitychooserview_choose_application 0x7f140006
830
- int string abc_capital_off 0x7f140007
831
- int string abc_capital_on 0x7f140008
832
- int string abc_font_family_body_1_material 0x7f140009
833
- int string abc_font_family_body_2_material 0x7f14000a
834
- int string abc_font_family_button_material 0x7f14000b
835
- int string abc_font_family_caption_material 0x7f14000c
836
- int string abc_font_family_display_1_material 0x7f14000d
837
- int string abc_font_family_display_2_material 0x7f14000e
838
- int string abc_font_family_display_3_material 0x7f14000f
839
- int string abc_font_family_display_4_material 0x7f140010
840
- int string abc_font_family_headline_material 0x7f140011
841
- int string abc_font_family_menu_material 0x7f140012
842
- int string abc_font_family_subhead_material 0x7f140013
843
- int string abc_font_family_title_material 0x7f140014
844
- int string abc_menu_alt_shortcut_label 0x7f140015
845
- int string abc_menu_ctrl_shortcut_label 0x7f140016
846
- int string abc_menu_delete_shortcut_label 0x7f140017
847
- int string abc_menu_enter_shortcut_label 0x7f140018
848
- int string abc_menu_function_shortcut_label 0x7f140019
849
- int string abc_menu_meta_shortcut_label 0x7f14001a
850
- int string abc_menu_shift_shortcut_label 0x7f14001b
851
- int string abc_menu_space_shortcut_label 0x7f14001c
852
- int string abc_menu_sym_shortcut_label 0x7f14001d
853
- int string abc_prepend_shortcut_label 0x7f14001e
854
- int string abc_search_hint 0x7f14001f
855
- int string abc_searchview_description_clear 0x7f140020
856
- int string abc_searchview_description_query 0x7f140021
857
- int string abc_searchview_description_search 0x7f140022
858
- int string abc_searchview_description_submit 0x7f140023
859
- int string abc_searchview_description_voice 0x7f140024
860
- int string abc_shareactionprovider_share_with 0x7f140025
861
- int string abc_shareactionprovider_share_with_application 0x7f140026
862
- int string abc_toolbar_collapse_description 0x7f140027
863
- int string adjustable_description 0x7f140028
864
- int string catalyst_copy_button 0x7f140029
865
- int string catalyst_debugjs 0x7f14002a
866
- int string catalyst_debugjs_nuclide 0x7f14002b
867
- int string catalyst_debugjs_nuclide_failure 0x7f14002c
868
- int string catalyst_debugjs_off 0x7f14002d
869
- int string catalyst_dismiss_button 0x7f14002e
870
- int string catalyst_element_inspector 0x7f14002f
871
- int string catalyst_heap_capture 0x7f140030
872
- int string catalyst_hot_module_replacement 0x7f140031
873
- int string catalyst_hot_module_replacement_off 0x7f140032
874
- int string catalyst_jsload_error 0x7f140033
875
- int string catalyst_live_reload 0x7f140034
876
- int string catalyst_live_reload_off 0x7f140035
877
- int string catalyst_loading_from_url 0x7f140036
878
- int string catalyst_perf_monitor 0x7f140037
879
- int string catalyst_perf_monitor_off 0x7f140038
880
- int string catalyst_poke_sampling_profiler 0x7f140039
881
- int string catalyst_reload_button 0x7f14003a
882
- int string catalyst_reloadjs 0x7f14003b
883
- int string catalyst_remotedbg_error 0x7f14003c
884
- int string catalyst_remotedbg_message 0x7f14003d
885
- int string catalyst_report_button 0x7f14003e
886
- int string catalyst_settings 0x7f14003f
887
- int string catalyst_settings_title 0x7f140040
888
- int string header_description 0x7f140041
889
- int string image_button_description 0x7f140042
890
- int string image_description 0x7f140043
891
- int string link_description 0x7f140044
892
- int string powered_by_bugfender 0x7f140045
893
- int string search_description 0x7f140046
894
- int string search_menu_title 0x7f140047
895
- int string status_bar_notification_info_overflow 0x7f140048
896
- int style AlertDialog_AppCompat 0x7f150001
897
- int style AlertDialog_AppCompat_Light 0x7f150002
898
- int style Animation_AppCompat_Dialog 0x7f150003
899
- int style Animation_AppCompat_DropDownUp 0x7f150004
900
- int style Animation_AppCompat_Tooltip 0x7f150005
901
- int style Animation_Catalyst_RedBox 0x7f150006
902
- int style Base_AlertDialog_AppCompat 0x7f150007
903
- int style Base_AlertDialog_AppCompat_Light 0x7f150008
904
- int style Base_Animation_AppCompat_Dialog 0x7f150009
905
- int style Base_Animation_AppCompat_DropDownUp 0x7f15000a
906
- int style Base_Animation_AppCompat_Tooltip 0x7f15000b
907
- int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000c
908
- int style Base_DialogWindowTitle_AppCompat 0x7f15000d
909
- int style Base_TextAppearance_AppCompat 0x7f15000e
910
- int style Base_TextAppearance_AppCompat_Body1 0x7f15000f
911
- int style Base_TextAppearance_AppCompat_Body2 0x7f150010
912
- int style Base_TextAppearance_AppCompat_Button 0x7f150011
913
- int style Base_TextAppearance_AppCompat_Caption 0x7f150012
914
- int style Base_TextAppearance_AppCompat_Display1 0x7f150013
915
- int style Base_TextAppearance_AppCompat_Display2 0x7f150014
916
- int style Base_TextAppearance_AppCompat_Display3 0x7f150015
917
- int style Base_TextAppearance_AppCompat_Display4 0x7f150016
918
- int style Base_TextAppearance_AppCompat_Headline 0x7f150017
919
- int style Base_TextAppearance_AppCompat_Inverse 0x7f150018
920
- int style Base_TextAppearance_AppCompat_Large 0x7f150019
921
- int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f15001a
922
- int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001b
923
- int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001c
924
- int style Base_TextAppearance_AppCompat_Medium 0x7f15001d
925
- int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f15001e
926
- int style Base_TextAppearance_AppCompat_Menu 0x7f15001f
927
- int style Base_TextAppearance_AppCompat_SearchResult 0x7f150020
928
- int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150021
929
- int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150022
930
- int style Base_TextAppearance_AppCompat_Small 0x7f150023
931
- int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150024
932
- int style Base_TextAppearance_AppCompat_Subhead 0x7f150025
933
- int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150026
934
- int style Base_TextAppearance_AppCompat_Title 0x7f150027
935
- int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150028
936
- int style Base_TextAppearance_AppCompat_Tooltip 0x7f150029
937
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15002a
938
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002b
939
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002c
940
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002d
941
- int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15002e
942
- int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15002f
943
- int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150030
944
- int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150031
945
- int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150032
946
- int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150033
947
- int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150034
948
- int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150035
949
- int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150036
950
- int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150037
951
- int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150038
952
- int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150039
953
- int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15003a
954
- int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003b
955
- int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003c
956
- int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003d
957
- int style Base_ThemeOverlay_AppCompat 0x7f15003e
958
- int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15003f
959
- int style Base_ThemeOverlay_AppCompat_Dark 0x7f150040
960
- int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150041
961
- int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150042
962
- int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150043
963
- int style Base_ThemeOverlay_AppCompat_Light 0x7f150044
964
- int style Base_Theme_AppCompat 0x7f150045
965
- int style Base_Theme_AppCompat_CompactMenu 0x7f150046
966
- int style Base_Theme_AppCompat_Dialog 0x7f150047
967
- int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150048
968
- int style Base_Theme_AppCompat_Dialog_Alert 0x7f150049
969
- int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15004a
970
- int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004b
971
- int style Base_Theme_AppCompat_Light 0x7f15004c
972
- int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15004d
973
- int style Base_Theme_AppCompat_Light_Dialog 0x7f15004e
974
- int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f15004f
975
- int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150050
976
- int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150051
977
- int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150052
978
- int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150053
979
- int style Base_V21_Theme_AppCompat 0x7f150054
980
- int style Base_V21_Theme_AppCompat_Dialog 0x7f150055
981
- int style Base_V21_Theme_AppCompat_Light 0x7f150056
982
- int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150057
983
- int style Base_V22_Theme_AppCompat 0x7f150058
984
- int style Base_V22_Theme_AppCompat_Light 0x7f150059
985
- int style Base_V23_Theme_AppCompat 0x7f15005a
986
- int style Base_V23_Theme_AppCompat_Light 0x7f15005b
987
- int style Base_V26_Theme_AppCompat 0x7f15005c
988
- int style Base_V26_Theme_AppCompat_Light 0x7f15005d
989
- int style Base_V26_Widget_AppCompat_Toolbar 0x7f15005e
990
- int style Base_V28_Theme_AppCompat 0x7f15005f
991
- int style Base_V28_Theme_AppCompat_Light 0x7f150060
992
- int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150061
993
- int style Base_V7_Theme_AppCompat 0x7f150062
994
- int style Base_V7_Theme_AppCompat_Dialog 0x7f150063
995
- int style Base_V7_Theme_AppCompat_Light 0x7f150064
996
- int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150065
997
- int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150066
998
- int style Base_V7_Widget_AppCompat_EditText 0x7f150067
999
- int style Base_V7_Widget_AppCompat_Toolbar 0x7f150068
1000
- int style Base_Widget_AppCompat_ActionBar 0x7f150069
1001
- int style Base_Widget_AppCompat_ActionBar_Solid 0x7f15006a
1002
- int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f15006b
1003
- int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15006c
1004
- int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15006d
1005
- int style Base_Widget_AppCompat_ActionButton 0x7f15006e
1006
- int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f15006f
1007
- int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f150070
1008
- int style Base_Widget_AppCompat_ActionMode 0x7f150071
1009
- int style Base_Widget_AppCompat_ActivityChooserView 0x7f150072
1010
- int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150073
1011
- int style Base_Widget_AppCompat_Button 0x7f150074
1012
- int style Base_Widget_AppCompat_ButtonBar 0x7f150075
1013
- int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150076
1014
- int style Base_Widget_AppCompat_Button_Borderless 0x7f150077
1015
- int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f150078
1016
- int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150079
1017
- int style Base_Widget_AppCompat_Button_Colored 0x7f15007a
1018
- int style Base_Widget_AppCompat_Button_Small 0x7f15007b
1019
- int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f15007c
1020
- int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15007d
1021
- int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f15007e
1022
- int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f15007f
1023
- int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f150080
1024
- int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f150081
1025
- int style Base_Widget_AppCompat_EditText 0x7f150082
1026
- int style Base_Widget_AppCompat_ImageButton 0x7f150083
1027
- int style Base_Widget_AppCompat_Light_ActionBar 0x7f150084
1028
- int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f150085
1029
- int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f150086
1030
- int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f150087
1031
- int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150088
1032
- int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f150089
1033
- int style Base_Widget_AppCompat_Light_PopupMenu 0x7f15008a
1034
- int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15008b
1035
- int style Base_Widget_AppCompat_ListMenuView 0x7f15008c
1036
- int style Base_Widget_AppCompat_ListPopupWindow 0x7f15008d
1037
- int style Base_Widget_AppCompat_ListView 0x7f15008e
1038
- int style Base_Widget_AppCompat_ListView_DropDown 0x7f15008f
1039
- int style Base_Widget_AppCompat_ListView_Menu 0x7f150090
1040
- int style Base_Widget_AppCompat_PopupMenu 0x7f150091
1041
- int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f150092
1042
- int style Base_Widget_AppCompat_PopupWindow 0x7f150093
1043
- int style Base_Widget_AppCompat_ProgressBar 0x7f150094
1044
- int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f150095
1045
- int style Base_Widget_AppCompat_RatingBar 0x7f150096
1046
- int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f150097
1047
- int style Base_Widget_AppCompat_RatingBar_Small 0x7f150098
1048
- int style Base_Widget_AppCompat_SearchView 0x7f150099
1049
- int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f15009a
1050
- int style Base_Widget_AppCompat_SeekBar 0x7f15009b
1051
- int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f15009c
1052
- int style Base_Widget_AppCompat_Spinner 0x7f15009d
1053
- int style Base_Widget_AppCompat_Spinner_Underlined 0x7f15009e
1054
- int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f15009f
1055
- int style Base_Widget_AppCompat_Toolbar 0x7f1500a0
1056
- int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500a1
1057
- int style CalendarDatePickerDialog 0x7f1500a2
1058
- int style CalendarDatePickerStyle 0x7f1500a3
1059
- int style ClockTimePickerDialog 0x7f1500a4
1060
- int style ClockTimePickerStyle 0x7f1500a5
1061
- int style DialogAnimationFade 0x7f1500a6
1062
- int style DialogAnimationSlide 0x7f1500a7
1063
- int style Platform_AppCompat 0x7f1500a8
1064
- int style Platform_AppCompat_Light 0x7f1500a9
1065
- int style Platform_ThemeOverlay_AppCompat 0x7f1500aa
1066
- int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500ab
1067
- int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500ac
1068
- int style Platform_V21_AppCompat 0x7f1500ad
1069
- int style Platform_V21_AppCompat_Light 0x7f1500ae
1070
- int style Platform_V25_AppCompat 0x7f1500af
1071
- int style Platform_V25_AppCompat_Light 0x7f1500b0
1072
- int style Platform_Widget_AppCompat_Spinner 0x7f1500b1
1073
- int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500b2
1074
- int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500b3
1075
- int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500b4
1076
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500b5
1077
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500b6
1078
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f1500b7
1079
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f1500b8
1080
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500b9
1081
- int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f1500ba
1082
- int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500bb
1083
- int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500bc
1084
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500bd
1085
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500be
1086
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500bf
1087
- int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500c0
1088
- int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500c1
1089
- int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500c2
1090
- int style SpinnerDatePickerDialog 0x7f1500c3
1091
- int style SpinnerDatePickerStyle 0x7f1500c4
1092
- int style SpinnerTimePickerDialog 0x7f1500c5
1093
- int style SpinnerTimePickerStyle 0x7f1500c6
1094
- int style TextAppearance_AppCompat 0x7f1500c7
1095
- int style TextAppearance_AppCompat_Body1 0x7f1500c8
1096
- int style TextAppearance_AppCompat_Body2 0x7f1500c9
1097
- int style TextAppearance_AppCompat_Button 0x7f1500ca
1098
- int style TextAppearance_AppCompat_Caption 0x7f1500cb
1099
- int style TextAppearance_AppCompat_Display1 0x7f1500cc
1100
- int style TextAppearance_AppCompat_Display2 0x7f1500cd
1101
- int style TextAppearance_AppCompat_Display3 0x7f1500ce
1102
- int style TextAppearance_AppCompat_Display4 0x7f1500cf
1103
- int style TextAppearance_AppCompat_Headline 0x7f1500d0
1104
- int style TextAppearance_AppCompat_Inverse 0x7f1500d1
1105
- int style TextAppearance_AppCompat_Large 0x7f1500d2
1106
- int style TextAppearance_AppCompat_Large_Inverse 0x7f1500d3
1107
- int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500d4
1108
- int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500d5
1109
- int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500d6
1110
- int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500d7
1111
- int style TextAppearance_AppCompat_Medium 0x7f1500d8
1112
- int style TextAppearance_AppCompat_Medium_Inverse 0x7f1500d9
1113
- int style TextAppearance_AppCompat_Menu 0x7f1500da
1114
- int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1500db
1115
- int style TextAppearance_AppCompat_SearchResult_Title 0x7f1500dc
1116
- int style TextAppearance_AppCompat_Small 0x7f1500dd
1117
- int style TextAppearance_AppCompat_Small_Inverse 0x7f1500de
1118
- int style TextAppearance_AppCompat_Subhead 0x7f1500df
1119
- int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1500e0
1120
- int style TextAppearance_AppCompat_Title 0x7f1500e1
1121
- int style TextAppearance_AppCompat_Title_Inverse 0x7f1500e2
1122
- int style TextAppearance_AppCompat_Tooltip 0x7f1500e3
1123
- int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1500e4
1124
- int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1500e5
1125
- int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1500e6
1126
- int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1500e7
1127
- int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1500e8
1128
- int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1500e9
1129
- int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1500ea
1130
- int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1500eb
1131
- int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1500ec
1132
- int style TextAppearance_AppCompat_Widget_Button 0x7f1500ed
1133
- int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1500ee
1134
- int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1500ef
1135
- int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1500f0
1136
- int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1500f1
1137
- int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1500f2
1138
- int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1500f3
1139
- int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1500f4
1140
- int style TextAppearance_AppCompat_Widget_Switch 0x7f1500f5
1141
- int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1500f6
1142
- int style TextAppearance_Compat_Notification 0x7f1500f7
1143
- int style TextAppearance_Compat_Notification_Info 0x7f1500f8
1144
- int style TextAppearance_Compat_Notification_Line2 0x7f1500f9
1145
- int style TextAppearance_Compat_Notification_Time 0x7f1500fa
1146
- int style TextAppearance_Compat_Notification_Title 0x7f1500fb
1147
- int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f1500fc
1148
- int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f1500fd
1149
- int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f1500fe
1150
- int style Theme 0x7f1500ff
1151
- int style ThemeOverlay_AppCompat 0x7f150100
1152
- int style ThemeOverlay_AppCompat_ActionBar 0x7f150101
1153
- int style ThemeOverlay_AppCompat_Dark 0x7f150102
1154
- int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150103
1155
- int style ThemeOverlay_AppCompat_Dialog 0x7f150104
1156
- int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150105
1157
- int style ThemeOverlay_AppCompat_Light 0x7f150106
1158
- int style Theme_AppCompat 0x7f150107
1159
- int style Theme_AppCompat_CompactMenu 0x7f150108
1160
- int style Theme_AppCompat_DayNight 0x7f150109
1161
- int style Theme_AppCompat_DayNight_DarkActionBar 0x7f15010a
1162
- int style Theme_AppCompat_DayNight_Dialog 0x7f15010b
1163
- int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f15010c
1164
- int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f15010d
1165
- int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f15010e
1166
- int style Theme_AppCompat_DayNight_NoActionBar 0x7f15010f
1167
- int style Theme_AppCompat_Dialog 0x7f150110
1168
- int style Theme_AppCompat_DialogWhenLarge 0x7f150111
1169
- int style Theme_AppCompat_Dialog_Alert 0x7f150112
1170
- int style Theme_AppCompat_Dialog_MinWidth 0x7f150113
1171
- int style Theme_AppCompat_Light 0x7f150114
1172
- int style Theme_AppCompat_Light_DarkActionBar 0x7f150115
1173
- int style Theme_AppCompat_Light_Dialog 0x7f150116
1174
- int style Theme_AppCompat_Light_DialogWhenLarge 0x7f150117
1175
- int style Theme_AppCompat_Light_Dialog_Alert 0x7f150118
1176
- int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f150119
1177
- int style Theme_AppCompat_Light_NoActionBar 0x7f15011a
1178
- int style Theme_AppCompat_NoActionBar 0x7f15011b
1179
- int style Theme_Catalyst 0x7f15011c
1180
- int style Theme_Catalyst_RedBox 0x7f15011d
1181
- int style Theme_FullScreenDialog 0x7f15011e
1182
- int style Theme_FullScreenDialogAnimatedFade 0x7f15011f
1183
- int style Theme_FullScreenDialogAnimatedSlide 0x7f150120
1184
- int style Theme_ReactNative_AppCompat_Light 0x7f150121
1185
- int style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen 0x7f150122
1186
- int style Widget_AppCompat_ActionBar 0x7f150123
1187
- int style Widget_AppCompat_ActionBar_Solid 0x7f150124
1188
- int style Widget_AppCompat_ActionBar_TabBar 0x7f150125
1189
- int style Widget_AppCompat_ActionBar_TabText 0x7f150126
1190
- int style Widget_AppCompat_ActionBar_TabView 0x7f150127
1191
- int style Widget_AppCompat_ActionButton 0x7f150128
1192
- int style Widget_AppCompat_ActionButton_CloseMode 0x7f150129
1193
- int style Widget_AppCompat_ActionButton_Overflow 0x7f15012a
1194
- int style Widget_AppCompat_ActionMode 0x7f15012b
1195
- int style Widget_AppCompat_ActivityChooserView 0x7f15012c
1196
- int style Widget_AppCompat_AutoCompleteTextView 0x7f15012d
1197
- int style Widget_AppCompat_Button 0x7f15012e
1198
- int style Widget_AppCompat_ButtonBar 0x7f15012f
1199
- int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150130
1200
- int style Widget_AppCompat_Button_Borderless 0x7f150131
1201
- int style Widget_AppCompat_Button_Borderless_Colored 0x7f150132
1202
- int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150133
1203
- int style Widget_AppCompat_Button_Colored 0x7f150134
1204
- int style Widget_AppCompat_Button_Small 0x7f150135
1205
- int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150136
1206
- int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150137
1207
- int style Widget_AppCompat_CompoundButton_Switch 0x7f150138
1208
- int style Widget_AppCompat_DrawerArrowToggle 0x7f150139
1209
- int style Widget_AppCompat_DropDownItem_Spinner 0x7f15013a
1210
- int style Widget_AppCompat_EditText 0x7f15013b
1211
- int style Widget_AppCompat_ImageButton 0x7f15013c
1212
- int style Widget_AppCompat_Light_ActionBar 0x7f15013d
1213
- int style Widget_AppCompat_Light_ActionBar_Solid 0x7f15013e
1214
- int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f15013f
1215
- int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f150140
1216
- int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f150141
1217
- int style Widget_AppCompat_Light_ActionBar_TabText 0x7f150142
1218
- int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150143
1219
- int style Widget_AppCompat_Light_ActionBar_TabView 0x7f150144
1220
- int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f150145
1221
- int style Widget_AppCompat_Light_ActionButton 0x7f150146
1222
- int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150147
1223
- int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150148
1224
- int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150149
1225
- int style Widget_AppCompat_Light_ActivityChooserView 0x7f15014a
1226
- int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f15014b
1227
- int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f15014c
1228
- int style Widget_AppCompat_Light_ListPopupWindow 0x7f15014d
1229
- int style Widget_AppCompat_Light_ListView_DropDown 0x7f15014e
1230
- int style Widget_AppCompat_Light_PopupMenu 0x7f15014f
1231
- int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150150
1232
- int style Widget_AppCompat_Light_SearchView 0x7f150151
1233
- int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f150152
1234
- int style Widget_AppCompat_ListMenuView 0x7f150153
1235
- int style Widget_AppCompat_ListPopupWindow 0x7f150154
1236
- int style Widget_AppCompat_ListView 0x7f150155
1237
- int style Widget_AppCompat_ListView_DropDown 0x7f150156
1238
- int style Widget_AppCompat_ListView_Menu 0x7f150157
1239
- int style Widget_AppCompat_PopupMenu 0x7f150158
1240
- int style Widget_AppCompat_PopupMenu_Overflow 0x7f150159
1241
- int style Widget_AppCompat_PopupWindow 0x7f15015a
1242
- int style Widget_AppCompat_ProgressBar 0x7f15015b
1243
- int style Widget_AppCompat_ProgressBar_Horizontal 0x7f15015c
1244
- int style Widget_AppCompat_RatingBar 0x7f15015d
1245
- int style Widget_AppCompat_RatingBar_Indicator 0x7f15015e
1246
- int style Widget_AppCompat_RatingBar_Small 0x7f15015f
1247
- int style Widget_AppCompat_SearchView 0x7f150160
1248
- int style Widget_AppCompat_SearchView_ActionBar 0x7f150161
1249
- int style Widget_AppCompat_SeekBar 0x7f150162
1250
- int style Widget_AppCompat_SeekBar_Discrete 0x7f150163
1251
- int style Widget_AppCompat_Spinner 0x7f150164
1252
- int style Widget_AppCompat_Spinner_DropDown 0x7f150165
1253
- int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150166
1254
- int style Widget_AppCompat_Spinner_Underlined 0x7f150167
1255
- int style Widget_AppCompat_TextView_SpinnerItem 0x7f150168
1256
- int style Widget_AppCompat_Toolbar 0x7f150169
1257
- int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f15016a
1258
- int style Widget_Compat_NotificationActionContainer 0x7f15016b
1259
- int style Widget_Compat_NotificationActionText 0x7f15016c
1260
- int style Widget_Support_CoordinatorLayout 0x7f15016d
1261
- int style redboxButton 0x7f15016e
1262
- 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 }
1263
- int styleable ActionBar_background 0
1264
- int styleable ActionBar_backgroundSplit 1
1265
- int styleable ActionBar_backgroundStacked 2
1266
- int styleable ActionBar_contentInsetEnd 3
1267
- int styleable ActionBar_contentInsetEndWithActions 4
1268
- int styleable ActionBar_contentInsetLeft 5
1269
- int styleable ActionBar_contentInsetRight 6
1270
- int styleable ActionBar_contentInsetStart 7
1271
- int styleable ActionBar_contentInsetStartWithNavigation 8
1272
- int styleable ActionBar_customNavigationLayout 9
1273
- int styleable ActionBar_displayOptions 10
1274
- int styleable ActionBar_divider 11
1275
- int styleable ActionBar_elevation 12
1276
- int styleable ActionBar_height 13
1277
- int styleable ActionBar_hideOnContentScroll 14
1278
- int styleable ActionBar_homeAsUpIndicator 15
1279
- int styleable ActionBar_homeLayout 16
1280
- int styleable ActionBar_icon 17
1281
- int styleable ActionBar_indeterminateProgressStyle 18
1282
- int styleable ActionBar_itemPadding 19
1283
- int styleable ActionBar_logo 20
1284
- int styleable ActionBar_navigationMode 21
1285
- int styleable ActionBar_popupTheme 22
1286
- int styleable ActionBar_progressBarPadding 23
1287
- int styleable ActionBar_progressBarStyle 24
1288
- int styleable ActionBar_subtitle 25
1289
- int styleable ActionBar_subtitleTextStyle 26
1290
- int styleable ActionBar_title 27
1291
- int styleable ActionBar_titleTextStyle 28
1292
- int[] styleable ActionBarLayout { 0x10100b3 }
1293
- int styleable ActionBarLayout_android_layout_gravity 0
1294
- int[] styleable ActionMenuItemView { 0x101013f }
1295
- int styleable ActionMenuItemView_android_minWidth 0
1296
- int[] styleable ActionMenuView { }
1297
- int[] styleable ActionMode { 0x7f040035, 0x7f040037, 0x7f04004c, 0x7f040088, 0x7f0400f5, 0x7f040119 }
1298
- int styleable ActionMode_background 0
1299
- int styleable ActionMode_backgroundSplit 1
1300
- int styleable ActionMode_closeItemLayout 2
1301
- int styleable ActionMode_height 3
1302
- int styleable ActionMode_subtitleTextStyle 4
1303
- int styleable ActionMode_titleTextStyle 5
1304
- int[] styleable ActivityChooserView { 0x7f040076, 0x7f040092 }
1305
- int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
1306
- int styleable ActivityChooserView_initialActivityCount 1
1307
- int[] styleable AlertDialog { 0x10100f2, 0x7f040043, 0x7f040044, 0x7f0400a1, 0x7f0400a2, 0x7f0400ae, 0x7f0400e7, 0x7f0400e8 }
1308
- int styleable AlertDialog_android_layout 0
1309
- int styleable AlertDialog_buttonIconDimen 1
1310
- int styleable AlertDialog_buttonPanelSideLayout 2
1311
- int styleable AlertDialog_listItemLayout 3
1312
- int styleable AlertDialog_listLayout 4
1313
- int styleable AlertDialog_multiChoiceItemLayout 5
1314
- int styleable AlertDialog_showTitle 6
1315
- int styleable AlertDialog_singleChoiceItemLayout 7
1316
- int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
1317
- int styleable AnimatedStateListDrawableCompat_android_constantSize 0
1318
- int styleable AnimatedStateListDrawableCompat_android_dither 1
1319
- int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
1320
- int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
1321
- int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
1322
- int styleable AnimatedStateListDrawableCompat_android_visible 5
1323
- int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
1324
- int styleable AnimatedStateListDrawableItem_android_drawable 0
1325
- int styleable AnimatedStateListDrawableItem_android_id 1
1326
- int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
1327
- int styleable AnimatedStateListDrawableTransition_android_drawable 0
1328
- int styleable AnimatedStateListDrawableTransition_android_fromId 1
1329
- int styleable AnimatedStateListDrawableTransition_android_reversible 2
1330
- int styleable AnimatedStateListDrawableTransition_android_toId 3
1331
- int[] styleable AppCompatImageView { 0x1010119, 0x7f0400ed, 0x7f04010e, 0x7f04010f }
1332
- int styleable AppCompatImageView_android_src 0
1333
- int styleable AppCompatImageView_srcCompat 1
1334
- int styleable AppCompatImageView_tint 2
1335
- int styleable AppCompatImageView_tintMode 3
1336
- int[] styleable AppCompatSeekBar { 0x1010142, 0x7f04010b, 0x7f04010c, 0x7f04010d }
1337
- int styleable AppCompatSeekBar_android_thumb 0
1338
- int styleable AppCompatSeekBar_tickMark 1
1339
- int styleable AppCompatSeekBar_tickMarkTint 2
1340
- int styleable AppCompatSeekBar_tickMarkTintMode 3
1341
- int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
1342
- int styleable AppCompatTextHelper_android_drawableBottom 0
1343
- int styleable AppCompatTextHelper_android_drawableEnd 1
1344
- int styleable AppCompatTextHelper_android_drawableLeft 2
1345
- int styleable AppCompatTextHelper_android_drawableRight 3
1346
- int styleable AppCompatTextHelper_android_drawableStart 4
1347
- int styleable AppCompatTextHelper_android_drawableTop 5
1348
- int styleable AppCompatTextHelper_android_textAppearance 6
1349
- int[] styleable AppCompatTextView { 0x1010034, 0x7f040030, 0x7f040031, 0x7f040032, 0x7f040033, 0x7f040034, 0x7f04007a, 0x7f04007c, 0x7f040096, 0x7f04009e, 0x7f0400fb }
1350
- int styleable AppCompatTextView_android_textAppearance 0
1351
- int styleable AppCompatTextView_autoSizeMaxTextSize 1
1352
- int styleable AppCompatTextView_autoSizeMinTextSize 2
1353
- int styleable AppCompatTextView_autoSizePresetSizes 3
1354
- int styleable AppCompatTextView_autoSizeStepGranularity 4
1355
- int styleable AppCompatTextView_autoSizeTextType 5
1356
- int styleable AppCompatTextView_firstBaselineToTopHeight 6
1357
- int styleable AppCompatTextView_fontFamily 7
1358
- int styleable AppCompatTextView_lastBaselineToBottomHeight 8
1359
- int styleable AppCompatTextView_lineHeight 9
1360
- int styleable AppCompatTextView_textAllCaps 10
1361
- 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 }
1362
- int styleable AppCompatTheme_actionBarDivider 0
1363
- int styleable AppCompatTheme_actionBarItemBackground 1
1364
- int styleable AppCompatTheme_actionBarPopupTheme 2
1365
- int styleable AppCompatTheme_actionBarSize 3
1366
- int styleable AppCompatTheme_actionBarSplitStyle 4
1367
- int styleable AppCompatTheme_actionBarStyle 5
1368
- int styleable AppCompatTheme_actionBarTabBarStyle 6
1369
- int styleable AppCompatTheme_actionBarTabStyle 7
1370
- int styleable AppCompatTheme_actionBarTabTextStyle 8
1371
- int styleable AppCompatTheme_actionBarTheme 9
1372
- int styleable AppCompatTheme_actionBarWidgetTheme 10
1373
- int styleable AppCompatTheme_actionButtonStyle 11
1374
- int styleable AppCompatTheme_actionDropDownStyle 12
1375
- int styleable AppCompatTheme_actionMenuTextAppearance 13
1376
- int styleable AppCompatTheme_actionMenuTextColor 14
1377
- int styleable AppCompatTheme_actionModeBackground 15
1378
- int styleable AppCompatTheme_actionModeCloseButtonStyle 16
1379
- int styleable AppCompatTheme_actionModeCloseDrawable 17
1380
- int styleable AppCompatTheme_actionModeCopyDrawable 18
1381
- int styleable AppCompatTheme_actionModeCutDrawable 19
1382
- int styleable AppCompatTheme_actionModeFindDrawable 20
1383
- int styleable AppCompatTheme_actionModePasteDrawable 21
1384
- int styleable AppCompatTheme_actionModePopupWindowStyle 22
1385
- int styleable AppCompatTheme_actionModeSelectAllDrawable 23
1386
- int styleable AppCompatTheme_actionModeShareDrawable 24
1387
- int styleable AppCompatTheme_actionModeSplitBackground 25
1388
- int styleable AppCompatTheme_actionModeStyle 26
1389
- int styleable AppCompatTheme_actionModeWebSearchDrawable 27
1390
- int styleable AppCompatTheme_actionOverflowButtonStyle 28
1391
- int styleable AppCompatTheme_actionOverflowMenuStyle 29
1392
- int styleable AppCompatTheme_activityChooserViewStyle 30
1393
- int styleable AppCompatTheme_alertDialogButtonGroupStyle 31
1394
- int styleable AppCompatTheme_alertDialogCenterButtons 32
1395
- int styleable AppCompatTheme_alertDialogStyle 33
1396
- int styleable AppCompatTheme_alertDialogTheme 34
1397
- int styleable AppCompatTheme_android_windowAnimationStyle 35
1398
- int styleable AppCompatTheme_android_windowIsFloating 36
1399
- int styleable AppCompatTheme_autoCompleteTextViewStyle 37
1400
- int styleable AppCompatTheme_borderlessButtonStyle 38
1401
- int styleable AppCompatTheme_buttonBarButtonStyle 39
1402
- int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
1403
- int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
1404
- int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
1405
- int styleable AppCompatTheme_buttonBarStyle 43
1406
- int styleable AppCompatTheme_buttonStyle 44
1407
- int styleable AppCompatTheme_buttonStyleSmall 45
1408
- int styleable AppCompatTheme_checkboxStyle 46
1409
- int styleable AppCompatTheme_checkedTextViewStyle 47
1410
- int styleable AppCompatTheme_colorAccent 48
1411
- int styleable AppCompatTheme_colorBackgroundFloating 49
1412
- int styleable AppCompatTheme_colorButtonNormal 50
1413
- int styleable AppCompatTheme_colorControlActivated 51
1414
- int styleable AppCompatTheme_colorControlHighlight 52
1415
- int styleable AppCompatTheme_colorControlNormal 53
1416
- int styleable AppCompatTheme_colorError 54
1417
- int styleable AppCompatTheme_colorPrimary 55
1418
- int styleable AppCompatTheme_colorPrimaryDark 56
1419
- int styleable AppCompatTheme_colorSwitchThumbNormal 57
1420
- int styleable AppCompatTheme_controlBackground 58
1421
- int styleable AppCompatTheme_dialogCornerRadius 59
1422
- int styleable AppCompatTheme_dialogPreferredPadding 60
1423
- int styleable AppCompatTheme_dialogTheme 61
1424
- int styleable AppCompatTheme_dividerHorizontal 62
1425
- int styleable AppCompatTheme_dividerVertical 63
1426
- int styleable AppCompatTheme_dropDownListViewStyle 64
1427
- int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
1428
- int styleable AppCompatTheme_editTextBackground 66
1429
- int styleable AppCompatTheme_editTextColor 67
1430
- int styleable AppCompatTheme_editTextStyle 68
1431
- int styleable AppCompatTheme_homeAsUpIndicator 69
1432
- int styleable AppCompatTheme_imageButtonStyle 70
1433
- int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
1434
- int styleable AppCompatTheme_listDividerAlertDialog 72
1435
- int styleable AppCompatTheme_listMenuViewStyle 73
1436
- int styleable AppCompatTheme_listPopupWindowStyle 74
1437
- int styleable AppCompatTheme_listPreferredItemHeight 75
1438
- int styleable AppCompatTheme_listPreferredItemHeightLarge 76
1439
- int styleable AppCompatTheme_listPreferredItemHeightSmall 77
1440
- int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
1441
- int styleable AppCompatTheme_listPreferredItemPaddingRight 79
1442
- int styleable AppCompatTheme_panelBackground 80
1443
- int styleable AppCompatTheme_panelMenuListTheme 81
1444
- int styleable AppCompatTheme_panelMenuListWidth 82
1445
- int styleable AppCompatTheme_popupMenuStyle 83
1446
- int styleable AppCompatTheme_popupWindowStyle 84
1447
- int styleable AppCompatTheme_radioButtonStyle 85
1448
- int styleable AppCompatTheme_ratingBarStyle 86
1449
- int styleable AppCompatTheme_ratingBarStyleIndicator 87
1450
- int styleable AppCompatTheme_ratingBarStyleSmall 88
1451
- int styleable AppCompatTheme_searchViewStyle 89
1452
- int styleable AppCompatTheme_seekBarStyle 90
1453
- int styleable AppCompatTheme_selectableItemBackground 91
1454
- int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
1455
- int styleable AppCompatTheme_spinnerDropDownItemStyle 93
1456
- int styleable AppCompatTheme_spinnerStyle 94
1457
- int styleable AppCompatTheme_switchStyle 95
1458
- int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
1459
- int styleable AppCompatTheme_textAppearanceListItem 97
1460
- int styleable AppCompatTheme_textAppearanceListItemSecondary 98
1461
- int styleable AppCompatTheme_textAppearanceListItemSmall 99
1462
- int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
1463
- int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
1464
- int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
1465
- int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
1466
- int styleable AppCompatTheme_textColorAlertDialogListItem 104
1467
- int styleable AppCompatTheme_textColorSearchUrl 105
1468
- int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
1469
- int styleable AppCompatTheme_toolbarStyle 107
1470
- int styleable AppCompatTheme_tooltipForegroundColor 108
1471
- int styleable AppCompatTheme_tooltipFrameBackground 109
1472
- int styleable AppCompatTheme_viewInflaterClass 110
1473
- int styleable AppCompatTheme_windowActionBar 111
1474
- int styleable AppCompatTheme_windowActionBarOverlay 112
1475
- int styleable AppCompatTheme_windowActionModeOverlay 113
1476
- int styleable AppCompatTheme_windowFixedHeightMajor 114
1477
- int styleable AppCompatTheme_windowFixedHeightMinor 115
1478
- int styleable AppCompatTheme_windowFixedWidthMajor 116
1479
- int styleable AppCompatTheme_windowFixedWidthMinor 117
1480
- int styleable AppCompatTheme_windowMinWidthMajor 118
1481
- int styleable AppCompatTheme_windowMinWidthMinor 119
1482
- int styleable AppCompatTheme_windowNoTitle 120
1483
- int[] styleable ButtonBarLayout { 0x7f04002a }
1484
- int styleable ButtonBarLayout_allowStacking 0
1485
- int[] styleable ColorStateListItem { 0x7f04002b, 0x101031f, 0x10101a5 }
1486
- int styleable ColorStateListItem_alpha 0
1487
- int styleable ColorStateListItem_android_alpha 1
1488
- int styleable ColorStateListItem_android_color 2
1489
- int[] styleable CompoundButton { 0x1010107, 0x7f040047, 0x7f040048 }
1490
- int styleable CompoundButton_android_button 0
1491
- int styleable CompoundButton_buttonTint 1
1492
- int styleable CompoundButton_buttonTintMode 2
1493
- int[] styleable CoordinatorLayout { 0x7f040095, 0x7f0400ef }
1494
- int styleable CoordinatorLayout_keylines 0
1495
- int styleable CoordinatorLayout_statusBarBackground 1
1496
- int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f04009c, 0x7f04009d }
1497
- int styleable CoordinatorLayout_Layout_android_layout_gravity 0
1498
- int styleable CoordinatorLayout_Layout_layout_anchor 1
1499
- int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
1500
- int styleable CoordinatorLayout_Layout_layout_behavior 3
1501
- int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
1502
- int styleable CoordinatorLayout_Layout_layout_insetEdge 5
1503
- int styleable CoordinatorLayout_Layout_layout_keyline 6
1504
- int[] styleable DrawerArrowToggle { 0x7f04002d, 0x7f04002e, 0x7f04003b, 0x7f04004f, 0x7f04006e, 0x7f040086, 0x7f0400e9, 0x7f040107 }
1505
- int styleable DrawerArrowToggle_arrowHeadLength 0
1506
- int styleable DrawerArrowToggle_arrowShaftLength 1
1507
- int styleable DrawerArrowToggle_barLength 2
1508
- int styleable DrawerArrowToggle_color 3
1509
- int styleable DrawerArrowToggle_drawableSize 4
1510
- int styleable DrawerArrowToggle_gapBetweenBars 5
1511
- int styleable DrawerArrowToggle_spinBars 6
1512
- int styleable DrawerArrowToggle_thickness 7
1513
- int[] styleable FontFamily { 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040082 }
1514
- int styleable FontFamily_fontProviderAuthority 0
1515
- int styleable FontFamily_fontProviderCerts 1
1516
- int styleable FontFamily_fontProviderFetchStrategy 2
1517
- int styleable FontFamily_fontProviderFetchTimeout 3
1518
- int styleable FontFamily_fontProviderPackage 4
1519
- int styleable FontFamily_fontProviderQuery 5
1520
- int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f04007b, 0x7f040083, 0x7f040084, 0x7f040085, 0x7f040122 }
1521
- int styleable FontFamilyFont_android_font 0
1522
- int styleable FontFamilyFont_android_fontStyle 1
1523
- int styleable FontFamilyFont_android_fontVariationSettings 2
1524
- int styleable FontFamilyFont_android_fontWeight 3
1525
- int styleable FontFamilyFont_android_ttcIndex 4
1526
- int styleable FontFamilyFont_font 5
1527
- int styleable FontFamilyFont_fontStyle 6
1528
- int styleable FontFamilyFont_fontVariationSettings 7
1529
- int styleable FontFamilyFont_fontWeight 8
1530
- int styleable FontFamilyFont_ttcIndex 9
1531
- 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 }
1532
- int styleable GenericDraweeHierarchy_actualImageScaleType 0
1533
- int styleable GenericDraweeHierarchy_backgroundImage 1
1534
- int styleable GenericDraweeHierarchy_fadeDuration 2
1535
- int styleable GenericDraweeHierarchy_failureImage 3
1536
- int styleable GenericDraweeHierarchy_failureImageScaleType 4
1537
- int styleable GenericDraweeHierarchy_overlayImage 5
1538
- int styleable GenericDraweeHierarchy_placeholderImage 6
1539
- int styleable GenericDraweeHierarchy_placeholderImageScaleType 7
1540
- int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8
1541
- int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9
1542
- int styleable GenericDraweeHierarchy_progressBarImage 10
1543
- int styleable GenericDraweeHierarchy_progressBarImageScaleType 11
1544
- int styleable GenericDraweeHierarchy_retryImage 12
1545
- int styleable GenericDraweeHierarchy_retryImageScaleType 13
1546
- int styleable GenericDraweeHierarchy_roundAsCircle 14
1547
- int styleable GenericDraweeHierarchy_roundBottomEnd 15
1548
- int styleable GenericDraweeHierarchy_roundBottomLeft 16
1549
- int styleable GenericDraweeHierarchy_roundBottomRight 17
1550
- int styleable GenericDraweeHierarchy_roundBottomStart 18
1551
- int styleable GenericDraweeHierarchy_roundTopEnd 19
1552
- int styleable GenericDraweeHierarchy_roundTopLeft 20
1553
- int styleable GenericDraweeHierarchy_roundTopRight 21
1554
- int styleable GenericDraweeHierarchy_roundTopStart 22
1555
- int styleable GenericDraweeHierarchy_roundWithOverlayColor 23
1556
- int styleable GenericDraweeHierarchy_roundedCornerRadius 24
1557
- int styleable GenericDraweeHierarchy_roundingBorderColor 25
1558
- int styleable GenericDraweeHierarchy_roundingBorderPadding 26
1559
- int styleable GenericDraweeHierarchy_roundingBorderWidth 27
1560
- int styleable GenericDraweeHierarchy_viewAspectRatio 28
1561
- int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
1562
- int styleable GradientColor_android_centerColor 0
1563
- int styleable GradientColor_android_centerX 1
1564
- int styleable GradientColor_android_centerY 2
1565
- int styleable GradientColor_android_endColor 3
1566
- int styleable GradientColor_android_endX 4
1567
- int styleable GradientColor_android_endY 5
1568
- int styleable GradientColor_android_gradientRadius 6
1569
- int styleable GradientColor_android_startColor 7
1570
- int styleable GradientColor_android_startX 8
1571
- int styleable GradientColor_android_startY 9
1572
- int styleable GradientColor_android_tileMode 10
1573
- int styleable GradientColor_android_type 11
1574
- int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
1575
- int styleable GradientColorItem_android_color 0
1576
- int styleable GradientColorItem_android_offset 1
1577
- int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f04006a, 0x7f04006c, 0x7f0400ad, 0x7f0400e5 }
1578
- int styleable LinearLayoutCompat_android_baselineAligned 0
1579
- int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
1580
- int styleable LinearLayoutCompat_android_gravity 2
1581
- int styleable LinearLayoutCompat_android_orientation 3
1582
- int styleable LinearLayoutCompat_android_weightSum 4
1583
- int styleable LinearLayoutCompat_divider 5
1584
- int styleable LinearLayoutCompat_dividerPadding 6
1585
- int styleable LinearLayoutCompat_measureWithLargestChild 7
1586
- int styleable LinearLayoutCompat_showDividers 8
1587
- int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
1588
- int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
1589
- int styleable LinearLayoutCompat_Layout_android_layout_height 1
1590
- int styleable LinearLayoutCompat_Layout_android_layout_weight 2
1591
- int styleable LinearLayoutCompat_Layout_android_layout_width 3
1592
- int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
1593
- int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
1594
- int styleable ListPopupWindow_android_dropDownVerticalOffset 1
1595
- int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
1596
- int styleable MenuGroup_android_checkableBehavior 0
1597
- int styleable MenuGroup_android_enabled 1
1598
- int styleable MenuGroup_android_id 2
1599
- int styleable MenuGroup_android_menuCategory 3
1600
- int styleable MenuGroup_android_orderInCategory 4
1601
- int styleable MenuGroup_android_visible 5
1602
- 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 }
1603
- int styleable MenuItem_actionLayout 0
1604
- int styleable MenuItem_actionProviderClass 1
1605
- int styleable MenuItem_actionViewClass 2
1606
- int styleable MenuItem_alphabeticModifiers 3
1607
- int styleable MenuItem_android_alphabeticShortcut 4
1608
- int styleable MenuItem_android_checkable 5
1609
- int styleable MenuItem_android_checked 6
1610
- int styleable MenuItem_android_enabled 7
1611
- int styleable MenuItem_android_icon 8
1612
- int styleable MenuItem_android_id 9
1613
- int styleable MenuItem_android_menuCategory 10
1614
- int styleable MenuItem_android_numericShortcut 11
1615
- int styleable MenuItem_android_onClick 12
1616
- int styleable MenuItem_android_orderInCategory 13
1617
- int styleable MenuItem_android_title 14
1618
- int styleable MenuItem_android_titleCondensed 15
1619
- int styleable MenuItem_android_visible 16
1620
- int styleable MenuItem_contentDescription 17
1621
- int styleable MenuItem_iconTint 18
1622
- int styleable MenuItem_iconTintMode 19
1623
- int styleable MenuItem_numericModifiers 20
1624
- int styleable MenuItem_showAsAction 21
1625
- int styleable MenuItem_tooltipText 22
1626
- int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f0400c1, 0x7f0400f0 }
1627
- int styleable MenuView_android_headerBackground 0
1628
- int styleable MenuView_android_horizontalDivider 1
1629
- int styleable MenuView_android_itemBackground 2
1630
- int styleable MenuView_android_itemIconDisabledAlpha 3
1631
- int styleable MenuView_android_itemTextAppearance 4
1632
- int styleable MenuView_android_verticalDivider 5
1633
- int styleable MenuView_android_windowAnimationStyle 6
1634
- int styleable MenuView_preserveIconSpacing 7
1635
- int styleable MenuView_subMenuArrow 8
1636
- int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f0400b3 }
1637
- int styleable PopupWindow_android_popupAnimationStyle 0
1638
- int styleable PopupWindow_android_popupBackground 1
1639
- int styleable PopupWindow_overlapAnchor 2
1640
- int[] styleable PopupWindowBackgroundState { 0x7f0400ee }
1641
- int styleable PopupWindowBackgroundState_state_above_anchor 0
1642
- int[] styleable RecycleListView { 0x7f0400b5, 0x7f0400b8 }
1643
- int styleable RecycleListView_paddingBottomNoButtons 0
1644
- int styleable RecycleListView_paddingTopNoTitle 1
1645
- int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f04004b, 0x7f04005a, 0x7f040065, 0x7f040087, 0x7f04008f, 0x7f040097, 0x7f0400c8, 0x7f0400c9, 0x7f0400de, 0x7f0400df, 0x7f0400f1, 0x7f0400f6, 0x7f040125 }
1646
- int styleable SearchView_android_focusable 0
1647
- int styleable SearchView_android_imeOptions 1
1648
- int styleable SearchView_android_inputType 2
1649
- int styleable SearchView_android_maxWidth 3
1650
- int styleable SearchView_closeIcon 4
1651
- int styleable SearchView_commitIcon 5
1652
- int styleable SearchView_defaultQueryHint 6
1653
- int styleable SearchView_goIcon 7
1654
- int styleable SearchView_iconifiedByDefault 8
1655
- int styleable SearchView_layout 9
1656
- int styleable SearchView_queryBackground 10
1657
- int styleable SearchView_queryHint 11
1658
- int styleable SearchView_searchHintIcon 12
1659
- int styleable SearchView_searchIcon 13
1660
- int styleable SearchView_submitBackground 14
1661
- int styleable SearchView_suggestionRowLayout 15
1662
- int styleable SearchView_voiceIcon 16
1663
- 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 }
1664
- int styleable SimpleDraweeView_actualImageResource 0
1665
- int styleable SimpleDraweeView_actualImageScaleType 1
1666
- int styleable SimpleDraweeView_actualImageUri 2
1667
- int styleable SimpleDraweeView_backgroundImage 3
1668
- int styleable SimpleDraweeView_fadeDuration 4
1669
- int styleable SimpleDraweeView_failureImage 5
1670
- int styleable SimpleDraweeView_failureImageScaleType 6
1671
- int styleable SimpleDraweeView_overlayImage 7
1672
- int styleable SimpleDraweeView_placeholderImage 8
1673
- int styleable SimpleDraweeView_placeholderImageScaleType 9
1674
- int styleable SimpleDraweeView_pressedStateOverlayImage 10
1675
- int styleable SimpleDraweeView_progressBarAutoRotateInterval 11
1676
- int styleable SimpleDraweeView_progressBarImage 12
1677
- int styleable SimpleDraweeView_progressBarImageScaleType 13
1678
- int styleable SimpleDraweeView_retryImage 14
1679
- int styleable SimpleDraweeView_retryImageScaleType 15
1680
- int styleable SimpleDraweeView_roundAsCircle 16
1681
- int styleable SimpleDraweeView_roundBottomEnd 17
1682
- int styleable SimpleDraweeView_roundBottomLeft 18
1683
- int styleable SimpleDraweeView_roundBottomRight 19
1684
- int styleable SimpleDraweeView_roundBottomStart 20
1685
- int styleable SimpleDraweeView_roundTopEnd 21
1686
- int styleable SimpleDraweeView_roundTopLeft 22
1687
- int styleable SimpleDraweeView_roundTopRight 23
1688
- int styleable SimpleDraweeView_roundTopStart 24
1689
- int styleable SimpleDraweeView_roundWithOverlayColor 25
1690
- int styleable SimpleDraweeView_roundedCornerRadius 26
1691
- int styleable SimpleDraweeView_roundingBorderColor 27
1692
- int styleable SimpleDraweeView_roundingBorderPadding 28
1693
- int styleable SimpleDraweeView_roundingBorderWidth 29
1694
- int styleable SimpleDraweeView_viewAspectRatio 30
1695
- int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f0400bf }
1696
- int styleable Spinner_android_dropDownWidth 0
1697
- int styleable Spinner_android_entries 1
1698
- int styleable Spinner_android_popupBackground 2
1699
- int styleable Spinner_android_prompt 3
1700
- int styleable Spinner_popupTheme 4
1701
- int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
1702
- int styleable StateListDrawable_android_constantSize 0
1703
- int styleable StateListDrawable_android_dither 1
1704
- int styleable StateListDrawable_android_enterFadeDuration 2
1705
- int styleable StateListDrawable_android_exitFadeDuration 3
1706
- int styleable StateListDrawable_android_variablePadding 4
1707
- int styleable StateListDrawable_android_visible 5
1708
- int[] styleable StateListDrawableItem { 0x1010199 }
1709
- int styleable StateListDrawableItem_android_drawable 0
1710
- int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f0400e6, 0x7f0400ec, 0x7f0400f7, 0x7f0400f8, 0x7f0400fa, 0x7f040108, 0x7f040109, 0x7f04010a, 0x7f04011f, 0x7f040120, 0x7f040121 }
1711
- int styleable SwitchCompat_android_textOff 0
1712
- int styleable SwitchCompat_android_textOn 1
1713
- int styleable SwitchCompat_android_thumb 2
1714
- int styleable SwitchCompat_showText 3
1715
- int styleable SwitchCompat_splitTrack 4
1716
- int styleable SwitchCompat_switchMinWidth 5
1717
- int styleable SwitchCompat_switchPadding 6
1718
- int styleable SwitchCompat_switchTextAppearance 7
1719
- int styleable SwitchCompat_thumbTextPadding 8
1720
- int styleable SwitchCompat_thumbTint 9
1721
- int styleable SwitchCompat_thumbTintMode 10
1722
- int styleable SwitchCompat_track 11
1723
- int styleable SwitchCompat_trackTint 12
1724
- int styleable SwitchCompat_trackTintMode 13
1725
- int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010095, 0x1010097, 0x1010096, 0x7f04007c, 0x7f0400fb }
1726
- int styleable TextAppearance_android_fontFamily 0
1727
- int styleable TextAppearance_android_shadowColor 1
1728
- int styleable TextAppearance_android_shadowDx 2
1729
- int styleable TextAppearance_android_shadowDy 3
1730
- int styleable TextAppearance_android_shadowRadius 4
1731
- int styleable TextAppearance_android_textColor 5
1732
- int styleable TextAppearance_android_textColorHint 6
1733
- int styleable TextAppearance_android_textColorLink 7
1734
- int styleable TextAppearance_android_textSize 8
1735
- int styleable TextAppearance_android_textStyle 9
1736
- int styleable TextAppearance_android_typeface 10
1737
- int styleable TextAppearance_fontFamily 11
1738
- int styleable TextAppearance_textAllCaps 12
1739
- 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 }
1740
- int styleable Toolbar_android_gravity 0
1741
- int styleable Toolbar_android_minHeight 1
1742
- int styleable Toolbar_buttonGravity 2
1743
- int styleable Toolbar_collapseContentDescription 3
1744
- int styleable Toolbar_collapseIcon 4
1745
- int styleable Toolbar_contentInsetEnd 5
1746
- int styleable Toolbar_contentInsetEndWithActions 6
1747
- int styleable Toolbar_contentInsetLeft 7
1748
- int styleable Toolbar_contentInsetRight 8
1749
- int styleable Toolbar_contentInsetStart 9
1750
- int styleable Toolbar_contentInsetStartWithNavigation 10
1751
- int styleable Toolbar_logo 11
1752
- int styleable Toolbar_logoDescription 12
1753
- int styleable Toolbar_maxButtonHeight 13
1754
- int styleable Toolbar_navigationContentDescription 14
1755
- int styleable Toolbar_navigationIcon 15
1756
- int styleable Toolbar_popupTheme 16
1757
- int styleable Toolbar_subtitle 17
1758
- int styleable Toolbar_subtitleTextAppearance 18
1759
- int styleable Toolbar_subtitleTextColor 19
1760
- int styleable Toolbar_title 20
1761
- int styleable Toolbar_titleMargin 21
1762
- int styleable Toolbar_titleMarginBottom 22
1763
- int styleable Toolbar_titleMarginEnd 23
1764
- int styleable Toolbar_titleMarginStart 24
1765
- int styleable Toolbar_titleMarginTop 25
1766
- int styleable Toolbar_titleMargins 26
1767
- int styleable Toolbar_titleTextAppearance 27
1768
- int styleable Toolbar_titleTextColor 28
1769
- int[] styleable View { 0x10100da, 0x1010000, 0x7f0400b6, 0x7f0400b7, 0x7f040106 }
1770
- int styleable View_android_focusable 0
1771
- int styleable View_android_theme 1
1772
- int styleable View_paddingEnd 2
1773
- int styleable View_paddingStart 3
1774
- int styleable View_theme 4
1775
- int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040039, 0x7f04003a }
1776
- int styleable ViewBackgroundHelper_android_background 0
1777
- int styleable ViewBackgroundHelper_backgroundTint 1
1778
- int styleable ViewBackgroundHelper_backgroundTintMode 2
1779
- int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
1780
- int styleable ViewStubCompat_android_id 0
1781
- int styleable ViewStubCompat_android_inflatedId 1
1782
- int styleable ViewStubCompat_android_layout 2
1783
- int xml rn_dev_preferences 0x7f180001