motion-flow 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1099) hide show
  1. checksums.yaml +7 -0
  2. data/flow/base64/android/base64.rb +12 -0
  3. data/flow/base64/base64.rb +27 -0
  4. data/flow/base64/cocoa/base64.rb +11 -0
  5. data/flow/digest/android/digest.rb +33 -0
  6. data/flow/digest/cocoa/digest.rb +40 -0
  7. data/flow/digest/cocoa/libdigest.a +0 -0
  8. data/flow/digest/digest.rb +51 -0
  9. data/flow/json/android/json.rb +66 -0
  10. data/flow/json/cocoa/json.rb +22 -0
  11. data/flow/json/json.rb +14 -0
  12. data/flow/location/android/location_services.rb +105 -0
  13. data/flow/location/cocoa/location_services.rb +88 -0
  14. data/flow/location/location.rb +71 -0
  15. data/flow/net/actions.rb +14 -0
  16. data/flow/net/android/reachability.rb +50 -0
  17. data/flow/net/android/request.rb +87 -0
  18. data/flow/net/android/response_proxy.rb +58 -0
  19. data/flow/net/authorization.rb +42 -0
  20. data/flow/net/cocoa/reachability.rb +47 -0
  21. data/flow/net/cocoa/request.rb +105 -0
  22. data/flow/net/cocoa/response_proxy.rb +53 -0
  23. data/flow/net/config.rb +31 -0
  24. data/flow/net/expectation.rb +61 -0
  25. data/flow/net/header.rb +17 -0
  26. data/flow/net/net.rb +121 -0
  27. data/flow/net/response.rb +58 -0
  28. data/flow/net/session.rb +53 -0
  29. data/flow/net/stubbable.rb +13 -0
  30. data/flow/store/android/store.rb +33 -0
  31. data/flow/store/cocoa/store.rb +21 -0
  32. data/flow/store/store.rb +24 -0
  33. data/flow/task/android/task.rb +57 -0
  34. data/flow/task/cocoa/task.rb +48 -0
  35. data/flow/task/task.rb +73 -0
  36. data/flow/ui/activity_indicator.rb +17 -0
  37. data/flow/ui/alert.rb +26 -0
  38. data/flow/ui/android/activity_indicator.rb +32 -0
  39. data/flow/ui/android/alert.rb +54 -0
  40. data/flow/ui/android/application.rb +32 -0
  41. data/flow/ui/android/armeabi/libcss_node.a +0 -0
  42. data/flow/ui/android/button.rb +78 -0
  43. data/flow/ui/android/camera.rb +131 -0
  44. data/flow/ui/android/color.rb +31 -0
  45. data/flow/ui/android/control.rb +15 -0
  46. data/flow/ui/android/font.rb +70 -0
  47. data/flow/ui/android/image.rb +59 -0
  48. data/flow/ui/android/label.rb +29 -0
  49. data/flow/ui/android/list.rb +90 -0
  50. data/flow/ui/android/navigation.rb +94 -0
  51. data/flow/ui/android/screen.rb +123 -0
  52. data/flow/ui/android/text.rb +55 -0
  53. data/flow/ui/android/text_input.rb +42 -0
  54. data/flow/ui/android/ui.rb +13 -0
  55. data/flow/ui/android/view.rb +88 -0
  56. data/flow/ui/android/web.rb +15 -0
  57. data/flow/ui/android/x86/libcss_node.a +0 -0
  58. data/flow/ui/application.rb +10 -0
  59. data/flow/ui/button.rb +9 -0
  60. data/flow/ui/cocoa/activity_indicator.rb +27 -0
  61. data/flow/ui/cocoa/alert.rb +33 -0
  62. data/flow/ui/cocoa/application.rb +26 -0
  63. data/flow/ui/cocoa/button.rb +60 -0
  64. data/flow/ui/cocoa/camera.rb +104 -0
  65. data/flow/ui/cocoa/color.rb +42 -0
  66. data/flow/ui/cocoa/control.rb +30 -0
  67. data/flow/ui/cocoa/font.rb +49 -0
  68. data/flow/ui/cocoa/image.rb +49 -0
  69. data/flow/ui/cocoa/label.rb +58 -0
  70. data/flow/ui/cocoa/libcss_node.a +0 -0
  71. data/flow/ui/cocoa/list.rb +100 -0
  72. data/flow/ui/cocoa/navigation.rb +96 -0
  73. data/flow/ui/cocoa/screen.rb +81 -0
  74. data/flow/ui/cocoa/text_input.rb +93 -0
  75. data/flow/ui/cocoa/ui.rb +8 -0
  76. data/flow/ui/cocoa/view.rb +108 -0
  77. data/flow/ui/cocoa/web.rb +20 -0
  78. data/flow/ui/color.rb +222 -0
  79. data/flow/ui/css_node.rb +63 -0
  80. data/flow/ui/eventable.rb +29 -0
  81. data/flow/ui/font.rb +44 -0
  82. data/flow/ui/image.rb +9 -0
  83. data/flow/ui/label.rb +8 -0
  84. data/flow/ui/list_row.rb +19 -0
  85. data/flow/ui/navigation.rb +39 -0
  86. data/flow/ui/screen.rb +18 -0
  87. data/flow/ui/text_input.rb +15 -0
  88. data/flow/ui/ui.rb +5 -0
  89. data/flow/ui/view.rb +22 -0
  90. data/lib/android.rb +44 -0
  91. data/lib/cocoa.rb +32 -0
  92. data/lib/common.rb +1 -0
  93. data/lib/motion-flow.rb +243 -0
  94. data/template/flow/files/Gemfile +5 -0
  95. data/template/flow/files/Rakefile +13 -0
  96. data/template/flow/files/app/android/main_activity.rb +6 -0
  97. data/template/flow/files/app/ios/app_delegate.rb +15 -0
  98. data/template/flow/files/config/android.rb.erb +6 -0
  99. data/template/flow/files/config/ios.rb.erb +6 -0
  100. data/template/flow/files/config/osx.rb.erb +6 -0
  101. data/template/flow/files/resources/Default-568h@2x.png +0 -0
  102. data/template/flow/files/resources/Default-667h@2x.png +0 -0
  103. data/template/flow/files/resources/Default-736h@3x.png +0 -0
  104. data/vendor/android/google-play-services_lib/AndroidManifest.xml +26 -0
  105. data/vendor/android/google-play-services_lib/README.txt +17 -0
  106. data/vendor/android/google-play-services_lib/libs/google-play-services.jar +0 -0
  107. data/vendor/android/google-play-services_lib/libs/google-play-services.jar.properties +1 -0
  108. data/vendor/android/google-play-services_lib/proguard.txt +35 -0
  109. data/vendor/android/google-play-services_lib/project.properties +15 -0
  110. data/vendor/android/google-play-services_lib/res/color/common_google_signin_btn_text_dark.xml +14 -0
  111. data/vendor/android/google-play-services_lib/res/color/common_google_signin_btn_text_light.xml +14 -0
  112. data/vendor/android/google-play-services_lib/res/color/common_plus_signin_btn_text_dark.xml +14 -0
  113. data/vendor/android/google-play-services_lib/res/color/common_plus_signin_btn_text_light.xml +14 -0
  114. data/vendor/android/google-play-services_lib/res/color/wallet_primary_text_holo_light.xml +9 -0
  115. data/vendor/android/google-play-services_lib/res/color/wallet_secondary_text_holo_dark.xml +12 -0
  116. data/vendor/android/google-play-services_lib/res/drawable-hdpi/cast_ic_notification_0.png +0 -0
  117. data/vendor/android/google-play-services_lib/res/drawable-hdpi/cast_ic_notification_1.png +0 -0
  118. data/vendor/android/google-play-services_lib/res/drawable-hdpi/cast_ic_notification_2.png +0 -0
  119. data/vendor/android/google-play-services_lib/res/drawable-hdpi/cast_ic_notification_on.png +0 -0
  120. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_full_open_on_phone.png +0 -0
  121. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  122. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  123. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  124. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  125. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  126. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  127. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  128. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  129. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  130. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  131. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  132. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  133. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  134. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  135. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  136. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  137. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_ic_googleplayservices.png +0 -0
  138. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  139. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  140. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  141. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  142. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  143. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  144. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  145. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  146. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  147. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  148. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  149. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  150. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  151. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  152. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  153. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  154. data/vendor/android/google-play-services_lib/res/drawable-hdpi/ic_plusone_medium_off_client.png +0 -0
  155. data/vendor/android/google-play-services_lib/res/drawable-hdpi/ic_plusone_small_off_client.png +0 -0
  156. data/vendor/android/google-play-services_lib/res/drawable-hdpi/ic_plusone_standard_off_client.png +0 -0
  157. data/vendor/android/google-play-services_lib/res/drawable-hdpi/ic_plusone_tall_off_client.png +0 -0
  158. data/vendor/android/google-play-services_lib/res/drawable-hdpi/places_ic_clear.png +0 -0
  159. data/vendor/android/google-play-services_lib/res/drawable-hdpi/places_ic_search.png +0 -0
  160. data/vendor/android/google-play-services_lib/res/drawable-hdpi/powered_by_google_dark.png +0 -0
  161. data/vendor/android/google-play-services_lib/res/drawable-hdpi/powered_by_google_light.png +0 -0
  162. data/vendor/android/google-play-services_lib/res/drawable-mdpi/cast_ic_notification_0.png +0 -0
  163. data/vendor/android/google-play-services_lib/res/drawable-mdpi/cast_ic_notification_1.png +0 -0
  164. data/vendor/android/google-play-services_lib/res/drawable-mdpi/cast_ic_notification_2.png +0 -0
  165. data/vendor/android/google-play-services_lib/res/drawable-mdpi/cast_ic_notification_on.png +0 -0
  166. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_full_open_on_phone.png +0 -0
  167. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  168. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  169. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  170. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  171. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  172. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  173. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  174. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  175. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  176. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  177. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  178. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  179. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  180. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  181. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  182. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  183. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  184. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  185. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  186. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  187. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  188. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  189. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  190. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  191. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  192. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  193. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  194. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  195. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  196. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  197. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  198. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  199. data/vendor/android/google-play-services_lib/res/drawable-mdpi/ic_plusone_medium_off_client.png +0 -0
  200. data/vendor/android/google-play-services_lib/res/drawable-mdpi/ic_plusone_small_off_client.png +0 -0
  201. data/vendor/android/google-play-services_lib/res/drawable-mdpi/ic_plusone_standard_off_client.png +0 -0
  202. data/vendor/android/google-play-services_lib/res/drawable-mdpi/ic_plusone_tall_off_client.png +0 -0
  203. data/vendor/android/google-play-services_lib/res/drawable-mdpi/places_ic_clear.png +0 -0
  204. data/vendor/android/google-play-services_lib/res/drawable-mdpi/places_ic_search.png +0 -0
  205. data/vendor/android/google-play-services_lib/res/drawable-mdpi/powered_by_google_dark.png +0 -0
  206. data/vendor/android/google-play-services_lib/res/drawable-mdpi/powered_by_google_light.png +0 -0
  207. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_full_open_on_phone.png +0 -0
  208. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  209. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  210. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  211. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  212. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  213. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  214. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  215. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  216. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  217. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  218. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  219. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  220. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  221. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  222. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  223. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  224. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  225. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  226. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  227. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  228. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  229. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  230. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  231. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  232. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  233. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  234. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  235. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  236. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  237. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  238. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  239. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  240. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/ic_plusone_medium_off_client.png +0 -0
  241. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/ic_plusone_small_off_client.png +0 -0
  242. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/ic_plusone_standard_off_client.png +0 -0
  243. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/ic_plusone_tall_off_client.png +0 -0
  244. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/cast_ic_notification_0.png +0 -0
  245. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/cast_ic_notification_1.png +0 -0
  246. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/cast_ic_notification_2.png +0 -0
  247. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/cast_ic_notification_on.png +0 -0
  248. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_full_open_on_phone.png +0 -0
  249. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  250. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  251. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  252. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  253. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  254. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  255. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  256. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  257. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  258. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  259. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  260. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  261. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  262. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  263. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  264. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  265. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  266. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  267. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  268. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  269. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  270. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  271. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  272. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  273. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  274. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  275. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  276. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  277. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  278. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  279. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  280. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  281. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/ic_plusone_medium_off_client.png +0 -0
  282. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/ic_plusone_small_off_client.png +0 -0
  283. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/ic_plusone_standard_off_client.png +0 -0
  284. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/ic_plusone_tall_off_client.png +0 -0
  285. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/places_ic_clear.png +0 -0
  286. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/places_ic_search.png +0 -0
  287. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/powered_by_google_dark.png +0 -0
  288. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/powered_by_google_light.png +0 -0
  289. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/cast_ic_notification_0.png +0 -0
  290. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/cast_ic_notification_1.png +0 -0
  291. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/cast_ic_notification_2.png +0 -0
  292. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/cast_ic_notification_on.png +0 -0
  293. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_full_open_on_phone.png +0 -0
  294. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  295. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  296. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  297. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  298. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  299. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  300. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  301. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  302. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  303. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  304. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  305. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  306. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  307. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  308. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  309. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  310. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  311. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  312. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  313. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  314. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  315. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  316. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  317. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  318. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  319. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  320. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  321. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  322. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  323. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  324. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  325. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  326. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/ic_plusone_medium_off_client.png +0 -0
  327. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/ic_plusone_small_off_client.png +0 -0
  328. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/ic_plusone_standard_off_client.png +0 -0
  329. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/ic_plusone_tall_off_client.png +0 -0
  330. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/places_ic_clear.png +0 -0
  331. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/places_ic_search.png +0 -0
  332. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/powered_by_google_dark.png +0 -0
  333. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/powered_by_google_light.png +0 -0
  334. data/vendor/android/google-play-services_lib/res/drawable-xxxhdpi/places_ic_clear.png +0 -0
  335. data/vendor/android/google-play-services_lib/res/drawable-xxxhdpi/places_ic_search.png +0 -0
  336. data/vendor/android/google-play-services_lib/res/drawable-xxxhdpi/powered_by_google_dark.png +0 -0
  337. data/vendor/android/google-play-services_lib/res/drawable-xxxhdpi/powered_by_google_light.png +0 -0
  338. data/vendor/android/google-play-services_lib/res/drawable/cast_ic_notification_connecting.xml +11 -0
  339. data/vendor/android/google-play-services_lib/res/drawable/common_google_signin_btn_icon_dark.xml +14 -0
  340. data/vendor/android/google-play-services_lib/res/drawable/common_google_signin_btn_icon_light.xml +14 -0
  341. data/vendor/android/google-play-services_lib/res/drawable/common_google_signin_btn_text_dark.xml +16 -0
  342. data/vendor/android/google-play-services_lib/res/drawable/common_google_signin_btn_text_light.xml +14 -0
  343. data/vendor/android/google-play-services_lib/res/drawable/common_plus_signin_btn_icon_dark.xml +14 -0
  344. data/vendor/android/google-play-services_lib/res/drawable/common_plus_signin_btn_icon_light.xml +14 -0
  345. data/vendor/android/google-play-services_lib/res/drawable/common_plus_signin_btn_text_dark.xml +14 -0
  346. data/vendor/android/google-play-services_lib/res/drawable/common_plus_signin_btn_text_light.xml +14 -0
  347. data/vendor/android/google-play-services_lib/res/layout-v21/place_autocomplete_fragment.xml +53 -0
  348. data/vendor/android/google-play-services_lib/res/layout/place_autocomplete_fragment.xml +53 -0
  349. data/vendor/android/google-play-services_lib/res/layout/place_autocomplete_item_powered_by_google.xml +41 -0
  350. data/vendor/android/google-play-services_lib/res/layout/place_autocomplete_item_prediction.xml +68 -0
  351. data/vendor/android/google-play-services_lib/res/layout/place_autocomplete_progress.xml +9 -0
  352. data/vendor/android/google-play-services_lib/res/raw/gtm_analytics +0 -0
  353. data/vendor/android/google-play-services_lib/res/values-af/base_strings.xml +32 -0
  354. data/vendor/android/google-play-services_lib/res/values-af/common_strings.xml +5 -0
  355. data/vendor/android/google-play-services_lib/res/values-af/location_strings.xml +8 -0
  356. data/vendor/android/google-play-services_lib/res/values-am/base_strings.xml +32 -0
  357. data/vendor/android/google-play-services_lib/res/values-am/common_strings.xml +5 -0
  358. data/vendor/android/google-play-services_lib/res/values-am/location_strings.xml +8 -0
  359. data/vendor/android/google-play-services_lib/res/values-am/wallet_strings.xml +7 -0
  360. data/vendor/android/google-play-services_lib/res/values-ar/base_strings.xml +32 -0
  361. data/vendor/android/google-play-services_lib/res/values-ar/common_strings.xml +5 -0
  362. data/vendor/android/google-play-services_lib/res/values-ar/location_strings.xml +8 -0
  363. data/vendor/android/google-play-services_lib/res/values-ar/wallet_strings.xml +7 -0
  364. data/vendor/android/google-play-services_lib/res/values-az-rAZ/base_strings.xml +32 -0
  365. data/vendor/android/google-play-services_lib/res/values-az-rAZ/common_strings.xml +5 -0
  366. data/vendor/android/google-play-services_lib/res/values-az-rAZ/location_strings.xml +8 -0
  367. data/vendor/android/google-play-services_lib/res/values-bg/base_strings.xml +32 -0
  368. data/vendor/android/google-play-services_lib/res/values-bg/common_strings.xml +5 -0
  369. data/vendor/android/google-play-services_lib/res/values-bg/location_strings.xml +8 -0
  370. data/vendor/android/google-play-services_lib/res/values-bg/wallet_strings.xml +7 -0
  371. data/vendor/android/google-play-services_lib/res/values-bn-rBD/base_strings.xml +32 -0
  372. data/vendor/android/google-play-services_lib/res/values-bn-rBD/common_strings.xml +5 -0
  373. data/vendor/android/google-play-services_lib/res/values-bn-rBD/location_strings.xml +8 -0
  374. data/vendor/android/google-play-services_lib/res/values-ca/base_strings.xml +32 -0
  375. data/vendor/android/google-play-services_lib/res/values-ca/common_strings.xml +5 -0
  376. data/vendor/android/google-play-services_lib/res/values-ca/location_strings.xml +8 -0
  377. data/vendor/android/google-play-services_lib/res/values-ca/wallet_strings.xml +7 -0
  378. data/vendor/android/google-play-services_lib/res/values-cs/base_strings.xml +32 -0
  379. data/vendor/android/google-play-services_lib/res/values-cs/common_strings.xml +5 -0
  380. data/vendor/android/google-play-services_lib/res/values-cs/location_strings.xml +8 -0
  381. data/vendor/android/google-play-services_lib/res/values-cs/wallet_strings.xml +7 -0
  382. data/vendor/android/google-play-services_lib/res/values-da/base_strings.xml +32 -0
  383. data/vendor/android/google-play-services_lib/res/values-da/common_strings.xml +5 -0
  384. data/vendor/android/google-play-services_lib/res/values-da/location_strings.xml +8 -0
  385. data/vendor/android/google-play-services_lib/res/values-da/wallet_strings.xml +7 -0
  386. data/vendor/android/google-play-services_lib/res/values-de/base_strings.xml +32 -0
  387. data/vendor/android/google-play-services_lib/res/values-de/common_strings.xml +5 -0
  388. data/vendor/android/google-play-services_lib/res/values-de/location_strings.xml +8 -0
  389. data/vendor/android/google-play-services_lib/res/values-de/wallet_strings.xml +7 -0
  390. data/vendor/android/google-play-services_lib/res/values-el/base_strings.xml +32 -0
  391. data/vendor/android/google-play-services_lib/res/values-el/common_strings.xml +5 -0
  392. data/vendor/android/google-play-services_lib/res/values-el/location_strings.xml +8 -0
  393. data/vendor/android/google-play-services_lib/res/values-el/wallet_strings.xml +7 -0
  394. data/vendor/android/google-play-services_lib/res/values-en-rAU/base_strings.xml +32 -0
  395. data/vendor/android/google-play-services_lib/res/values-en-rAU/common_strings.xml +5 -0
  396. data/vendor/android/google-play-services_lib/res/values-en-rAU/location_strings.xml +8 -0
  397. data/vendor/android/google-play-services_lib/res/values-en-rAU/wallet_strings.xml +7 -0
  398. data/vendor/android/google-play-services_lib/res/values-en-rGB/base_strings.xml +32 -0
  399. data/vendor/android/google-play-services_lib/res/values-en-rGB/common_strings.xml +5 -0
  400. data/vendor/android/google-play-services_lib/res/values-en-rGB/location_strings.xml +8 -0
  401. data/vendor/android/google-play-services_lib/res/values-en-rGB/wallet_strings.xml +7 -0
  402. data/vendor/android/google-play-services_lib/res/values-en-rIN/base_strings.xml +32 -0
  403. data/vendor/android/google-play-services_lib/res/values-en-rIN/common_strings.xml +5 -0
  404. data/vendor/android/google-play-services_lib/res/values-en-rIN/location_strings.xml +8 -0
  405. data/vendor/android/google-play-services_lib/res/values-en-rIN/wallet_strings.xml +7 -0
  406. data/vendor/android/google-play-services_lib/res/values-es-rUS/base_strings.xml +32 -0
  407. data/vendor/android/google-play-services_lib/res/values-es-rUS/common_strings.xml +5 -0
  408. data/vendor/android/google-play-services_lib/res/values-es-rUS/location_strings.xml +8 -0
  409. data/vendor/android/google-play-services_lib/res/values-es-rUS/wallet_strings.xml +7 -0
  410. data/vendor/android/google-play-services_lib/res/values-es/base_strings.xml +32 -0
  411. data/vendor/android/google-play-services_lib/res/values-es/common_strings.xml +5 -0
  412. data/vendor/android/google-play-services_lib/res/values-es/location_strings.xml +8 -0
  413. data/vendor/android/google-play-services_lib/res/values-es/wallet_strings.xml +7 -0
  414. data/vendor/android/google-play-services_lib/res/values-et-rEE/base_strings.xml +32 -0
  415. data/vendor/android/google-play-services_lib/res/values-et-rEE/common_strings.xml +5 -0
  416. data/vendor/android/google-play-services_lib/res/values-et-rEE/location_strings.xml +8 -0
  417. data/vendor/android/google-play-services_lib/res/values-eu-rES/base_strings.xml +32 -0
  418. data/vendor/android/google-play-services_lib/res/values-eu-rES/common_strings.xml +5 -0
  419. data/vendor/android/google-play-services_lib/res/values-eu-rES/location_strings.xml +8 -0
  420. data/vendor/android/google-play-services_lib/res/values-fa/base_strings.xml +32 -0
  421. data/vendor/android/google-play-services_lib/res/values-fa/common_strings.xml +5 -0
  422. data/vendor/android/google-play-services_lib/res/values-fa/location_strings.xml +8 -0
  423. data/vendor/android/google-play-services_lib/res/values-fa/wallet_strings.xml +7 -0
  424. data/vendor/android/google-play-services_lib/res/values-fi/base_strings.xml +32 -0
  425. data/vendor/android/google-play-services_lib/res/values-fi/common_strings.xml +5 -0
  426. data/vendor/android/google-play-services_lib/res/values-fi/location_strings.xml +8 -0
  427. data/vendor/android/google-play-services_lib/res/values-fi/wallet_strings.xml +7 -0
  428. data/vendor/android/google-play-services_lib/res/values-fr-rCA/base_strings.xml +32 -0
  429. data/vendor/android/google-play-services_lib/res/values-fr-rCA/common_strings.xml +5 -0
  430. data/vendor/android/google-play-services_lib/res/values-fr-rCA/location_strings.xml +8 -0
  431. data/vendor/android/google-play-services_lib/res/values-fr/base_strings.xml +32 -0
  432. data/vendor/android/google-play-services_lib/res/values-fr/common_strings.xml +5 -0
  433. data/vendor/android/google-play-services_lib/res/values-fr/location_strings.xml +8 -0
  434. data/vendor/android/google-play-services_lib/res/values-fr/wallet_strings.xml +7 -0
  435. data/vendor/android/google-play-services_lib/res/values-gl-rES/base_strings.xml +32 -0
  436. data/vendor/android/google-play-services_lib/res/values-gl-rES/common_strings.xml +5 -0
  437. data/vendor/android/google-play-services_lib/res/values-gl-rES/location_strings.xml +8 -0
  438. data/vendor/android/google-play-services_lib/res/values-gu-rIN/base_strings.xml +32 -0
  439. data/vendor/android/google-play-services_lib/res/values-gu-rIN/common_strings.xml +5 -0
  440. data/vendor/android/google-play-services_lib/res/values-gu-rIN/location_strings.xml +8 -0
  441. data/vendor/android/google-play-services_lib/res/values-hi/base_strings.xml +32 -0
  442. data/vendor/android/google-play-services_lib/res/values-hi/common_strings.xml +5 -0
  443. data/vendor/android/google-play-services_lib/res/values-hi/location_strings.xml +8 -0
  444. data/vendor/android/google-play-services_lib/res/values-hi/wallet_strings.xml +7 -0
  445. data/vendor/android/google-play-services_lib/res/values-hr/base_strings.xml +32 -0
  446. data/vendor/android/google-play-services_lib/res/values-hr/common_strings.xml +5 -0
  447. data/vendor/android/google-play-services_lib/res/values-hr/location_strings.xml +8 -0
  448. data/vendor/android/google-play-services_lib/res/values-hr/wallet_strings.xml +7 -0
  449. data/vendor/android/google-play-services_lib/res/values-hu/base_strings.xml +32 -0
  450. data/vendor/android/google-play-services_lib/res/values-hu/common_strings.xml +5 -0
  451. data/vendor/android/google-play-services_lib/res/values-hu/location_strings.xml +8 -0
  452. data/vendor/android/google-play-services_lib/res/values-hu/wallet_strings.xml +7 -0
  453. data/vendor/android/google-play-services_lib/res/values-hy-rAM/base_strings.xml +32 -0
  454. data/vendor/android/google-play-services_lib/res/values-hy-rAM/common_strings.xml +5 -0
  455. data/vendor/android/google-play-services_lib/res/values-hy-rAM/location_strings.xml +8 -0
  456. data/vendor/android/google-play-services_lib/res/values-in/base_strings.xml +32 -0
  457. data/vendor/android/google-play-services_lib/res/values-in/common_strings.xml +5 -0
  458. data/vendor/android/google-play-services_lib/res/values-in/location_strings.xml +8 -0
  459. data/vendor/android/google-play-services_lib/res/values-in/wallet_strings.xml +7 -0
  460. data/vendor/android/google-play-services_lib/res/values-is-rIS/base_strings.xml +32 -0
  461. data/vendor/android/google-play-services_lib/res/values-is-rIS/common_strings.xml +5 -0
  462. data/vendor/android/google-play-services_lib/res/values-is-rIS/location_strings.xml +8 -0
  463. data/vendor/android/google-play-services_lib/res/values-it/base_strings.xml +32 -0
  464. data/vendor/android/google-play-services_lib/res/values-it/common_strings.xml +5 -0
  465. data/vendor/android/google-play-services_lib/res/values-it/location_strings.xml +8 -0
  466. data/vendor/android/google-play-services_lib/res/values-it/wallet_strings.xml +7 -0
  467. data/vendor/android/google-play-services_lib/res/values-iw/base_strings.xml +32 -0
  468. data/vendor/android/google-play-services_lib/res/values-iw/common_strings.xml +5 -0
  469. data/vendor/android/google-play-services_lib/res/values-iw/location_strings.xml +8 -0
  470. data/vendor/android/google-play-services_lib/res/values-iw/wallet_strings.xml +7 -0
  471. data/vendor/android/google-play-services_lib/res/values-ja/base_strings.xml +32 -0
  472. data/vendor/android/google-play-services_lib/res/values-ja/common_strings.xml +5 -0
  473. data/vendor/android/google-play-services_lib/res/values-ja/location_strings.xml +8 -0
  474. data/vendor/android/google-play-services_lib/res/values-ja/wallet_strings.xml +7 -0
  475. data/vendor/android/google-play-services_lib/res/values-ka-rGE/base_strings.xml +32 -0
  476. data/vendor/android/google-play-services_lib/res/values-ka-rGE/common_strings.xml +5 -0
  477. data/vendor/android/google-play-services_lib/res/values-ka-rGE/location_strings.xml +8 -0
  478. data/vendor/android/google-play-services_lib/res/values-kk-rKZ/base_strings.xml +32 -0
  479. data/vendor/android/google-play-services_lib/res/values-kk-rKZ/common_strings.xml +5 -0
  480. data/vendor/android/google-play-services_lib/res/values-kk-rKZ/location_strings.xml +8 -0
  481. data/vendor/android/google-play-services_lib/res/values-km-rKH/base_strings.xml +32 -0
  482. data/vendor/android/google-play-services_lib/res/values-km-rKH/common_strings.xml +5 -0
  483. data/vendor/android/google-play-services_lib/res/values-km-rKH/location_strings.xml +8 -0
  484. data/vendor/android/google-play-services_lib/res/values-kn-rIN/base_strings.xml +32 -0
  485. data/vendor/android/google-play-services_lib/res/values-kn-rIN/common_strings.xml +5 -0
  486. data/vendor/android/google-play-services_lib/res/values-kn-rIN/location_strings.xml +8 -0
  487. data/vendor/android/google-play-services_lib/res/values-ko/base_strings.xml +32 -0
  488. data/vendor/android/google-play-services_lib/res/values-ko/common_strings.xml +5 -0
  489. data/vendor/android/google-play-services_lib/res/values-ko/location_strings.xml +8 -0
  490. data/vendor/android/google-play-services_lib/res/values-ko/wallet_strings.xml +7 -0
  491. data/vendor/android/google-play-services_lib/res/values-ky-rKG/base_strings.xml +32 -0
  492. data/vendor/android/google-play-services_lib/res/values-ky-rKG/common_strings.xml +5 -0
  493. data/vendor/android/google-play-services_lib/res/values-ky-rKG/location_strings.xml +8 -0
  494. data/vendor/android/google-play-services_lib/res/values-lo-rLA/base_strings.xml +32 -0
  495. data/vendor/android/google-play-services_lib/res/values-lo-rLA/common_strings.xml +5 -0
  496. data/vendor/android/google-play-services_lib/res/values-lo-rLA/location_strings.xml +8 -0
  497. data/vendor/android/google-play-services_lib/res/values-lt/base_strings.xml +32 -0
  498. data/vendor/android/google-play-services_lib/res/values-lt/common_strings.xml +5 -0
  499. data/vendor/android/google-play-services_lib/res/values-lt/location_strings.xml +8 -0
  500. data/vendor/android/google-play-services_lib/res/values-lt/wallet_strings.xml +7 -0
  501. data/vendor/android/google-play-services_lib/res/values-lv/base_strings.xml +32 -0
  502. data/vendor/android/google-play-services_lib/res/values-lv/common_strings.xml +5 -0
  503. data/vendor/android/google-play-services_lib/res/values-lv/location_strings.xml +8 -0
  504. data/vendor/android/google-play-services_lib/res/values-lv/wallet_strings.xml +7 -0
  505. data/vendor/android/google-play-services_lib/res/values-mk-rMK/base_strings.xml +32 -0
  506. data/vendor/android/google-play-services_lib/res/values-mk-rMK/common_strings.xml +5 -0
  507. data/vendor/android/google-play-services_lib/res/values-mk-rMK/location_strings.xml +8 -0
  508. data/vendor/android/google-play-services_lib/res/values-ml-rIN/base_strings.xml +32 -0
  509. data/vendor/android/google-play-services_lib/res/values-ml-rIN/common_strings.xml +5 -0
  510. data/vendor/android/google-play-services_lib/res/values-ml-rIN/location_strings.xml +8 -0
  511. data/vendor/android/google-play-services_lib/res/values-mn-rMN/base_strings.xml +32 -0
  512. data/vendor/android/google-play-services_lib/res/values-mn-rMN/common_strings.xml +5 -0
  513. data/vendor/android/google-play-services_lib/res/values-mn-rMN/location_strings.xml +8 -0
  514. data/vendor/android/google-play-services_lib/res/values-mr-rIN/base_strings.xml +32 -0
  515. data/vendor/android/google-play-services_lib/res/values-mr-rIN/common_strings.xml +5 -0
  516. data/vendor/android/google-play-services_lib/res/values-mr-rIN/location_strings.xml +8 -0
  517. data/vendor/android/google-play-services_lib/res/values-ms-rMY/base_strings.xml +32 -0
  518. data/vendor/android/google-play-services_lib/res/values-ms-rMY/common_strings.xml +5 -0
  519. data/vendor/android/google-play-services_lib/res/values-ms-rMY/location_strings.xml +8 -0
  520. data/vendor/android/google-play-services_lib/res/values-ms-rMY/wallet_strings.xml +7 -0
  521. data/vendor/android/google-play-services_lib/res/values-my-rMM/base_strings.xml +32 -0
  522. data/vendor/android/google-play-services_lib/res/values-my-rMM/common_strings.xml +5 -0
  523. data/vendor/android/google-play-services_lib/res/values-my-rMM/location_strings.xml +8 -0
  524. data/vendor/android/google-play-services_lib/res/values-nb/base_strings.xml +32 -0
  525. data/vendor/android/google-play-services_lib/res/values-nb/common_strings.xml +5 -0
  526. data/vendor/android/google-play-services_lib/res/values-nb/location_strings.xml +8 -0
  527. data/vendor/android/google-play-services_lib/res/values-nb/wallet_strings.xml +7 -0
  528. data/vendor/android/google-play-services_lib/res/values-ne-rNP/base_strings.xml +32 -0
  529. data/vendor/android/google-play-services_lib/res/values-ne-rNP/common_strings.xml +5 -0
  530. data/vendor/android/google-play-services_lib/res/values-ne-rNP/location_strings.xml +8 -0
  531. data/vendor/android/google-play-services_lib/res/values-nl/base_strings.xml +32 -0
  532. data/vendor/android/google-play-services_lib/res/values-nl/common_strings.xml +5 -0
  533. data/vendor/android/google-play-services_lib/res/values-nl/location_strings.xml +8 -0
  534. data/vendor/android/google-play-services_lib/res/values-nl/wallet_strings.xml +7 -0
  535. data/vendor/android/google-play-services_lib/res/values-pa-rIN/base_strings.xml +32 -0
  536. data/vendor/android/google-play-services_lib/res/values-pa-rIN/common_strings.xml +5 -0
  537. data/vendor/android/google-play-services_lib/res/values-pa-rIN/location_strings.xml +8 -0
  538. data/vendor/android/google-play-services_lib/res/values-pl/base_strings.xml +32 -0
  539. data/vendor/android/google-play-services_lib/res/values-pl/common_strings.xml +5 -0
  540. data/vendor/android/google-play-services_lib/res/values-pl/location_strings.xml +8 -0
  541. data/vendor/android/google-play-services_lib/res/values-pl/wallet_strings.xml +7 -0
  542. data/vendor/android/google-play-services_lib/res/values-pt-rBR/base_strings.xml +32 -0
  543. data/vendor/android/google-play-services_lib/res/values-pt-rBR/common_strings.xml +5 -0
  544. data/vendor/android/google-play-services_lib/res/values-pt-rBR/location_strings.xml +8 -0
  545. data/vendor/android/google-play-services_lib/res/values-pt-rBR/wallet_strings.xml +7 -0
  546. data/vendor/android/google-play-services_lib/res/values-pt-rPT/base_strings.xml +32 -0
  547. data/vendor/android/google-play-services_lib/res/values-pt-rPT/common_strings.xml +5 -0
  548. data/vendor/android/google-play-services_lib/res/values-pt-rPT/location_strings.xml +8 -0
  549. data/vendor/android/google-play-services_lib/res/values-pt-rPT/wallet_strings.xml +7 -0
  550. data/vendor/android/google-play-services_lib/res/values-pt/base_strings.xml +32 -0
  551. data/vendor/android/google-play-services_lib/res/values-pt/common_strings.xml +5 -0
  552. data/vendor/android/google-play-services_lib/res/values-pt/location_strings.xml +8 -0
  553. data/vendor/android/google-play-services_lib/res/values-pt/wallet_strings.xml +7 -0
  554. data/vendor/android/google-play-services_lib/res/values-ro/base_strings.xml +32 -0
  555. data/vendor/android/google-play-services_lib/res/values-ro/common_strings.xml +5 -0
  556. data/vendor/android/google-play-services_lib/res/values-ro/location_strings.xml +8 -0
  557. data/vendor/android/google-play-services_lib/res/values-ro/wallet_strings.xml +7 -0
  558. data/vendor/android/google-play-services_lib/res/values-ru/base_strings.xml +32 -0
  559. data/vendor/android/google-play-services_lib/res/values-ru/common_strings.xml +5 -0
  560. data/vendor/android/google-play-services_lib/res/values-ru/location_strings.xml +8 -0
  561. data/vendor/android/google-play-services_lib/res/values-ru/wallet_strings.xml +7 -0
  562. data/vendor/android/google-play-services_lib/res/values-si-rLK/base_strings.xml +32 -0
  563. data/vendor/android/google-play-services_lib/res/values-si-rLK/common_strings.xml +5 -0
  564. data/vendor/android/google-play-services_lib/res/values-si-rLK/location_strings.xml +8 -0
  565. data/vendor/android/google-play-services_lib/res/values-sk/base_strings.xml +32 -0
  566. data/vendor/android/google-play-services_lib/res/values-sk/common_strings.xml +5 -0
  567. data/vendor/android/google-play-services_lib/res/values-sk/location_strings.xml +8 -0
  568. data/vendor/android/google-play-services_lib/res/values-sk/wallet_strings.xml +7 -0
  569. data/vendor/android/google-play-services_lib/res/values-sl/base_strings.xml +32 -0
  570. data/vendor/android/google-play-services_lib/res/values-sl/common_strings.xml +5 -0
  571. data/vendor/android/google-play-services_lib/res/values-sl/location_strings.xml +8 -0
  572. data/vendor/android/google-play-services_lib/res/values-sl/wallet_strings.xml +7 -0
  573. data/vendor/android/google-play-services_lib/res/values-sq-rAL/base_strings.xml +32 -0
  574. data/vendor/android/google-play-services_lib/res/values-sq-rAL/common_strings.xml +5 -0
  575. data/vendor/android/google-play-services_lib/res/values-sq-rAL/location_strings.xml +8 -0
  576. data/vendor/android/google-play-services_lib/res/values-sr/base_strings.xml +32 -0
  577. data/vendor/android/google-play-services_lib/res/values-sr/common_strings.xml +5 -0
  578. data/vendor/android/google-play-services_lib/res/values-sr/location_strings.xml +8 -0
  579. data/vendor/android/google-play-services_lib/res/values-sr/wallet_strings.xml +7 -0
  580. data/vendor/android/google-play-services_lib/res/values-sv/base_strings.xml +32 -0
  581. data/vendor/android/google-play-services_lib/res/values-sv/common_strings.xml +5 -0
  582. data/vendor/android/google-play-services_lib/res/values-sv/location_strings.xml +8 -0
  583. data/vendor/android/google-play-services_lib/res/values-sv/wallet_strings.xml +7 -0
  584. data/vendor/android/google-play-services_lib/res/values-sw/base_strings.xml +32 -0
  585. data/vendor/android/google-play-services_lib/res/values-sw/common_strings.xml +5 -0
  586. data/vendor/android/google-play-services_lib/res/values-sw/location_strings.xml +8 -0
  587. data/vendor/android/google-play-services_lib/res/values-sw/wallet_strings.xml +7 -0
  588. data/vendor/android/google-play-services_lib/res/values-ta-rIN/base_strings.xml +32 -0
  589. data/vendor/android/google-play-services_lib/res/values-ta-rIN/common_strings.xml +5 -0
  590. data/vendor/android/google-play-services_lib/res/values-ta-rIN/location_strings.xml +8 -0
  591. data/vendor/android/google-play-services_lib/res/values-te-rIN/base_strings.xml +32 -0
  592. data/vendor/android/google-play-services_lib/res/values-te-rIN/common_strings.xml +5 -0
  593. data/vendor/android/google-play-services_lib/res/values-te-rIN/location_strings.xml +8 -0
  594. data/vendor/android/google-play-services_lib/res/values-th/base_strings.xml +32 -0
  595. data/vendor/android/google-play-services_lib/res/values-th/common_strings.xml +5 -0
  596. data/vendor/android/google-play-services_lib/res/values-th/location_strings.xml +8 -0
  597. data/vendor/android/google-play-services_lib/res/values-th/wallet_strings.xml +7 -0
  598. data/vendor/android/google-play-services_lib/res/values-tl/base_strings.xml +32 -0
  599. data/vendor/android/google-play-services_lib/res/values-tl/common_strings.xml +5 -0
  600. data/vendor/android/google-play-services_lib/res/values-tl/location_strings.xml +8 -0
  601. data/vendor/android/google-play-services_lib/res/values-tl/wallet_strings.xml +7 -0
  602. data/vendor/android/google-play-services_lib/res/values-tr/base_strings.xml +32 -0
  603. data/vendor/android/google-play-services_lib/res/values-tr/common_strings.xml +5 -0
  604. data/vendor/android/google-play-services_lib/res/values-tr/location_strings.xml +8 -0
  605. data/vendor/android/google-play-services_lib/res/values-tr/wallet_strings.xml +7 -0
  606. data/vendor/android/google-play-services_lib/res/values-uk/base_strings.xml +32 -0
  607. data/vendor/android/google-play-services_lib/res/values-uk/common_strings.xml +5 -0
  608. data/vendor/android/google-play-services_lib/res/values-uk/location_strings.xml +8 -0
  609. data/vendor/android/google-play-services_lib/res/values-uk/wallet_strings.xml +7 -0
  610. data/vendor/android/google-play-services_lib/res/values-ur-rPK/base_strings.xml +32 -0
  611. data/vendor/android/google-play-services_lib/res/values-ur-rPK/common_strings.xml +5 -0
  612. data/vendor/android/google-play-services_lib/res/values-ur-rPK/location_strings.xml +8 -0
  613. data/vendor/android/google-play-services_lib/res/values-uz-rUZ/base_strings.xml +32 -0
  614. data/vendor/android/google-play-services_lib/res/values-uz-rUZ/common_strings.xml +5 -0
  615. data/vendor/android/google-play-services_lib/res/values-uz-rUZ/location_strings.xml +8 -0
  616. data/vendor/android/google-play-services_lib/res/values-v11/appinvite_styles.xml +7 -0
  617. data/vendor/android/google-play-services_lib/res/values-v21/appinvite_styles.xml +7 -0
  618. data/vendor/android/google-play-services_lib/res/values-vi/base_strings.xml +32 -0
  619. data/vendor/android/google-play-services_lib/res/values-vi/common_strings.xml +5 -0
  620. data/vendor/android/google-play-services_lib/res/values-vi/location_strings.xml +8 -0
  621. data/vendor/android/google-play-services_lib/res/values-vi/wallet_strings.xml +7 -0
  622. data/vendor/android/google-play-services_lib/res/values-zh-rCN/base_strings.xml +32 -0
  623. data/vendor/android/google-play-services_lib/res/values-zh-rCN/common_strings.xml +5 -0
  624. data/vendor/android/google-play-services_lib/res/values-zh-rCN/location_strings.xml +8 -0
  625. data/vendor/android/google-play-services_lib/res/values-zh-rCN/wallet_strings.xml +7 -0
  626. data/vendor/android/google-play-services_lib/res/values-zh-rHK/base_strings.xml +32 -0
  627. data/vendor/android/google-play-services_lib/res/values-zh-rHK/common_strings.xml +5 -0
  628. data/vendor/android/google-play-services_lib/res/values-zh-rHK/location_strings.xml +8 -0
  629. data/vendor/android/google-play-services_lib/res/values-zh-rHK/wallet_strings.xml +7 -0
  630. data/vendor/android/google-play-services_lib/res/values-zh-rTW/base_strings.xml +32 -0
  631. data/vendor/android/google-play-services_lib/res/values-zh-rTW/common_strings.xml +5 -0
  632. data/vendor/android/google-play-services_lib/res/values-zh-rTW/location_strings.xml +8 -0
  633. data/vendor/android/google-play-services_lib/res/values-zh-rTW/wallet_strings.xml +7 -0
  634. data/vendor/android/google-play-services_lib/res/values-zu/base_strings.xml +32 -0
  635. data/vendor/android/google-play-services_lib/res/values-zu/common_strings.xml +5 -0
  636. data/vendor/android/google-play-services_lib/res/values-zu/location_strings.xml +8 -0
  637. data/vendor/android/google-play-services_lib/res/values/admob_ads_attrs.xml +22 -0
  638. data/vendor/android/google-play-services_lib/res/values/admob_iap_style.xml +11 -0
  639. data/vendor/android/google-play-services_lib/res/values/admob_strings.xml +9 -0
  640. data/vendor/android/google-play-services_lib/res/values/appinvite_styles.xml +14 -0
  641. data/vendor/android/google-play-services_lib/res/values/auth_strings.xml +7 -0
  642. data/vendor/android/google-play-services_lib/res/values/base_attrs.xml +24 -0
  643. data/vendor/android/google-play-services_lib/res/values/base_colors.xml +23 -0
  644. data/vendor/android/google-play-services_lib/res/values/base_strings.xml +99 -0
  645. data/vendor/android/google-play-services_lib/res/values/cast_ids.xml +6 -0
  646. data/vendor/android/google-play-services_lib/res/values/cast_strings.xml +13 -0
  647. data/vendor/android/google-play-services_lib/res/values/common_attrs.xml +31 -0
  648. data/vendor/android/google-play-services_lib/res/values/common_strings.xml +6 -0
  649. data/vendor/android/google-play-services_lib/res/values/location_colors.xml +11 -0
  650. data/vendor/android/google-play-services_lib/res/values/location_dimens.xml +15 -0
  651. data/vendor/android/google-play-services_lib/res/values/location_strings.xml +12 -0
  652. data/vendor/android/google-play-services_lib/res/values/maps_attrs.xml +35 -0
  653. data/vendor/android/google-play-services_lib/res/values/version.xml +4 -0
  654. data/vendor/android/google-play-services_lib/res/values/wallet_attrs.xml +100 -0
  655. data/vendor/android/google-play-services_lib/res/values/wallet_colors.xml +21 -0
  656. data/vendor/android/google-play-services_lib/res/values/wallet_strings.xml +11 -0
  657. data/vendor/android/google-play-services_lib/res/values/wallet_styles.xml +45 -0
  658. data/vendor/android/google-play-services_lib/src/android/UnusedStub.java +21 -0
  659. data/vendor/android/support/v7/appcompat/AndroidManifest.xml +20 -0
  660. data/vendor/android/support/v7/appcompat/README.txt +10 -0
  661. data/vendor/android/support/v7/appcompat/libs/android-support-v4.jar +0 -0
  662. data/vendor/android/support/v7/appcompat/libs/android-support-v7-appcompat.jar +0 -0
  663. data/vendor/android/support/v7/appcompat/project.properties +15 -0
  664. data/vendor/android/support/v7/appcompat/res/anim/abc_fade_in.xml +20 -0
  665. data/vendor/android/support/v7/appcompat/res/anim/abc_fade_out.xml +20 -0
  666. data/vendor/android/support/v7/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml +30 -0
  667. data/vendor/android/support/v7/appcompat/res/anim/abc_popup_enter.xml +21 -0
  668. data/vendor/android/support/v7/appcompat/res/anim/abc_popup_exit.xml +21 -0
  669. data/vendor/android/support/v7/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml +27 -0
  670. data/vendor/android/support/v7/appcompat/res/anim/abc_slide_in_bottom.xml +19 -0
  671. data/vendor/android/support/v7/appcompat/res/anim/abc_slide_in_top.xml +19 -0
  672. data/vendor/android/support/v7/appcompat/res/anim/abc_slide_out_bottom.xml +19 -0
  673. data/vendor/android/support/v7/appcompat/res/anim/abc_slide_out_top.xml +19 -0
  674. data/vendor/android/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml +20 -0
  675. data/vendor/android/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml +20 -0
  676. data/vendor/android/support/v7/appcompat/res/color-v23/abc_color_highlight_material.xml +23 -0
  677. data/vendor/android/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml +19 -0
  678. data/vendor/android/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml +19 -0
  679. data/vendor/android/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml +20 -0
  680. data/vendor/android/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_light.xml +20 -0
  681. data/vendor/android/support/v7/appcompat/res/color/abc_primary_text_material_dark.xml +20 -0
  682. data/vendor/android/support/v7/appcompat/res/color/abc_primary_text_material_light.xml +20 -0
  683. data/vendor/android/support/v7/appcompat/res/color/abc_search_url_text.xml +21 -0
  684. data/vendor/android/support/v7/appcompat/res/color/abc_secondary_text_material_dark.xml +20 -0
  685. data/vendor/android/support/v7/appcompat/res/color/abc_secondary_text_material_light.xml +20 -0
  686. data/vendor/android/support/v7/appcompat/res/color/switch_thumb_material_dark.xml +20 -0
  687. data/vendor/android/support/v7/appcompat/res/color/switch_thumb_material_light.xml +20 -0
  688. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png +0 -0
  689. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  690. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  691. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  692. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  693. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png +0 -0
  694. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png +0 -0
  695. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  696. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  697. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png +0 -0
  698. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  699. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  700. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png +0 -0
  701. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png +0 -0
  702. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  703. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  704. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  705. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  706. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  707. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  708. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  709. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  710. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png +0 -0
  711. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png +0 -0
  712. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png +0 -0
  713. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png +0 -0
  714. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png +0 -0
  715. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png +0 -0
  716. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png +0 -0
  717. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png +0 -0
  718. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png +0 -0
  719. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png +0 -0
  720. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  721. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  722. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png +0 -0
  723. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png +0 -0
  724. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  725. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  726. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  727. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png +0 -0
  728. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png +0 -0
  729. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png +0 -0
  730. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png +0 -0
  731. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  732. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  733. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  734. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  735. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  736. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  737. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  738. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  739. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  740. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  741. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  742. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  743. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  744. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  745. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  746. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  747. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  748. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  749. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  750. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  751. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png +0 -0
  752. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  753. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  754. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  755. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  756. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png +0 -0
  757. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png +0 -0
  758. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  759. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  760. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png +0 -0
  761. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  762. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  763. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png +0 -0
  764. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png +0 -0
  765. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  766. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  767. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  768. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  769. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  770. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  771. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  772. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  773. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png +0 -0
  774. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png +0 -0
  775. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png +0 -0
  776. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png +0 -0
  777. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png +0 -0
  778. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png +0 -0
  779. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png +0 -0
  780. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png +0 -0
  781. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png +0 -0
  782. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png +0 -0
  783. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  784. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  785. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png +0 -0
  786. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png +0 -0
  787. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  788. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  789. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  790. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png +0 -0
  791. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png +0 -0
  792. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png +0 -0
  793. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png +0 -0
  794. data/vendor/android/support/v7/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml +18 -0
  795. data/vendor/android/support/v7/appcompat/res/drawable-v21/abc_btn_colored_material.xml +50 -0
  796. data/vendor/android/support/v7/appcompat/res/drawable-v23/abc_control_background_material.xml +19 -0
  797. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png +0 -0
  798. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  799. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  800. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  801. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  802. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png +0 -0
  803. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png +0 -0
  804. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  805. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  806. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png +0 -0
  807. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  808. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  809. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png +0 -0
  810. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png +0 -0
  811. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  812. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  813. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  814. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  815. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  816. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  817. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  818. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  819. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png +0 -0
  820. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png +0 -0
  821. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png +0 -0
  822. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png +0 -0
  823. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png +0 -0
  824. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png +0 -0
  825. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png +0 -0
  826. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png +0 -0
  827. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png +0 -0
  828. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png +0 -0
  829. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  830. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  831. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png +0 -0
  832. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png +0 -0
  833. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  834. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  835. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  836. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png +0 -0
  837. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png +0 -0
  838. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png +0 -0
  839. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png +0 -0
  840. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png +0 -0
  841. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  842. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  843. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  844. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  845. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png +0 -0
  846. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png +0 -0
  847. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  848. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  849. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png +0 -0
  850. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  851. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  852. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png +0 -0
  853. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png +0 -0
  854. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  855. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  856. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  857. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  858. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  859. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  860. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  861. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  862. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png +0 -0
  863. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png +0 -0
  864. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png +0 -0
  865. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png +0 -0
  866. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png +0 -0
  867. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png +0 -0
  868. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png +0 -0
  869. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png +0 -0
  870. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png +0 -0
  871. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png +0 -0
  872. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  873. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  874. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png +0 -0
  875. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png +0 -0
  876. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  877. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  878. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  879. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png +0 -0
  880. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png +0 -0
  881. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png +0 -0
  882. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png +0 -0
  883. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  884. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  885. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  886. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  887. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  888. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  889. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  890. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  891. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  892. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  893. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  894. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  895. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  896. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  897. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  898. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  899. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  900. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  901. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  902. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  903. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  904. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_borderless_material.xml +22 -0
  905. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_check_material.xml +20 -0
  906. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_colored_material.xml +21 -0
  907. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_default_mtrl_shape.xml +32 -0
  908. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_radio_material.xml +20 -0
  909. data/vendor/android/support/v7/appcompat/res/drawable/abc_cab_background_internal_bg.xml +23 -0
  910. data/vendor/android/support/v7/appcompat/res/drawable/abc_cab_background_top_material.xml +20 -0
  911. data/vendor/android/support/v7/appcompat/res/drawable/abc_dialog_material_background_dark.xml +26 -0
  912. data/vendor/android/support/v7/appcompat/res/drawable/abc_dialog_material_background_light.xml +26 -0
  913. data/vendor/android/support/v7/appcompat/res/drawable/abc_edit_text_material.xml +29 -0
  914. data/vendor/android/support/v7/appcompat/res/drawable/abc_item_background_holo_dark.xml +26 -0
  915. data/vendor/android/support/v7/appcompat/res/drawable/abc_item_background_holo_light.xml +26 -0
  916. data/vendor/android/support/v7/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml +20 -0
  917. data/vendor/android/support/v7/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml +20 -0
  918. data/vendor/android/support/v7/appcompat/res/drawable/abc_list_selector_holo_dark.xml +27 -0
  919. data/vendor/android/support/v7/appcompat/res/drawable/abc_list_selector_holo_light.xml +28 -0
  920. data/vendor/android/support/v7/appcompat/res/drawable/abc_ratingbar_full_material.xml +24 -0
  921. data/vendor/android/support/v7/appcompat/res/drawable/abc_seekbar_thumb_material.xml +35 -0
  922. data/vendor/android/support/v7/appcompat/res/drawable/abc_seekbar_track_material.xml +40 -0
  923. data/vendor/android/support/v7/appcompat/res/drawable/abc_spinner_textfield_background_material.xml +36 -0
  924. data/vendor/android/support/v7/appcompat/res/drawable/abc_switch_thumb_material.xml +20 -0
  925. data/vendor/android/support/v7/appcompat/res/drawable/abc_tab_indicator_material.xml +20 -0
  926. data/vendor/android/support/v7/appcompat/res/drawable/abc_text_cursor_material.xml +23 -0
  927. data/vendor/android/support/v7/appcompat/res/drawable/abc_textfield_search_material.xml +22 -0
  928. data/vendor/android/support/v7/appcompat/res/layout/abc_action_bar_title_item.xml +34 -0
  929. data/vendor/android/support/v7/appcompat/res/layout/abc_action_bar_up_container.xml +23 -0
  930. data/vendor/android/support/v7/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml +23 -0
  931. data/vendor/android/support/v7/appcompat/res/layout/abc_action_menu_item_layout.xml +30 -0
  932. data/vendor/android/support/v7/appcompat/res/layout/abc_action_menu_layout.xml +24 -0
  933. data/vendor/android/support/v7/appcompat/res/layout/abc_action_mode_bar.xml +25 -0
  934. data/vendor/android/support/v7/appcompat/res/layout/abc_action_mode_close_item_material.xml +26 -0
  935. data/vendor/android/support/v7/appcompat/res/layout/abc_activity_chooser_view.xml +71 -0
  936. data/vendor/android/support/v7/appcompat/res/layout/abc_activity_chooser_view_list_item.xml +52 -0
  937. data/vendor/android/support/v7/appcompat/res/layout/abc_alert_dialog_button_bar_material.xml +59 -0
  938. data/vendor/android/support/v7/appcompat/res/layout/abc_alert_dialog_material.xml +127 -0
  939. data/vendor/android/support/v7/appcompat/res/layout/abc_dialog_title_material.xml +47 -0
  940. data/vendor/android/support/v7/appcompat/res/layout/abc_expanded_menu_layout.xml +21 -0
  941. data/vendor/android/support/v7/appcompat/res/layout/abc_list_menu_item_checkbox.xml +26 -0
  942. data/vendor/android/support/v7/appcompat/res/layout/abc_list_menu_item_icon.xml +28 -0
  943. data/vendor/android/support/v7/appcompat/res/layout/abc_list_menu_item_layout.xml +60 -0
  944. data/vendor/android/support/v7/appcompat/res/layout/abc_list_menu_item_radio.xml +24 -0
  945. data/vendor/android/support/v7/appcompat/res/layout/abc_popup_menu_item_layout.xml +61 -0
  946. data/vendor/android/support/v7/appcompat/res/layout/abc_screen_content_include.xml +26 -0
  947. data/vendor/android/support/v7/appcompat/res/layout/abc_screen_simple.xml +34 -0
  948. data/vendor/android/support/v7/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml +39 -0
  949. data/vendor/android/support/v7/appcompat/res/layout/abc_screen_toolbar.xml +53 -0
  950. data/vendor/android/support/v7/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml +85 -0
  951. data/vendor/android/support/v7/appcompat/res/layout/abc_search_view.xml +141 -0
  952. data/vendor/android/support/v7/appcompat/res/layout/abc_select_dialog_material.xml +35 -0
  953. data/vendor/android/support/v7/appcompat/res/layout/notification_media_action.xml +25 -0
  954. data/vendor/android/support/v7/appcompat/res/layout/notification_media_cancel_action.xml +28 -0
  955. data/vendor/android/support/v7/appcompat/res/layout/notification_template_big_media.xml +60 -0
  956. data/vendor/android/support/v7/appcompat/res/layout/notification_template_big_media_narrow.xml +68 -0
  957. data/vendor/android/support/v7/appcompat/res/layout/notification_template_lines.xml +108 -0
  958. data/vendor/android/support/v7/appcompat/res/layout/notification_template_media.xml +52 -0
  959. data/vendor/android/support/v7/appcompat/res/layout/notification_template_part_chronometer.xml +28 -0
  960. data/vendor/android/support/v7/appcompat/res/layout/notification_template_part_time.xml +28 -0
  961. data/vendor/android/support/v7/appcompat/res/layout/select_dialog_item_material.xml +33 -0
  962. data/vendor/android/support/v7/appcompat/res/layout/select_dialog_multichoice_material.xml +33 -0
  963. data/vendor/android/support/v7/appcompat/res/layout/select_dialog_singlechoice_material.xml +33 -0
  964. data/vendor/android/support/v7/appcompat/res/layout/support_simple_spinner_dropdown_item.xml +25 -0
  965. data/vendor/android/support/v7/appcompat/res/values-af/strings.xml +39 -0
  966. data/vendor/android/support/v7/appcompat/res/values-am/strings.xml +39 -0
  967. data/vendor/android/support/v7/appcompat/res/values-ar/strings.xml +39 -0
  968. data/vendor/android/support/v7/appcompat/res/values-az-rAZ/strings.xml +41 -0
  969. data/vendor/android/support/v7/appcompat/res/values-bg/strings.xml +39 -0
  970. data/vendor/android/support/v7/appcompat/res/values-bn-rBD/strings.xml +39 -0
  971. data/vendor/android/support/v7/appcompat/res/values-ca/strings.xml +39 -0
  972. data/vendor/android/support/v7/appcompat/res/values-cs/strings.xml +39 -0
  973. data/vendor/android/support/v7/appcompat/res/values-da/strings.xml +39 -0
  974. data/vendor/android/support/v7/appcompat/res/values-de/strings.xml +39 -0
  975. data/vendor/android/support/v7/appcompat/res/values-el/strings.xml +39 -0
  976. data/vendor/android/support/v7/appcompat/res/values-en-rAU/strings.xml +39 -0
  977. data/vendor/android/support/v7/appcompat/res/values-en-rGB/strings.xml +39 -0
  978. data/vendor/android/support/v7/appcompat/res/values-en-rIN/strings.xml +39 -0
  979. data/vendor/android/support/v7/appcompat/res/values-es-rUS/strings.xml +39 -0
  980. data/vendor/android/support/v7/appcompat/res/values-es/strings.xml +39 -0
  981. data/vendor/android/support/v7/appcompat/res/values-et-rEE/strings.xml +39 -0
  982. data/vendor/android/support/v7/appcompat/res/values-eu-rES/strings.xml +39 -0
  983. data/vendor/android/support/v7/appcompat/res/values-fa/strings.xml +39 -0
  984. data/vendor/android/support/v7/appcompat/res/values-fi/strings.xml +39 -0
  985. data/vendor/android/support/v7/appcompat/res/values-fr-rCA/strings.xml +39 -0
  986. data/vendor/android/support/v7/appcompat/res/values-fr/strings.xml +39 -0
  987. data/vendor/android/support/v7/appcompat/res/values-gl-rES/strings.xml +39 -0
  988. data/vendor/android/support/v7/appcompat/res/values-gu-rIN/strings.xml +39 -0
  989. data/vendor/android/support/v7/appcompat/res/values-h320dp/bools.xml +19 -0
  990. data/vendor/android/support/v7/appcompat/res/values-h720dp/dimens.xml +20 -0
  991. data/vendor/android/support/v7/appcompat/res/values-hdpi/styles_base.xml +23 -0
  992. data/vendor/android/support/v7/appcompat/res/values-hi/strings.xml +39 -0
  993. data/vendor/android/support/v7/appcompat/res/values-hr/strings.xml +39 -0
  994. data/vendor/android/support/v7/appcompat/res/values-hu/strings.xml +39 -0
  995. data/vendor/android/support/v7/appcompat/res/values-hy-rAM/strings.xml +39 -0
  996. data/vendor/android/support/v7/appcompat/res/values-in/strings.xml +39 -0
  997. data/vendor/android/support/v7/appcompat/res/values-is-rIS/strings.xml +39 -0
  998. data/vendor/android/support/v7/appcompat/res/values-it/strings.xml +39 -0
  999. data/vendor/android/support/v7/appcompat/res/values-iw/strings.xml +39 -0
  1000. data/vendor/android/support/v7/appcompat/res/values-ja/strings.xml +39 -0
  1001. data/vendor/android/support/v7/appcompat/res/values-ka-rGE/strings.xml +39 -0
  1002. data/vendor/android/support/v7/appcompat/res/values-kk-rKZ/strings.xml +39 -0
  1003. data/vendor/android/support/v7/appcompat/res/values-km-rKH/strings.xml +39 -0
  1004. data/vendor/android/support/v7/appcompat/res/values-kn-rIN/strings.xml +39 -0
  1005. data/vendor/android/support/v7/appcompat/res/values-ko/strings.xml +39 -0
  1006. data/vendor/android/support/v7/appcompat/res/values-ky-rKG/strings.xml +39 -0
  1007. data/vendor/android/support/v7/appcompat/res/values-land/bools.xml +19 -0
  1008. data/vendor/android/support/v7/appcompat/res/values-land/config.xml +18 -0
  1009. data/vendor/android/support/v7/appcompat/res/values-land/dimens.xml +21 -0
  1010. data/vendor/android/support/v7/appcompat/res/values-land/dimens_material.xml +25 -0
  1011. data/vendor/android/support/v7/appcompat/res/values-large/bools.xml +19 -0
  1012. data/vendor/android/support/v7/appcompat/res/values-large/config.xml +30 -0
  1013. data/vendor/android/support/v7/appcompat/res/values-large/dimens.xml +33 -0
  1014. data/vendor/android/support/v7/appcompat/res/values-large/themes_base.xml +25 -0
  1015. data/vendor/android/support/v7/appcompat/res/values-ldltr-v21/styles_base.xml +28 -0
  1016. data/vendor/android/support/v7/appcompat/res/values-ldrtl-v23/styles_base.xml +22 -0
  1017. data/vendor/android/support/v7/appcompat/res/values-lo-rLA/strings.xml +39 -0
  1018. data/vendor/android/support/v7/appcompat/res/values-lt/strings.xml +39 -0
  1019. data/vendor/android/support/v7/appcompat/res/values-lv/strings.xml +39 -0
  1020. data/vendor/android/support/v7/appcompat/res/values-mk-rMK/strings.xml +43 -0
  1021. data/vendor/android/support/v7/appcompat/res/values-ml-rIN/strings.xml +39 -0
  1022. data/vendor/android/support/v7/appcompat/res/values-mn-rMN/strings.xml +39 -0
  1023. data/vendor/android/support/v7/appcompat/res/values-mr-rIN/strings.xml +39 -0
  1024. data/vendor/android/support/v7/appcompat/res/values-ms-rMY/strings.xml +39 -0
  1025. data/vendor/android/support/v7/appcompat/res/values-my-rMM/strings.xml +39 -0
  1026. data/vendor/android/support/v7/appcompat/res/values-nb/strings.xml +39 -0
  1027. data/vendor/android/support/v7/appcompat/res/values-ne-rNP/strings.xml +39 -0
  1028. data/vendor/android/support/v7/appcompat/res/values-nl/strings.xml +39 -0
  1029. data/vendor/android/support/v7/appcompat/res/values-pa-rIN/strings.xml +39 -0
  1030. data/vendor/android/support/v7/appcompat/res/values-pl/strings.xml +39 -0
  1031. data/vendor/android/support/v7/appcompat/res/values-port/bools.xml +21 -0
  1032. data/vendor/android/support/v7/appcompat/res/values-pt-rBR/strings.xml +39 -0
  1033. data/vendor/android/support/v7/appcompat/res/values-pt-rPT/strings.xml +39 -0
  1034. data/vendor/android/support/v7/appcompat/res/values-pt/strings.xml +39 -0
  1035. data/vendor/android/support/v7/appcompat/res/values-ro/strings.xml +39 -0
  1036. data/vendor/android/support/v7/appcompat/res/values-ru/strings.xml +39 -0
  1037. data/vendor/android/support/v7/appcompat/res/values-si-rLK/strings.xml +39 -0
  1038. data/vendor/android/support/v7/appcompat/res/values-sk/strings.xml +39 -0
  1039. data/vendor/android/support/v7/appcompat/res/values-sl/strings.xml +39 -0
  1040. data/vendor/android/support/v7/appcompat/res/values-sq-rAL/strings.xml +39 -0
  1041. data/vendor/android/support/v7/appcompat/res/values-sr/strings.xml +39 -0
  1042. data/vendor/android/support/v7/appcompat/res/values-sv/strings.xml +39 -0
  1043. data/vendor/android/support/v7/appcompat/res/values-sw/strings.xml +39 -0
  1044. data/vendor/android/support/v7/appcompat/res/values-sw600dp/config.xml +25 -0
  1045. data/vendor/android/support/v7/appcompat/res/values-sw600dp/dimens.xml +37 -0
  1046. data/vendor/android/support/v7/appcompat/res/values-ta-rIN/strings.xml +39 -0
  1047. data/vendor/android/support/v7/appcompat/res/values-te-rIN/strings.xml +39 -0
  1048. data/vendor/android/support/v7/appcompat/res/values-th/strings.xml +39 -0
  1049. data/vendor/android/support/v7/appcompat/res/values-tl/strings.xml +39 -0
  1050. data/vendor/android/support/v7/appcompat/res/values-tr/strings.xml +39 -0
  1051. data/vendor/android/support/v7/appcompat/res/values-uk/strings.xml +39 -0
  1052. data/vendor/android/support/v7/appcompat/res/values-ur-rPK/strings.xml +39 -0
  1053. data/vendor/android/support/v7/appcompat/res/values-uz-rUZ/strings.xml +41 -0
  1054. data/vendor/android/support/v7/appcompat/res/values-v11/styles_base.xml +36 -0
  1055. data/vendor/android/support/v7/appcompat/res/values-v11/styles_base_text.xml +64 -0
  1056. data/vendor/android/support/v7/appcompat/res/values-v11/themes_base.xml +149 -0
  1057. data/vendor/android/support/v7/appcompat/res/values-v12/styles_base.xml +31 -0
  1058. data/vendor/android/support/v7/appcompat/res/values-v14/styles.xml +33 -0
  1059. data/vendor/android/support/v7/appcompat/res/values-v14/styles_base_text.xml +26 -0
  1060. data/vendor/android/support/v7/appcompat/res/values-v14/themes_base.xml +36 -0
  1061. data/vendor/android/support/v7/appcompat/res/values-v17/styles_rtl.xml +81 -0
  1062. data/vendor/android/support/v7/appcompat/res/values-v18/dimens.xml +22 -0
  1063. data/vendor/android/support/v7/appcompat/res/values-v21/styles_base.xml +211 -0
  1064. data/vendor/android/support/v7/appcompat/res/values-v21/styles_base_text.xml +66 -0
  1065. data/vendor/android/support/v7/appcompat/res/values-v21/themes_base.xml +161 -0
  1066. data/vendor/android/support/v7/appcompat/res/values-v22/themes_base.xml +31 -0
  1067. data/vendor/android/support/v7/appcompat/res/values-v23/styles_base.xml +22 -0
  1068. data/vendor/android/support/v7/appcompat/res/values-v23/styles_base_text.xml +21 -0
  1069. data/vendor/android/support/v7/appcompat/res/values-v23/themes_base.xml +43 -0
  1070. data/vendor/android/support/v7/appcompat/res/values-vi/strings.xml +39 -0
  1071. data/vendor/android/support/v7/appcompat/res/values-w360dp/dimens.xml +22 -0
  1072. data/vendor/android/support/v7/appcompat/res/values-w480dp/bools.xml +18 -0
  1073. data/vendor/android/support/v7/appcompat/res/values-w480dp/config.xml +18 -0
  1074. data/vendor/android/support/v7/appcompat/res/values-w500dp/dimens.xml +22 -0
  1075. data/vendor/android/support/v7/appcompat/res/values-w600dp/dimens.xml +25 -0
  1076. data/vendor/android/support/v7/appcompat/res/values-w720dp/bools.xml +19 -0
  1077. data/vendor/android/support/v7/appcompat/res/values-xlarge-land/dimens.xml +22 -0
  1078. data/vendor/android/support/v7/appcompat/res/values-xlarge/bools.xml +19 -0
  1079. data/vendor/android/support/v7/appcompat/res/values-xlarge/dimens.xml +35 -0
  1080. data/vendor/android/support/v7/appcompat/res/values-zh-rCN/strings.xml +39 -0
  1081. data/vendor/android/support/v7/appcompat/res/values-zh-rHK/strings.xml +39 -0
  1082. data/vendor/android/support/v7/appcompat/res/values-zh-rTW/strings.xml +39 -0
  1083. data/vendor/android/support/v7/appcompat/res/values-zu/strings.xml +39 -0
  1084. data/vendor/android/support/v7/appcompat/res/values/attrs.xml +962 -0
  1085. data/vendor/android/support/v7/appcompat/res/values/bools.xml +28 -0
  1086. data/vendor/android/support/v7/appcompat/res/values/colors.xml +24 -0
  1087. data/vendor/android/support/v7/appcompat/res/values/colors_material.xml +117 -0
  1088. data/vendor/android/support/v7/appcompat/res/values/config.xml +48 -0
  1089. data/vendor/android/support/v7/appcompat/res/values/dimens.xml +111 -0
  1090. data/vendor/android/support/v7/appcompat/res/values/dimens_material.xml +74 -0
  1091. data/vendor/android/support/v7/appcompat/res/values/ids.xml +26 -0
  1092. data/vendor/android/support/v7/appcompat/res/values/strings.xml +76 -0
  1093. data/vendor/android/support/v7/appcompat/res/values/styles.xml +336 -0
  1094. data/vendor/android/support/v7/appcompat/res/values/styles_base.xml +498 -0
  1095. data/vendor/android/support/v7/appcompat/res/values/styles_base_text.xml +142 -0
  1096. data/vendor/android/support/v7/appcompat/res/values/styles_rtl.xml +79 -0
  1097. data/vendor/android/support/v7/appcompat/res/values/themes.xml +95 -0
  1098. data/vendor/android/support/v7/appcompat/res/values/themes_base.xml +626 -0
  1099. metadata +1144 -0
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources>
18
+ <!-- The maximum number of action buttons that should be permitted within
19
+ an action bar/action mode. This will be used to determine how many
20
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
21
+ <integer name="abc_max_action_buttons">4</integer>
22
+ </resources>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources>
18
+ <!-- The maximum number of action buttons that should be permitted within
19
+ an action bar/action mode. This will be used to determine how many
20
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
21
+ <integer name="abc_max_action_buttons">5</integer>
22
+
23
+ <!-- Minimum width of the search view text entry area. -->
24
+ <dimen name="abc_search_view_text_min_width">192dip</dimen>
25
+ </resources>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources>
18
+ <bool name="abc_action_bar_expanded_action_views_exclusive">false</bool>
19
+ </resources>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources>
18
+
19
+ <!-- Minimum width of the search view text entry area. -->
20
+ <dimen name="abc_search_view_text_min_width">256dip</dimen>
21
+
22
+ </resources>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources>
18
+ <bool name="abc_action_bar_expanded_action_views_exclusive">false</bool>
19
+ </resources>
@@ -0,0 +1,35 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources>
18
+
19
+ <!-- The maximum number of action buttons that should be permitted within
20
+ an action bar/action mode. This will be used to determine how many
21
+ showAsAction="ifRoom" items can fit. "always" items can override this. -->
22
+ <integer name="abc_max_action_buttons">5</integer>
23
+
24
+ <!-- Minimum width of the search view text entry area. -->
25
+ <dimen name="abc_search_view_text_min_width">192dip</dimen>
26
+
27
+ <item type="dimen" name="abc_dialog_fixed_width_major">50%</item>
28
+ <item type="dimen" name="abc_dialog_fixed_width_minor">70%</item>
29
+ <item type="dimen" name="abc_dialog_fixed_height_major">60%</item>
30
+ <item type="dimen" name="abc_dialog_fixed_height_minor">90%</item>
31
+
32
+ <item type="dimen" name="abc_dialog_min_width_major">45%</item>
33
+ <item type="dimen" name="abc_dialog_min_width_minor">72%</item>
34
+
35
+ </resources>
@@ -0,0 +1,39 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
18
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
19
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"完成"</string>
20
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"转到主屏幕"</string>
21
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"转到上一层级"</string>
22
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"更多选项"</string>
23
+ <string name="abc_toolbar_collapse_description" msgid="1603543279005712093">"收起"</string>
24
+ <string name="abc_action_bar_home_description_format" msgid="1397052879051804371">"%1$s:%2$s"</string>
25
+ <string name="abc_action_bar_home_subtitle_description_format" msgid="6623331958280229229">"%1$s - %2$s:%3$s"</string>
26
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"搜索"</string>
27
+ <string name="abc_search_hint" msgid="7723749260725869598">"搜索…"</string>
28
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"搜索查询"</string>
29
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"清除查询"</string>
30
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"提交查询"</string>
31
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"语音搜索"</string>
32
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"选择应用"</string>
33
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"查看全部"</string>
34
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"通过%s分享"</string>
35
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"分享方式"</string>
36
+ <string name="status_bar_notification_info_overflow" msgid="2869576371154716097">"999+"</string>
37
+ <string name="abc_capital_on" msgid="3405795526292276155">"开启"</string>
38
+ <string name="abc_capital_off" msgid="121134116657445385">"关闭"</string>
39
+ </resources>
@@ -0,0 +1,39 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
18
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
19
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"完成"</string>
20
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"瀏覽主頁"</string>
21
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"向上瀏覽"</string>
22
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"更多選項"</string>
23
+ <string name="abc_toolbar_collapse_description" msgid="1603543279005712093">"收合"</string>
24
+ <string name="abc_action_bar_home_description_format" msgid="1397052879051804371">"%1$s:%2$s"</string>
25
+ <string name="abc_action_bar_home_subtitle_description_format" msgid="6623331958280229229">"%1$s (%2$s):%3$s"</string>
26
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"搜尋"</string>
27
+ <string name="abc_search_hint" msgid="7723749260725869598">"搜尋…"</string>
28
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"搜尋查詢"</string>
29
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"清除查詢"</string>
30
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"提交查詢"</string>
31
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"語音搜尋"</string>
32
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"選擇應用程式"</string>
33
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"顯示全部"</string>
34
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"與「%s」分享"</string>
35
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"分享對象"</string>
36
+ <string name="status_bar_notification_info_overflow" msgid="2869576371154716097">"999 +"</string>
37
+ <string name="abc_capital_on" msgid="3405795526292276155">"開啟"</string>
38
+ <string name="abc_capital_off" msgid="121134116657445385">"關閉"</string>
39
+ </resources>
@@ -0,0 +1,39 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
18
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
19
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"完成"</string>
20
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"瀏覽首頁"</string>
21
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"向上瀏覽"</string>
22
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"更多選項"</string>
23
+ <string name="abc_toolbar_collapse_description" msgid="1603543279005712093">"收合"</string>
24
+ <string name="abc_action_bar_home_description_format" msgid="1397052879051804371">"%1$s:%2$s"</string>
25
+ <string name="abc_action_bar_home_subtitle_description_format" msgid="6623331958280229229">"%1$s - %2$s:%3$s"</string>
26
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"搜尋"</string>
27
+ <string name="abc_search_hint" msgid="7723749260725869598">"搜尋…"</string>
28
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"搜尋查詢"</string>
29
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"清除查詢"</string>
30
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"提交查詢"</string>
31
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"語音搜尋"</string>
32
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"選擇應用程式"</string>
33
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"查看全部"</string>
34
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"與「%s」分享"</string>
35
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"選擇分享對象"</string>
36
+ <string name="status_bar_notification_info_overflow" msgid="2869576371154716097">"999+"</string>
37
+ <string name="abc_capital_on" msgid="3405795526292276155">"開啟"</string>
38
+ <string name="abc_capital_off" msgid="121134116657445385">"關閉"</string>
39
+ </resources>
@@ -0,0 +1,39 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
18
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
19
+ <string name="abc_action_mode_done" msgid="4076576682505996667">"Kwenziwe"</string>
20
+ <string name="abc_action_bar_home_description" msgid="4600421777120114993">"Zulazulela ekhaya"</string>
21
+ <string name="abc_action_bar_up_description" msgid="1594238315039666878">"Zulazulela phezulu"</string>
22
+ <string name="abc_action_menu_overflow_description" msgid="3588849162933574182">"Izinketho eziningi"</string>
23
+ <string name="abc_toolbar_collapse_description" msgid="1603543279005712093">"Goqa"</string>
24
+ <string name="abc_action_bar_home_description_format" msgid="1397052879051804371">"%1$s, %2$s"</string>
25
+ <string name="abc_action_bar_home_subtitle_description_format" msgid="6623331958280229229">"%1$s, %2$s, %3$s"</string>
26
+ <string name="abc_searchview_description_search" msgid="8264924765203268293">"Sesha"</string>
27
+ <string name="abc_search_hint" msgid="7723749260725869598">"Iyasesha..."</string>
28
+ <string name="abc_searchview_description_query" msgid="2550479030709304392">"Umbuzo wosesho"</string>
29
+ <string name="abc_searchview_description_clear" msgid="3691816814315814921">"Sula inkinga"</string>
30
+ <string name="abc_searchview_description_submit" msgid="8928215447528550784">"Hambisa umbuzo"</string>
31
+ <string name="abc_searchview_description_voice" msgid="893419373245838918">"Ukusesha ngezwi"</string>
32
+ <string name="abc_activitychooserview_choose_application" msgid="2031811694353399454">"Khetha uhlelo lokusebenza"</string>
33
+ <string name="abc_activity_chooser_view_see_all" msgid="7468859129482906941">"Buka konke"</string>
34
+ <string name="abc_shareactionprovider_share_with_application" msgid="7165123711973476752">"Yabelana no-%s"</string>
35
+ <string name="abc_shareactionprovider_share_with" msgid="3421042268587513524">"Yabelana no-"</string>
36
+ <string name="status_bar_notification_info_overflow" msgid="2869576371154716097">"999+"</string>
37
+ <string name="abc_capital_on" msgid="3405795526292276155">"VULIWE"</string>
38
+ <string name="abc_capital_off" msgid="121134116657445385">"VALIWE"</string>
39
+ </resources>
@@ -0,0 +1,962 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2012 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+
17
+ <resources>
18
+ <!-- Many app-specific attributes are declared in this file.
19
+ Unless otherwise specified, they are intended to be set within
20
+ the context of a theme declaration.
21
+
22
+ Each cluster of attributes below states whether it is meant to
23
+ be set by the app and read by the system, or set by the system and
24
+ read by the app. -->
25
+ <eat-comment/>
26
+
27
+
28
+ <attr name="title" format="string"/>
29
+ <attr name="height" format="dimension"/>
30
+ <!-- Specifies whether the theme is light, otherwise it is dark. -->
31
+ <attr name="isLightTheme" format="boolean" />
32
+
33
+ <!-- These are the standard attributes that make up a complete theme. -->
34
+ <declare-styleable name="Theme">
35
+
36
+ <!-- ============= -->
37
+ <!-- Window styles -->
38
+ <!-- ============= -->
39
+ <eat-comment />
40
+
41
+ <!-- Flag indicating whether this window should have an Action Bar
42
+ in place of the usual title bar. -->
43
+ <attr name="windowActionBar" format="boolean" />
44
+
45
+ <!-- Flag indicating whether there should be no title on this window. -->
46
+ <attr name="windowNoTitle" format="boolean" />
47
+
48
+ <!-- Flag indicating whether this window's Action Bar should overlay
49
+ application content. Does nothing if the window would not
50
+ have an Action Bar. -->
51
+ <attr name="windowActionBarOverlay" format="boolean" />
52
+
53
+ <!-- Flag indicating whether action modes should overlay window content
54
+ when there is not reserved space for their UI (such as an Action Bar). -->
55
+ <attr name="windowActionModeOverlay" format="boolean" />
56
+
57
+ <!-- A fixed width for the window along the major axis of the screen,
58
+ that is, when in landscape. Can be either an absolute dimension
59
+ or a fraction of the screen size in that dimension. -->
60
+ <attr name="windowFixedWidthMajor" format="dimension|fraction" />
61
+ <!-- A fixed height for the window along the minor axis of the screen,
62
+ that is, when in landscape. Can be either an absolute dimension
63
+ or a fraction of the screen size in that dimension. -->
64
+ <attr name="windowFixedHeightMinor" format="dimension|fraction" />
65
+
66
+ <!-- A fixed width for the window along the minor axis of the screen,
67
+ that is, when in portrait. Can be either an absolute dimension
68
+ or a fraction of the screen size in that dimension. -->
69
+ <attr name="windowFixedWidthMinor" format="dimension|fraction" />
70
+ <!-- A fixed height for the window along the major axis of the screen,
71
+ that is, when in portrait. Can be either an absolute dimension
72
+ or a fraction of the screen size in that dimension. -->
73
+ <attr name="windowFixedHeightMajor" format="dimension|fraction" />
74
+
75
+ <!-- The minimum width the window is allowed to be, along the major
76
+ axis of the screen. That is, when in landscape. Can be either
77
+ an absolute dimension or a fraction of the screen size in that
78
+ dimension. -->
79
+ <attr name="windowMinWidthMajor" format="dimension|fraction" />
80
+ <!-- The minimum width the window is allowed to be, along the minor
81
+ axis of the screen. That is, when in portrait. Can be either
82
+ an absolute dimension or a fraction of the screen size in that
83
+ dimension. -->
84
+ <attr name="windowMinWidthMinor" format="dimension|fraction" />
85
+
86
+ <attr name="android:windowIsFloating" />
87
+ <attr name="android:windowAnimationStyle" />
88
+
89
+ <!-- =================== -->
90
+ <!-- Action bar styles -->
91
+ <!-- =================== -->
92
+ <eat-comment />
93
+ <!-- Default style for tabs within an action bar -->
94
+ <attr name="actionBarTabStyle" format="reference" />
95
+ <attr name="actionBarTabBarStyle" format="reference" />
96
+ <attr name="actionBarTabTextStyle" format="reference" />
97
+ <attr name="actionOverflowButtonStyle" format="reference" />
98
+ <attr name="actionOverflowMenuStyle" format="reference" />
99
+ <!-- Reference to a theme that should be used to inflate popups
100
+ shown by widgets in the action bar. -->
101
+ <attr name="actionBarPopupTheme" format="reference" />
102
+ <!-- Reference to a style for the Action Bar -->
103
+ <attr name="actionBarStyle" format="reference" />
104
+ <!-- Reference to a style for the split Action Bar. This style
105
+ controls the split component that holds the menu/action
106
+ buttons. actionBarStyle is still used for the primary
107
+ bar. -->
108
+ <attr name="actionBarSplitStyle" format="reference" />
109
+ <!-- Reference to a theme that should be used to inflate the
110
+ action bar. This will be inherited by any widget inflated
111
+ into the action bar. -->
112
+ <attr name="actionBarTheme" format="reference" />
113
+ <!-- Reference to a theme that should be used to inflate widgets
114
+ and layouts destined for the action bar. Most of the time
115
+ this will be a reference to the current theme, but when
116
+ the action bar has a significantly different contrast
117
+ profile than the rest of the activity the difference
118
+ can become important. If this is set to @null the current
119
+ theme will be used.-->
120
+ <attr name="actionBarWidgetTheme" format="reference" />
121
+ <!-- Size of the Action Bar, including the contextual
122
+ bar used to present Action Modes. -->
123
+ <attr name="actionBarSize" format="dimension" >
124
+ <enum name="wrap_content" value="0" />
125
+ </attr>
126
+ <!-- Custom divider drawable to use for elements in the action bar. -->
127
+ <attr name="actionBarDivider" format="reference" />
128
+ <!-- Custom item state list drawable background for action bar items. -->
129
+ <attr name="actionBarItemBackground" format="reference" />
130
+ <!-- TextAppearance style that will be applied to text that
131
+ appears within action menu items. -->
132
+ <attr name="actionMenuTextAppearance" format="reference" />
133
+ <!-- Color for text that appears within action menu items. -->
134
+ <!-- Color for text that appears within action menu items. -->
135
+ <attr name="actionMenuTextColor" format="color|reference"/>
136
+
137
+
138
+ <!-- =================== -->
139
+ <!-- Action mode styles -->
140
+ <!-- =================== -->
141
+ <eat-comment/>
142
+ <attr name="actionModeStyle" format="reference"/>
143
+ <attr name="actionModeCloseButtonStyle" format="reference"/>
144
+ <!-- Background drawable to use for action mode UI -->
145
+ <attr name="actionModeBackground" format="reference"/>
146
+ <!-- Background drawable to use for action mode UI in the lower split bar -->
147
+ <attr name="actionModeSplitBackground" format="reference"/>
148
+ <!-- Drawable to use for the close action mode button -->
149
+ <attr name="actionModeCloseDrawable" format="reference"/>
150
+ <!-- Drawable to use for the Cut action button in Contextual Action Bar -->
151
+ <attr name="actionModeCutDrawable" format="reference"/>
152
+ <!-- Drawable to use for the Copy action button in Contextual Action Bar -->
153
+ <attr name="actionModeCopyDrawable" format="reference"/>
154
+ <!-- Drawable to use for the Paste action button in Contextual Action Bar -->
155
+ <attr name="actionModePasteDrawable" format="reference"/>
156
+ <!-- Drawable to use for the Select all action button in Contextual Action Bar -->
157
+ <attr name="actionModeSelectAllDrawable" format="reference"/>
158
+ <!-- Drawable to use for the Share action button in WebView selection action modes -->
159
+ <attr name="actionModeShareDrawable" format="reference"/>
160
+ <!-- Drawable to use for the Find action button in WebView selection action modes -->
161
+ <attr name="actionModeFindDrawable" format="reference"/>
162
+ <!-- Drawable to use for the Web Search action button in WebView selection action modes -->
163
+ <attr name="actionModeWebSearchDrawable" format="reference"/>
164
+
165
+ <!-- PopupWindow style to use for action modes when showing as a window overlay. -->
166
+ <attr name="actionModePopupWindowStyle" format="reference"/>
167
+
168
+
169
+ <!-- =================== -->
170
+ <!-- Text styles -->
171
+ <!-- =================== -->
172
+ <eat-comment />
173
+ <!-- Text color, typeface, size, and style for the text inside of a popup menu. -->
174
+ <attr name="textAppearanceLargePopupMenu" format="reference"/>
175
+ <!-- Text color, typeface, size, and style for small text inside of a popup menu. -->
176
+ <attr name="textAppearanceSmallPopupMenu" format="reference"/>
177
+
178
+
179
+ <!-- =================== -->
180
+ <!-- Dialog styles -->
181
+ <!-- =================== -->
182
+ <eat-comment />
183
+
184
+ <!-- Theme to use for dialogs spawned from this theme. -->
185
+ <attr name="dialogTheme" format="reference" />
186
+ <!-- Preferred padding for dialog content. -->
187
+ <attr name="dialogPreferredPadding" format="dimension" />
188
+ <!-- The list divider used in alert dialogs. -->
189
+ <attr name="listDividerAlertDialog" format="reference" />
190
+
191
+ <!-- =================== -->
192
+ <!-- Other widget styles -->
193
+ <!-- =================== -->
194
+ <eat-comment />
195
+
196
+ <!-- Default ActionBar dropdown style. -->
197
+ <attr name="actionDropDownStyle" format="reference"/>
198
+ <!-- The preferred item height for dropdown lists. -->
199
+ <attr name="dropdownListPreferredItemHeight" format="dimension"/>
200
+ <!-- Default Spinner style. -->
201
+ <attr name="spinnerDropDownItemStyle" format="reference" />
202
+ <!-- Specifies a drawable to use for the 'home as up' indicator. -->
203
+ <attr name="homeAsUpIndicator" format="reference"/>
204
+
205
+ <!-- Default action button style. -->
206
+ <attr name="actionButtonStyle" format="reference"/>
207
+
208
+ <!-- Style for button bars -->
209
+ <attr name="buttonBarStyle" format="reference"/>
210
+ <!-- Style for buttons within button bars -->
211
+ <attr name="buttonBarButtonStyle" format="reference"/>
212
+ <!-- A style that may be applied to buttons or other selectable items
213
+ that should react to pressed and focus states, but that do not
214
+ have a clear visual border along the edges. -->
215
+ <attr name="selectableItemBackground" format="reference"/>
216
+ <!-- Background drawable for borderless standalone items that need focus/pressed states. -->
217
+ <attr name="selectableItemBackgroundBorderless" format="reference" />
218
+ <!-- Style for buttons without an explicit border, often used in groups. -->
219
+ <attr name="borderlessButtonStyle" format="reference" />
220
+ <!-- A drawable that may be used as a vertical divider between visual elements. -->
221
+ <attr name="dividerVertical" format="reference"/>
222
+ <!-- A drawable that may be used as a horizontal divider between visual elements. -->
223
+ <attr name="dividerHorizontal" format="reference"/>
224
+ <!-- Default ActivityChooserView style. -->
225
+ <attr name="activityChooserViewStyle" format="reference" />
226
+
227
+ <!-- Default Toolbar style. -->
228
+ <attr name="toolbarStyle" format="reference" />
229
+ <!-- Default Toolar NavigationButtonStyle -->
230
+ <attr name="toolbarNavigationButtonStyle" format="reference" />
231
+
232
+ <!-- Default PopupMenu style. -->
233
+ <attr name="popupMenuStyle" format="reference"/>
234
+ <!-- Default PopupWindow style. -->
235
+ <attr name="popupWindowStyle" format="reference" />
236
+
237
+ <!-- EditText text foreground color. -->
238
+ <attr name="editTextColor" format="reference|color" />
239
+ <!-- EditText background drawable. -->
240
+ <attr name="editTextBackground" format="reference" />
241
+
242
+ <!-- ImageButton background drawable. -->
243
+ <attr name="imageButtonStyle" format="reference" />
244
+
245
+ <!-- ============================ -->
246
+ <!-- SearchView styles and assets -->
247
+ <!-- ============================ -->
248
+ <eat-comment />
249
+ <!-- Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. -->
250
+ <attr name="textAppearanceSearchResultTitle" format="reference" />
251
+ <!-- Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. -->
252
+ <attr name="textAppearanceSearchResultSubtitle" format="reference" />
253
+ <!-- Text color for urls in search suggestions, used by things like global search -->
254
+ <attr name="textColorSearchUrl" format="reference|color" />
255
+ <!-- Style for the search query widget. -->
256
+ <attr name="searchViewStyle" format="reference" />
257
+
258
+ <!-- =========== -->
259
+ <!-- List styles -->
260
+ <!-- =========== -->
261
+ <eat-comment />
262
+
263
+ <!-- The preferred list item height. -->
264
+ <attr name="listPreferredItemHeight" format="dimension"/>
265
+ <!-- A smaller, sleeker list item height. -->
266
+ <attr name="listPreferredItemHeightSmall" format="dimension"/>
267
+ <!-- A larger, more robust list item height. -->
268
+ <attr name="listPreferredItemHeightLarge" format="dimension"/>
269
+
270
+ <!-- The preferred padding along the left edge of list items. -->
271
+ <attr name="listPreferredItemPaddingLeft" format="dimension"/>
272
+ <!-- The preferred padding along the right edge of list items. -->
273
+ <attr name="listPreferredItemPaddingRight" format="dimension"/>
274
+
275
+ <!-- ListPopupWindow compatibility -->
276
+ <attr name="dropDownListViewStyle" format="reference"/>
277
+ <attr name="listPopupWindowStyle" format="reference"/>
278
+
279
+ <!-- The preferred TextAppearance for the primary text of list items. -->
280
+ <attr name="textAppearanceListItem" format="reference"/>
281
+ <!-- The preferred TextAppearance for the primary text of small list items. -->
282
+ <attr name="textAppearanceListItemSmall" format="reference"/>
283
+
284
+
285
+ <!-- ============ -->
286
+ <!-- Panel styles -->
287
+ <!-- ============ -->
288
+ <eat-comment />
289
+
290
+ <!-- The background of a panel when it is inset from the left and right edges of the screen. -->
291
+ <attr name="panelBackground" format="reference" />
292
+ <!-- Default Panel Menu width. -->
293
+ <attr name="panelMenuListWidth" format="dimension" />
294
+ <!-- Default Panel Menu style. -->
295
+ <attr name="panelMenuListTheme" format="reference" />
296
+ <!-- Drawable used as a background for selected list items. -->
297
+ <attr name="listChoiceBackgroundIndicator" format="reference" />
298
+
299
+ <!-- ============= -->
300
+ <!-- Color palette -->
301
+ <!-- ============= -->
302
+ <eat-comment />
303
+
304
+ <!-- The primary branding color for the app. By default, this is the color applied to the
305
+ action bar background. -->
306
+ <attr name="colorPrimary" format="color" />
307
+
308
+ <!-- Dark variant of the primary branding color. By default, this is the color applied to
309
+ the status bar (via statusBarColor) and navigation bar (via navigationBarColor). -->
310
+ <attr name="colorPrimaryDark" format="color" />
311
+
312
+ <!-- Bright complement to the primary branding color. By default, this is the color applied
313
+ to framework controls (via colorControlActivated). -->
314
+ <attr name="colorAccent" format="color" />
315
+
316
+ <!-- The color applied to framework controls in their normal state. -->
317
+ <attr name="colorControlNormal" format="color" />
318
+
319
+ <!-- The color applied to framework controls in their activated (ex. checked) state. -->
320
+ <attr name="colorControlActivated" format="color" />
321
+
322
+ <!-- The color applied to framework control highlights (ex. ripples, list selectors). -->
323
+ <attr name="colorControlHighlight" format="color" />
324
+
325
+ <!-- The color applied to framework buttons in their normal state. -->
326
+ <attr name="colorButtonNormal" format="color" />
327
+
328
+ <!-- The color applied to framework switch thumbs in their normal state. -->
329
+ <attr name="colorSwitchThumbNormal" format="color" />
330
+
331
+ <!-- The background used by framework controls. -->
332
+ <attr name="controlBackground" format="reference" />
333
+
334
+ <!-- ============ -->
335
+ <!-- Alert Dialog styles -->
336
+ <!-- ============ -->
337
+ <eat-comment />
338
+ <attr name="alertDialogStyle" format="reference" />
339
+ <attr name="alertDialogButtonGroupStyle" format="reference" />
340
+ <attr name="alertDialogCenterButtons" format="boolean" />
341
+ <!-- Theme to use for alert dialogs spawned from this theme. -->
342
+ <attr name="alertDialogTheme" format="reference" />
343
+
344
+ <!-- Color of list item text in alert dialogs. -->
345
+ <attr name="textColorAlertDialogListItem" format="reference|color" />
346
+
347
+ <!-- Style for the "positive" buttons within button bars -->
348
+ <attr name="buttonBarPositiveButtonStyle" format="reference" />
349
+
350
+ <!-- Style for the "negative" buttons within button bars -->
351
+ <attr name="buttonBarNegativeButtonStyle" format="reference" />
352
+
353
+ <!-- Style for the "neutral" buttons within button bars -->
354
+ <attr name="buttonBarNeutralButtonStyle" format="reference" />
355
+
356
+ <!-- ===================== -->
357
+ <!-- Default widget styles -->
358
+ <!-- ===================== -->
359
+ <eat-comment />
360
+
361
+ <!-- Default AutoCompleteTextView style. -->
362
+ <attr name="autoCompleteTextViewStyle" format="reference" />
363
+ <!-- Normal Button style. -->
364
+ <attr name="buttonStyle" format="reference" />
365
+ <!-- Small Button style. -->
366
+ <attr name="buttonStyleSmall" format="reference" />
367
+ <!-- Default Checkbox style. -->
368
+ <attr name="checkboxStyle" format="reference" />
369
+ <!-- Default CheckedTextView style. -->
370
+ <attr name="checkedTextViewStyle" format="reference" />
371
+ <!-- Default EditText style. -->
372
+ <attr name="editTextStyle" format="reference" />
373
+ <!-- Default RadioButton style. -->
374
+ <attr name="radioButtonStyle" format="reference" />
375
+ <!-- Default RatingBar style. -->
376
+ <attr name="ratingBarStyle" format="reference" />
377
+ <!-- Default SeekBar style. -->
378
+ <attr name="seekBarStyle" format="reference" />
379
+ <!-- Default Spinner style. -->
380
+ <attr name="spinnerStyle" format="reference" />
381
+ <!-- Default style for the Switch widget. -->
382
+ <attr name="switchStyle" format="reference" />
383
+
384
+ </declare-styleable>
385
+
386
+
387
+ <!-- ============================================ -->
388
+
389
+ <!-- Attributes used to style the Action Bar.
390
+ These should be set on your theme; the default actionBarStyle will
391
+ propagate them to the correct elements as needed.
392
+
393
+ Please Note: when overriding attributes for an ActionBar style
394
+ you must specify each attribute twice: once with the "android:"
395
+ namespace prefix and once without. -->
396
+ <declare-styleable name="ActionBar">
397
+ <!-- The type of navigation to use. -->
398
+ <attr name="navigationMode">
399
+ <!-- Normal static title text -->
400
+ <enum name="normal" value="0"/>
401
+ <!-- The action bar will use a selection list for navigation. -->
402
+ <enum name="listMode" value="1"/>
403
+ <!-- The action bar will use a series of horizontal tabs for navigation. -->
404
+ <enum name="tabMode" value="2"/>
405
+ </attr>
406
+ <!-- Options affecting how the action bar is displayed. -->
407
+ <attr name="displayOptions">
408
+ <flag name="none" value="0" />
409
+ <flag name="useLogo" value="0x1"/>
410
+ <flag name="showHome" value="0x2"/>
411
+ <flag name="homeAsUp" value="0x4"/>
412
+ <flag name="showTitle" value="0x8"/>
413
+ <flag name="showCustom" value="0x10"/>
414
+ <flag name="disableHome" value="0x20"/>
415
+ </attr>
416
+ <!-- Specifies title text used for navigationMode="normal" -->
417
+ <attr name="title"/>
418
+ <!-- Specifies subtitle text used for navigationMode="normal" -->
419
+ <attr name="subtitle" format="string"/>
420
+ <!-- Specifies a style to use for title text. -->
421
+ <attr name="titleTextStyle" format="reference"/>
422
+ <!-- Specifies a style to use for subtitle text. -->
423
+ <attr name="subtitleTextStyle" format="reference"/>
424
+ <!-- Specifies the drawable used for the application icon. -->
425
+ <attr name="icon" format="reference"/>
426
+ <!-- Specifies the drawable used for the application logo. -->
427
+ <attr name="logo" format="reference"/>
428
+ <!-- Specifies the drawable used for item dividers. -->
429
+ <attr name="divider" format="reference"/>
430
+ <!-- Specifies a background drawable for the action bar. -->
431
+ <attr name="background" format="reference"/>
432
+ <!-- Specifies a background drawable for a second stacked row of the action bar. -->
433
+ <attr name="backgroundStacked" format="reference|color"/>
434
+ <!-- Specifies a background drawable for the bottom component of a split action bar. -->
435
+ <attr name="backgroundSplit" format="reference|color"/>
436
+ <!-- Specifies a layout for custom navigation. Overrides navigationMode. -->
437
+ <attr name="customNavigationLayout" format="reference"/>
438
+ <!-- Specifies a fixed height. -->
439
+ <attr name="height"/>
440
+ <!-- Specifies a layout to use for the "home" section of the action bar. -->
441
+ <attr name="homeLayout" format="reference"/>
442
+ <!-- Specifies a style resource to use for an embedded progress bar. -->
443
+ <attr name="progressBarStyle" format="reference"/>
444
+ <!-- Specifies a style resource to use for an indeterminate progress spinner. -->
445
+ <attr name="indeterminateProgressStyle" format="reference"/>
446
+ <!-- Specifies the horizontal padding on either end for an embedded progress bar. -->
447
+ <attr name="progressBarPadding" format="dimension"/>
448
+ <!-- Up navigation glyph -->
449
+ <attr name="homeAsUpIndicator" />
450
+ <!-- Specifies padding that should be applied to the left and right sides of
451
+ system-provided items in the bar. -->
452
+ <attr name="itemPadding" format="dimension"/>
453
+ <!-- Set true to hide the action bar on a vertical nested scroll of content. -->
454
+ <attr name="hideOnContentScroll" format="boolean"/>
455
+ <!-- Minimum inset for content views within a bar. Navigation buttons and
456
+ menu views are excepted. Only valid for some themes and configurations. -->
457
+ <attr name="contentInsetStart" format="dimension"/>
458
+ <!-- Minimum inset for content views within a bar. Navigation buttons and
459
+ menu views are excepted. Only valid for some themes and configurations. -->
460
+ <attr name="contentInsetEnd" format="dimension"/>
461
+ <!-- Minimum inset for content views within a bar. Navigation buttons and
462
+ menu views are excepted. Only valid for some themes and configurations. -->
463
+ <attr name="contentInsetLeft" format="dimension"/>
464
+ <!-- Minimum inset for content views within a bar. Navigation buttons and
465
+ menu views are excepted. Only valid for some themes and configurations. -->
466
+ <attr name="contentInsetRight" format="dimension"/>
467
+ <!-- Elevation for the action bar itself -->
468
+ <attr name="elevation" format="dimension" />
469
+ <!-- Reference to a theme that should be used to inflate popups
470
+ shown by widgets in the action bar. -->
471
+ <attr name="popupTheme" format="reference" />
472
+ </declare-styleable>
473
+
474
+ <!-- Valid LayoutParams for views placed in the action bar as custom views. -->
475
+ <declare-styleable name="ActionBarLayout">
476
+ <attr name="android:layout_gravity"/>
477
+ </declare-styleable>
478
+
479
+ <declare-styleable name="ActionMenuItemView">
480
+ <attr name="android:minWidth"/>
481
+ </declare-styleable>
482
+
483
+ <declare-styleable name="ActionMode">
484
+ <!-- Specifies a style to use for title text. -->
485
+ <attr name="titleTextStyle"/>
486
+ <!-- Specifies a style to use for subtitle text. -->
487
+ <attr name="subtitleTextStyle"/>
488
+ <!-- Specifies a background for the action mode bar. -->
489
+ <attr name="background"/>
490
+ <!-- Specifies a background for the split action mode bar. -->
491
+ <attr name="backgroundSplit"/>
492
+ <!-- Specifies a fixed height for the action mode bar. -->
493
+ <attr name="height"/>
494
+ <!-- Specifies a layout to use for the "close" item at the starting edge. -->
495
+ <attr name="closeItemLayout" format="reference" />
496
+ </declare-styleable>
497
+
498
+ <declare-styleable name="View">
499
+ <!-- Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. -->
500
+ <attr name="paddingStart" format="dimension"/>
501
+ <!-- Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. -->
502
+ <attr name="paddingEnd" format="dimension"/>
503
+ <!-- Boolean that controls whether a view can take focus. By default the user can not
504
+ move focus to a view; by setting this attribute to true the view is
505
+ allowed to take focus. This value does not impact the behavior of
506
+ directly calling {@link android.view.View#requestFocus}, which will
507
+ always request focus regardless of this view. It only impacts where
508
+ focus navigation will try to move focus. -->
509
+ <attr name="android:focusable" />
510
+ <!-- Deprecated. -->
511
+ <attr name="theme" format="reference" />
512
+ <!-- Specifies a theme override for a view. When a theme override is set, the
513
+ view will be inflated using a {@link android.content.Context} themed with
514
+ the specified resource. -->
515
+ <attr name="android:theme" />
516
+ </declare-styleable>
517
+
518
+ <declare-styleable name="ViewBackgroundHelper">
519
+ <attr name="android:background" />
520
+ <!-- Tint to apply to the background. -->
521
+ <attr name="backgroundTint" format="color" />
522
+
523
+ <!-- Blending mode used to apply the background tint. -->
524
+ <attr name="backgroundTintMode">
525
+ <!-- The tint is drawn on top of the drawable.
526
+ [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
527
+ <enum name="src_over" value="3" />
528
+ <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
529
+ color channels are thrown out. [Sa * Da, Sc * Da] -->
530
+ <enum name="src_in" value="5" />
531
+ <!-- The tint is drawn above the drawable, but with the drawable’s alpha
532
+ channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
533
+ <enum name="src_atop" value="9" />
534
+ <!-- Multiplies the color and alpha channels of the drawable with those of
535
+ the tint. [Sa * Da, Sc * Dc] -->
536
+ <enum name="multiply" value="14" />
537
+ <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
538
+ <enum name="screen" value="15" />
539
+ </attr>
540
+ </declare-styleable>
541
+
542
+ <declare-styleable name="MenuView">
543
+ <!-- Default appearance of menu item text. -->
544
+ <attr name="android:itemTextAppearance"/>
545
+ <!-- Default horizontal divider between rows of menu items. -->
546
+ <attr name="android:horizontalDivider"/>
547
+ <!-- Default vertical divider between menu items. -->
548
+ <attr name="android:verticalDivider"/>
549
+ <!-- Default background for the menu header. -->
550
+ <attr name="android:headerBackground"/>
551
+ <!-- Default background for each menu item. -->
552
+ <attr name="android:itemBackground"/>
553
+ <!-- Default animations for the menu. -->
554
+ <attr name="android:windowAnimationStyle"/>
555
+ <!-- Default disabled icon alpha for each menu item that shows an icon. -->
556
+ <attr name="android:itemIconDisabledAlpha"/>
557
+ <!-- Whether space should be reserved in layout when an icon is missing. -->
558
+ <attr name="preserveIconSpacing" format="boolean" />
559
+ </declare-styleable>
560
+ <declare-styleable name="ActionMenuView">
561
+ <!-- Size of padding on either end of a divider. -->
562
+ </declare-styleable>
563
+
564
+ <!-- Base attributes that are available to all groups. -->
565
+ <declare-styleable name="MenuGroup">
566
+
567
+ <!-- The ID of the group. -->
568
+ <attr name="android:id" />
569
+
570
+ <!-- The category applied to all items within this group.
571
+ (This will be or'ed with the orderInCategory attribute.) -->
572
+ <attr name="android:menuCategory" />
573
+
574
+ <!-- The order within the category applied to all items within this group.
575
+ (This will be or'ed with the category attribute.) -->
576
+ <attr name="android:orderInCategory" />
577
+
578
+ <!-- Whether the items are capable of displaying a check mark. -->
579
+ <attr name="android:checkableBehavior" />
580
+
581
+ <!-- Whether the items are shown/visible. -->
582
+ <attr name="android:visible" />
583
+
584
+ <!-- Whether the items are enabled. -->
585
+ <attr name="android:enabled" />
586
+
587
+ </declare-styleable>
588
+
589
+ <!-- Base attributes that are available to all Item objects. -->
590
+ <declare-styleable name="MenuItem">
591
+
592
+ <!-- The ID of the item. -->
593
+ <attr name="android:id" />
594
+
595
+ <!-- The category applied to the item.
596
+ (This will be or'ed with the orderInCategory attribute.) -->
597
+ <attr name="android:menuCategory" />
598
+
599
+ <!-- The order within the category applied to the item.
600
+ (This will be or'ed with the category attribute.) -->
601
+ <attr name="android:orderInCategory" />
602
+
603
+ <!-- The title associated with the item. -->
604
+ <attr name="android:title" />
605
+
606
+ <!-- The condensed title associated with the item. This is used in situations where the
607
+ normal title may be too long to be displayed. -->
608
+ <attr name="android:titleCondensed" />
609
+
610
+ <!-- The icon associated with this item. This icon will not always be shown, so
611
+ the title should be sufficient in describing this item. -->
612
+ <attr name="android:icon" />
613
+
614
+ <!-- The alphabetic shortcut key. This is the shortcut when using a keyboard
615
+ with alphabetic keys. -->
616
+ <attr name="android:alphabeticShortcut" />
617
+
618
+ <!-- The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
619
+ keyboard. -->
620
+ <attr name="android:numericShortcut" />
621
+
622
+ <!-- Whether the item is capable of displaying a check mark. -->
623
+ <attr name="android:checkable" />
624
+
625
+ <!-- Whether the item is checked. Note that you must first have enabled checking with
626
+ the checkable attribute or else the check mark will not appear. -->
627
+ <attr name="android:checked" />
628
+
629
+ <!-- Whether the item is shown/visible. -->
630
+ <attr name="android:visible" />
631
+
632
+ <!-- Whether the item is enabled. -->
633
+ <attr name="android:enabled" />
634
+
635
+ <!-- Name of a method on the Context used to inflate the menu that will be
636
+ called when the item is clicked. -->
637
+ <attr name="android:onClick" />
638
+
639
+ <!-- How this item should display in the Action Bar, if present. -->
640
+ <attr name="showAsAction">
641
+ <!-- Never show this item in an action bar, show it in the overflow menu instead.
642
+ Mutually exclusive with "ifRoom" and "always". -->
643
+ <flag name="never" value="0" />
644
+ <!-- Show this item in an action bar if there is room for it as determined
645
+ by the system. Favor this option over "always" where possible.
646
+ Mutually exclusive with "never" and "always". -->
647
+ <flag name="ifRoom" value="1" />
648
+ <!-- Always show this item in an actionbar, even if it would override
649
+ the system's limits of how much stuff to put there. This may make
650
+ your action bar look bad on some screens. In most cases you should
651
+ use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". -->
652
+ <flag name="always" value="2" />
653
+ <!-- When this item is shown as an action in the action bar, show a text
654
+ label with it even if it has an icon representation. -->
655
+ <flag name="withText" value="4" />
656
+ <!-- This item's action view collapses to a normal menu
657
+ item. When expanded, the action view takes over a
658
+ larger segment of its container. -->
659
+ <flag name="collapseActionView" value="8" />
660
+ </attr>
661
+
662
+ <!-- An optional layout to be used as an action view.
663
+ See {@link android.view.MenuItem#setActionView(android.view.View)}
664
+ for more info. -->
665
+ <attr name="actionLayout" format="reference" />
666
+
667
+ <!-- The name of an optional View class to instantiate and use as an
668
+ action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
669
+ for more info. -->
670
+ <attr name="actionViewClass" format="string" />
671
+
672
+ <!-- The name of an optional ActionProvider class to instantiate an action view
673
+ and perform operations such as default action for that menu item.
674
+ See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
675
+ for more info. -->
676
+ <attr name="actionProviderClass" format="string" />
677
+
678
+ </declare-styleable>
679
+
680
+ <declare-styleable name="Spinner">
681
+ <!-- The prompt to display when the spinner's dialog is shown. -->
682
+ <attr name="android:prompt" />
683
+ <!-- Theme to use for the drop-down or dialog popup window. -->
684
+ <attr name="popupTheme" />
685
+ <!-- Background drawable to use for the dropdown in spinnerMode="dropdown". -->
686
+ <attr name="android:popupBackground" />
687
+ <!-- Width of the dropdown in spinnerMode="dropdown". -->
688
+ <attr name="android:dropDownWidth" />
689
+ </declare-styleable>
690
+
691
+ <declare-styleable name="SearchView">
692
+ <!-- The layout to use for the search view. -->
693
+ <attr name="layout" format="reference" />
694
+ <!-- The default state of the SearchView. If true, it will be iconified when not in
695
+ use and expanded when clicked. -->
696
+ <attr name="iconifiedByDefault" format="boolean" />
697
+ <!-- An optional maximum width of the SearchView. -->
698
+ <attr name="android:maxWidth" />
699
+ <!-- An optional user-defined query hint string to be displayed in the empty query field. -->
700
+ <attr name="queryHint" format="string" />
701
+ <!-- Default query hint used when {@code queryHint} is undefined and
702
+ the search view's {@code SearchableInfo} does not provide a hint. -->
703
+ <attr name="defaultQueryHint" format="string" />
704
+ <!-- The IME options to set on the query text field. -->
705
+ <attr name="android:imeOptions" />
706
+ <!-- The input type to set on the query text field. -->
707
+ <attr name="android:inputType" />
708
+ <!-- Close button icon -->
709
+ <attr name="closeIcon" format="reference" />
710
+ <!-- Go button icon -->
711
+ <attr name="goIcon" format="reference" />
712
+ <!-- Search icon -->
713
+ <attr name="searchIcon" format="reference" />
714
+ <!-- Search icon displayed as a text field hint -->
715
+ <attr name="searchHintIcon" format="reference" />
716
+ <!-- Voice button icon -->
717
+ <attr name="voiceIcon" format="reference" />
718
+ <!-- Commit icon shown in the query suggestion row -->
719
+ <attr name="commitIcon" format="reference" />
720
+ <!-- Layout for query suggestion rows -->
721
+ <attr name="suggestionRowLayout" format="reference" />
722
+ <!-- Background for the section containing the search query -->
723
+ <attr name="queryBackground" format="reference" />
724
+ <!-- Background for the section containing the action (e.g. voice search) -->
725
+ <attr name="submitBackground" format="reference" />
726
+ <attr name="android:focusable" />
727
+ </declare-styleable>
728
+
729
+ <!-- Attrbitutes for a ActivityChooserView. -->
730
+ <declare-styleable name="ActivityChooserView">
731
+ <!-- The maximal number of items initially shown in the activity list. -->
732
+ <attr name="initialActivityCount" format="string" />
733
+ <!-- The drawable to show in the button for expanding the activities overflow popup.
734
+ <strong>Note:</strong> Clients would like to set this drawable
735
+ as a clue about the action the chosen activity will perform. For
736
+ example, if share activity is to be chosen the drawable should
737
+ give a clue that sharing is to be performed.
738
+ -->
739
+ <attr name="expandActivityOverflowButtonDrawable" format="reference" />
740
+ </declare-styleable>
741
+
742
+ <declare-styleable name="AppCompatTextView">
743
+ <!-- Present the text in ALL CAPS. This may use a small-caps form when available. -->
744
+ <attr name="textAllCaps" format="reference|boolean" />
745
+ <attr name="android:textAppearance" />
746
+ </declare-styleable>
747
+
748
+ <declare-styleable name="LinearLayoutCompat">
749
+ <!-- Should the layout be a column or a row? Use "horizontal"
750
+ for a row, "vertical" for a column. The default is
751
+ horizontal. -->
752
+ <attr name="android:orientation" />
753
+ <attr name="android:gravity" />
754
+ <!-- When set to false, prevents the layout from aligning its children's
755
+ baselines. This attribute is particularly useful when the children
756
+ use different values for gravity. The default value is true. -->
757
+ <attr name="android:baselineAligned" />
758
+ <!-- When a linear layout is part of another layout that is baseline
759
+ aligned, it can specify which of its children to baseline align to
760
+ (that is, which child TextView).-->
761
+ <attr name="android:baselineAlignedChildIndex" />
762
+ <!-- Defines the maximum weight sum. If unspecified, the sum is computed
763
+ by adding the layout_weight of all of the children. This can be
764
+ used for instance to give a single child 50% of the total available
765
+ space by giving it a layout_weight of 0.5 and setting the weightSum
766
+ to 1.0. -->
767
+ <attr name="android:weightSum" />
768
+ <!-- When set to true, all children with a weight will be considered having
769
+ the minimum size of the largest child. If false, all children are
770
+ measured normally. -->
771
+ <attr name="measureWithLargestChild" format="boolean" />
772
+ <!-- Drawable to use as a vertical divider between buttons. -->
773
+ <attr name="divider" />
774
+ <!-- Setting for which dividers to show. -->
775
+ <attr name="showDividers">
776
+ <flag name="none" value="0" />
777
+ <flag name="beginning" value="1" />
778
+ <flag name="middle" value="2" />
779
+ <flag name="end" value="4" />
780
+ </attr>
781
+ <!-- Size of padding on either end of a divider. -->
782
+ <attr name="dividerPadding" format="dimension" />
783
+ </declare-styleable>
784
+
785
+ <declare-styleable name="LinearLayoutCompat_Layout">
786
+ <attr name="android:layout_width" />
787
+ <attr name="android:layout_height" />
788
+ <attr name="android:layout_weight" />
789
+ <attr name="android:layout_gravity" />
790
+ </declare-styleable>
791
+
792
+ <declare-styleable name="Toolbar">
793
+ <attr name="titleTextAppearance" format="reference" />
794
+ <attr name="subtitleTextAppearance" format="reference" />
795
+ <attr name="title" />
796
+ <attr name="subtitle" />
797
+ <attr name="android:gravity" />
798
+ <attr name="titleMargins" format="dimension" />
799
+ <attr name="titleMarginStart" format="dimension" />
800
+ <attr name="titleMarginEnd" format="dimension" />
801
+ <attr name="titleMarginTop" format="dimension" />
802
+ <attr name="titleMarginBottom" format="dimension" />
803
+ <attr name="contentInsetStart" />
804
+ <attr name="contentInsetEnd" />
805
+ <attr name="contentInsetLeft" />
806
+ <attr name="contentInsetRight" />
807
+ <attr name="maxButtonHeight" format="dimension" />
808
+
809
+ <attr name="collapseIcon" format="reference" />
810
+ <!-- Text to set as the content description for the collapse button. -->
811
+ <attr name="collapseContentDescription" format="string" />
812
+ <!-- Reference to a theme that should be used to inflate popups
813
+ shown by widgets in the toolbar. -->
814
+ <attr name="popupTheme" />
815
+ <!-- Icon drawable to use for the navigation button located at
816
+ the start of the toolbar. -->
817
+ <attr name="navigationIcon" format="reference" />
818
+ <!-- Text to set as the content description for the navigation button
819
+ located at the start of the toolbar. -->
820
+ <attr name="navigationContentDescription" format="string" />
821
+
822
+ <!-- Allows us to read in the minHeight attr pre-v16 -->
823
+ <attr name="android:minHeight" />
824
+
825
+ <!-- Drawable to set as the logo that appears at the starting side of
826
+ the Toolbar, just after the navigation button. -->
827
+ <attr name="logo" />
828
+ <!-- A content description string to describe the appearance of the
829
+ associated logo image. -->
830
+ <attr name="logoDescription" format="string" />
831
+ <!-- A color to apply to the title string. -->
832
+ <attr name="titleTextColor" format="color" />
833
+ <!-- A color to apply to the subtitle string. -->
834
+ <attr name="subtitleTextColor" format="color" />
835
+ </declare-styleable>
836
+
837
+ <declare-styleable name="PopupWindowBackgroundState">
838
+ <!-- State identifier indicating the popup will be above the anchor. -->
839
+ <attr name="state_above_anchor" format="boolean" />
840
+ </declare-styleable>
841
+
842
+ <declare-styleable name="ListPopupWindow">
843
+ <!-- Amount of pixels by which the drop down should be offset vertically. -->
844
+ <attr name="android:dropDownVerticalOffset" />
845
+ <!-- Amount of pixels by which the drop down should be offset horizontally. -->
846
+ <attr name="android:dropDownHorizontalOffset" />
847
+ </declare-styleable>
848
+
849
+ <declare-styleable name="PopupWindow">
850
+ <!-- Whether the popup window should overlap its anchor view. -->
851
+ <attr name="overlapAnchor" format="boolean" />
852
+ <attr name="android:popupBackground" />
853
+ </declare-styleable>
854
+
855
+ <declare-styleable name="DrawerArrowToggle">
856
+ <!-- The drawing color for the bars -->
857
+ <attr name="color" format="color"/>
858
+ <!-- Whether bars should rotate or not during transition -->
859
+ <attr name="spinBars" format="boolean"/>
860
+ <!-- The total size of the drawable -->
861
+ <attr name="drawableSize" format="dimension"/>
862
+ <!-- The max gap between the bars when they are parallel to each other -->
863
+ <attr name="gapBetweenBars" format="dimension"/>
864
+ <!-- The length of the arrow head when formed to make an arrow -->
865
+ <attr name="arrowHeadLength" format="dimension"/>
866
+ <!-- The length of the shaft when formed to make an arrow -->
867
+ <attr name="arrowShaftLength" format="dimension"/>
868
+ <!-- The length of the bars when they are parallel to each other -->
869
+ <attr name="barLength" format="dimension"/>
870
+ <!-- The thickness (stroke size) for the bar paint -->
871
+ <attr name="thickness" format="dimension"/>
872
+ </declare-styleable>
873
+
874
+ <attr name="drawerArrowStyle" format="reference" />
875
+
876
+ <declare-styleable name="ViewStubCompat">
877
+ <!-- Supply an identifier for the layout resource to inflate when the ViewStub
878
+ becomes visible or when forced to do so. The layout resource must be a
879
+ valid reference to a layout. -->
880
+ <attr name="android:layout" />
881
+ <!-- Overrides the id of the inflated View with this value. -->
882
+ <attr name="android:inflatedId" />
883
+ <attr name="android:id" />
884
+ </declare-styleable>
885
+
886
+ <declare-styleable name="CompoundButton">
887
+ <attr name="android:button"/>
888
+ <!-- Tint to apply to the button drawable. -->
889
+ <attr name="buttonTint" format="color" />
890
+
891
+ <!-- Blending mode used to apply the button tint. -->
892
+ <attr name="buttonTintMode">
893
+ <!-- The tint is drawn on top of the drawable.
894
+ [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] -->
895
+ <enum name="src_over" value="3" />
896
+ <!-- The tint is masked by the alpha channel of the drawable. The drawable’s
897
+ color channels are thrown out. [Sa * Da, Sc * Da] -->
898
+ <enum name="src_in" value="5" />
899
+ <!-- The tint is drawn above the drawable, but with the drawable’s alpha
900
+ channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] -->
901
+ <enum name="src_atop" value="9" />
902
+ <!-- Multiplies the color and alpha channels of the drawable with those of
903
+ the tint. [Sa * Da, Sc * Dc] -->
904
+ <enum name="multiply" value="14" />
905
+ <!-- [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] -->
906
+ <enum name="screen" value="15" />
907
+ </attr>
908
+ </declare-styleable>
909
+
910
+ <declare-styleable name="SwitchCompat">
911
+ <!-- Drawable to use as the "thumb" that switches back and forth. -->
912
+ <attr name="android:thumb" />
913
+ <!-- Drawable to use as the "track" that the switch thumb slides within. -->
914
+ <attr name="track" format="reference" />
915
+ <!-- Text to use when the switch is in the checked/"on" state. -->
916
+ <attr name="android:textOn" />
917
+ <!-- Text to use when the switch is in the unchecked/"off" state. -->
918
+ <attr name="android:textOff" />
919
+ <!-- Amount of padding on either side of text within the switch thumb. -->
920
+ <attr name="thumbTextPadding" format="dimension" />
921
+ <!-- TextAppearance style for text displayed on the switch thumb. -->
922
+ <attr name="switchTextAppearance" format="reference" />
923
+ <!-- Minimum width for the switch component -->
924
+ <attr name="switchMinWidth" format="dimension" />
925
+ <!-- Minimum space between the switch and caption text -->
926
+ <attr name="switchPadding" format="dimension" />
927
+ <!-- Whether to split the track and leave a gap for the thumb drawable. -->
928
+ <attr name="splitTrack" format="boolean" />
929
+ <!-- Whether to draw on/off text. -->
930
+ <attr name="showText" format="boolean" />
931
+ </declare-styleable>
932
+
933
+ <declare-styleable name="TextAppearance">
934
+ <attr name="android:textSize" />
935
+ <attr name="android:textColor" />
936
+ <attr name="android:textStyle" />
937
+ <attr name="android:typeface" />
938
+ <attr name="textAllCaps" />
939
+ <attr name="android:shadowColor"/>
940
+ <attr name="android:shadowDy"/>
941
+ <attr name="android:shadowDx"/>
942
+ <attr name="android:shadowRadius"/>
943
+ </declare-styleable>
944
+
945
+ <!-- The set of attributes that describe a AlertDialog's theme. -->
946
+ <declare-styleable name="AlertDialog">
947
+ <attr name="android:layout" />
948
+ <attr name="buttonPanelSideLayout" format="reference" />
949
+ <attr name="listLayout" format="reference" />
950
+ <attr name="multiChoiceItemLayout" format="reference" />
951
+ <attr name="singleChoiceItemLayout" format="reference" />
952
+ <attr name="listItemLayout" format="reference" />
953
+ </declare-styleable>
954
+
955
+ <!-- @hide -->
956
+ <declare-styleable name="ButtonBarLayout">
957
+ <!-- Whether to automatically stack the buttons when there is not
958
+ enough space to lay them out side-by-side. -->
959
+ <attr name="allowStacking" format="boolean" />
960
+ </declare-styleable>
961
+
962
+ </resources>