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,142 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ Copyright (C) 2014 The Android Open Source Project
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ -->
17
+
18
+ <resources>
19
+
20
+ <style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
21
+ <item name="android:textColor">?android:textColorPrimary</item>
22
+ <item name="android:textColorHint">?android:textColorHint</item>
23
+ <item name="android:textColorHighlight">?android:textColorHighlight</item>
24
+ <item name="android:textColorLink">?android:textColorLink</item>
25
+ <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
26
+ </style>
27
+
28
+ <style name="Base.TextAppearance.AppCompat.Display4">
29
+ <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
30
+ <item name="android:textColor">?android:textColorSecondary</item>
31
+ </style>
32
+
33
+ <style name="Base.TextAppearance.AppCompat.Display3">
34
+ <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
35
+ <item name="android:textColor">?android:textColorSecondary</item>
36
+ </style>
37
+
38
+ <style name="Base.TextAppearance.AppCompat.Display2">
39
+ <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
40
+ <item name="android:textColor">?android:textColorSecondary</item>
41
+ </style>
42
+
43
+ <style name="Base.TextAppearance.AppCompat.Display1">
44
+ <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
45
+ <item name="android:textColor">?android:textColorSecondary</item>
46
+ </style>
47
+
48
+ <style name="Base.TextAppearance.AppCompat.Headline">
49
+ <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
50
+ <item name="android:textColor">?android:textColorPrimary</item>
51
+ </style>
52
+
53
+ <style name="Base.TextAppearance.AppCompat.Title">
54
+ <item name="android:textSize">@dimen/abc_text_size_title_material</item>
55
+ <item name="android:textColor">?android:textColorPrimary</item>
56
+ </style>
57
+
58
+ <style name="Base.TextAppearance.AppCompat.Title.Inverse">
59
+ <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
60
+ <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
61
+ </style>
62
+
63
+ <style name="Base.TextAppearance.AppCompat.Subhead">
64
+ <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
65
+ <item name="android:textColor">?android:textColorPrimary</item>
66
+ </style>
67
+
68
+ <style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
69
+ <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
70
+ <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
71
+ </style>
72
+
73
+ <style name="Base.TextAppearance.AppCompat.Body2">
74
+ <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
75
+ <item name="android:textColor">?android:textColorPrimary</item>
76
+ </style>
77
+
78
+ <style name="Base.TextAppearance.AppCompat.Body1">
79
+ <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
80
+ <item name="android:textColor">?android:textColorPrimary</item>
81
+ </style>
82
+
83
+ <style name="Base.TextAppearance.AppCompat.Caption">
84
+ <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
85
+ <item name="android:textColor">?android:textColorSecondary</item>
86
+ </style>
87
+
88
+ <style name="Base.TextAppearance.AppCompat.Menu">
89
+ <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
90
+ <item name="android:textColor">?android:textColorPrimary</item>
91
+ </style>
92
+
93
+ <style name="Base.TextAppearance.AppCompat.Button">
94
+ <item name="android:textSize">@dimen/abc_text_size_button_material</item>
95
+ <item name="textAllCaps">true</item>
96
+ <item name="android:textColor">?android:textColorPrimary</item>
97
+ </style>
98
+
99
+ <style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button" />
100
+
101
+ <style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
102
+ <item name="android:textColor">?android:textColorPrimaryInverse</item>
103
+ </style>
104
+
105
+ <!-- Deprecated text styles -->
106
+
107
+ <style name="Base.TextAppearance.AppCompat.Inverse">
108
+ <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
109
+ <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
110
+ </style>
111
+
112
+ <style name="Base.TextAppearance.AppCompat.Large">
113
+ <item name="android:textSize">@dimen/abc_text_size_large_material</item>
114
+ <item name="android:textColor">?android:attr/textColorPrimary</item>
115
+ </style>
116
+
117
+ <style name="Base.TextAppearance.AppCompat.Large.Inverse">
118
+ <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
119
+ <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
120
+ </style>
121
+
122
+ <style name="Base.TextAppearance.AppCompat.Medium">
123
+ <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
124
+ <item name="android:textColor">?android:attr/textColorSecondary</item>
125
+ </style>
126
+
127
+ <style name="Base.TextAppearance.AppCompat.Medium.Inverse">
128
+ <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
129
+ <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
130
+ </style>
131
+
132
+ <style name="Base.TextAppearance.AppCompat.Small">
133
+ <item name="android:textSize">@dimen/abc_text_size_small_material</item>
134
+ <item name="android:textColor">?android:attr/textColorTertiary</item>
135
+ </style>
136
+
137
+ <style name="Base.TextAppearance.AppCompat.Small.Inverse">
138
+ <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
139
+ <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
140
+ </style>
141
+
142
+ </resources>
@@ -0,0 +1,79 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2014 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
+ <style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
20
+ <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
21
+ </style>
22
+
23
+ <style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
24
+ <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
25
+ <item name="android:paddingRight">4dp</item>
26
+ </style>
27
+
28
+ <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
29
+ <item name="android:layout_alignParentRight">true</item>
30
+ </style>
31
+
32
+ <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
33
+ <item name="android:layout_alignParentLeft">true</item>
34
+ </style>
35
+
36
+ <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
37
+ <item name="android:layout_toLeftOf">@id/edit_query</item>
38
+ </style>
39
+
40
+ <style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
41
+ <item name="android:layout_toLeftOf">@android:id/icon2</item>
42
+ <item name="android:layout_toRightOf">@android:id/icon1</item>
43
+ </style>
44
+
45
+ <style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
46
+ <item name="android:layout_gravity">center_vertical|left</item>
47
+ <item name="android:paddingRight">8dp</item>
48
+ </style>
49
+
50
+ <style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
51
+ <item name="android:paddingLeft">12dp</item>
52
+ <item name="android:paddingRight">12dp</item>
53
+ </style>
54
+
55
+ <style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
56
+ <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
57
+ <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
58
+ </style>
59
+
60
+ <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
61
+ <item name="android:paddingRight">16dp</item>
62
+ </style>
63
+
64
+ <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
65
+ <item name="android:layout_marginLeft">16dp</item>
66
+ </style>
67
+
68
+ <style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
69
+ <item name="android:layout_alignParentLeft">true</item>
70
+ </style>
71
+
72
+ <style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
73
+ <item name="android:layout_marginRight">8dp</item>
74
+ </style>
75
+
76
+ <style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
77
+ </style>
78
+
79
+ </resources>
@@ -0,0 +1,95 @@
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
+ <!-- Themes in the "Theme.AppCompat" family will contain an action bar by default.
20
+ If Holo themes are available on the current platform version they will be used.
21
+ A limited Holo-styled action bar will be provided on platform versions older
22
+ than 3.0. (API 11)
23
+
24
+ These theme declarations contain any version-independent specification. Items
25
+ that need to vary based on platform version should be defined in the corresponding
26
+ "Theme.Base" theme. -->
27
+
28
+ <!-- Platform-independent theme providing an action bar in a dark-themed activity. -->
29
+ <style name="Theme.AppCompat" parent="Base.Theme.AppCompat" />
30
+
31
+ <!-- Platform-independent theme providing an action bar in a light-themed activity. -->
32
+ <style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light" />
33
+
34
+ <!-- Platform-independent theme providing an action bar in a dark-themed activity. -->
35
+ <style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar" />
36
+
37
+ <style name="Theme.AppCompat.NoActionBar">
38
+ <item name="windowActionBar">false</item>
39
+ <item name="windowNoTitle">true</item>
40
+ </style>
41
+
42
+ <style name="Theme.AppCompat.Light.NoActionBar">
43
+ <item name="windowActionBar">false</item>
44
+ <item name="windowNoTitle">true</item>
45
+ </style>
46
+
47
+ <style name="Theme.AppCompat.DialogWhenLarge"
48
+ parent="Base.Theme.AppCompat.DialogWhenLarge">
49
+ </style>
50
+
51
+ <style name="Theme.AppCompat.Light.DialogWhenLarge"
52
+ parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
53
+ </style>
54
+
55
+ <style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog" />
56
+
57
+ <style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog" />
58
+
59
+
60
+ <!-- Material theme for alert dialog windows, which is used by the AlertDialog class.
61
+ This is basically a dialog but sets the background to empty so it can do
62
+ two-tone backgrounds. For applications targeting Honeycomb or newer, this is the default
63
+ AlertDialog theme. -->
64
+ <style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert" />
65
+ <style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert" />
66
+
67
+ <!-- Variant of Theme.AppCompat.Dialog that has a nice minimum width for
68
+ a regular dialog. -->
69
+ <style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth" />
70
+ <style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth" />
71
+
72
+ <!-- Menu/item attributes -->
73
+ <style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu" />
74
+
75
+
76
+ <style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat" />
77
+
78
+ <!-- Theme overlay that replaces colors with their light versions but preserves
79
+ the value of colorAccent, colorPrimary and its variants. -->
80
+ <style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light" />
81
+
82
+ <!-- Theme overlay that replaces colors with their dark versions but preserves
83
+ the value of colorAccent, colorPrimary and its variants. -->
84
+ <style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark" />
85
+
86
+ <!-- Theme overlay that replaces the normal control color, which by default is the same as the
87
+ secondary text color, with the primary text color. -->
88
+ <style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar" />
89
+
90
+ <!-- Theme overlay that replaces colors with their dark versions and replaces the normal
91
+ control color, which by default is the same as the secondary text color, with the primary
92
+ text color. -->
93
+ <style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar" />
94
+
95
+ </resources>
@@ -0,0 +1,626 @@
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
+ <!--
20
+ Theme in the "Platform.AppCompat" family are designed to be aliases for the default
21
+ theme on a given platform version and should set up the default theme ready for adding our
22
+ unbundled Action Bar.
23
+ -->
24
+ <eat-comment/>
25
+ <style name="Platform.AppCompat" parent="android:Theme">
26
+ <item name="android:windowNoTitle">true</item>
27
+
28
+ <!-- Window colors -->
29
+ <item name="android:colorForeground">@color/foreground_material_dark</item>
30
+ <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
31
+ <item name="android:colorBackground">@color/background_material_dark</item>
32
+ <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
33
+ <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
34
+ <item name="android:backgroundDimAmount">0.6</item>
35
+ <item name="android:windowBackground">@color/background_material_dark</item>
36
+
37
+ <!-- Text colors -->
38
+ <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
39
+ <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
40
+ <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
41
+ <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
42
+ <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
43
+ <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
44
+ <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
45
+ <item name="android:textColorHint">@color/hint_foreground_material_dark</item>
46
+ <item name="android:textColorHintInverse">@color/hint_foreground_material_light</item>
47
+ <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
48
+ <item name="android:textColorLink">?attr/colorAccent</item>
49
+
50
+ <!-- Text styles -->
51
+ <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
52
+ <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
53
+ <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
54
+ <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
55
+ <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
56
+ <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
57
+ <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
58
+ <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
59
+
60
+ <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
61
+ <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
62
+ </style>
63
+
64
+ <style name="Platform.AppCompat.Light" parent="android:Theme.Light">
65
+ <item name="android:windowNoTitle">true</item>
66
+
67
+ <!-- Window colors -->
68
+ <item name="android:colorForeground">@color/foreground_material_light</item>
69
+ <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
70
+ <item name="android:colorBackground">@color/background_material_light</item>
71
+ <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
72
+ <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
73
+ <item name="android:backgroundDimAmount">0.6</item>
74
+ <item name="android:windowBackground">@color/background_material_light</item>
75
+
76
+ <!-- Text colors -->
77
+ <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
78
+ <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
79
+ <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
80
+ <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
81
+ <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
82
+ <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
83
+ <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
84
+ <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
85
+ <item name="android:textColorHint">@color/hint_foreground_material_light</item>
86
+ <item name="android:textColorHintInverse">@color/hint_foreground_material_dark</item>
87
+ <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
88
+ <item name="android:textColorLink">?attr/colorAccent</item>
89
+
90
+ <!-- Text styles -->
91
+ <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
92
+ <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
93
+ <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
94
+ <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
95
+ <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
96
+ <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
97
+ <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
98
+ <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
99
+
100
+ <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
101
+ <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
102
+ </style>
103
+
104
+ <!-- Themes in the "Base.Theme" family vary based on the current platform
105
+ version to provide the correct basis on each device. You probably don't
106
+ want to use them directly in your apps.
107
+
108
+ Themes in the "Theme.AppCompat" family are meant to be extended or used
109
+ directly by apps. -->
110
+ <eat-comment/>
111
+
112
+ <!-- Base platform-dependent theme providing an action bar in a dark-themed activity. -->
113
+ <style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
114
+ <item name="windowNoTitle">false</item>
115
+ <item name="windowActionBar">true</item>
116
+ <item name="windowActionBarOverlay">false</item>
117
+ <item name="windowActionModeOverlay">false</item>
118
+ <item name="actionBarPopupTheme">@null</item>
119
+
120
+ <!-- Used by MediaRouter -->
121
+ <item name="isLightTheme">false</item>
122
+
123
+ <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
124
+ <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
125
+ <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
126
+ <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>
127
+
128
+ <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
129
+ <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
130
+
131
+ <!-- Action Bar Styles -->
132
+ <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
133
+ <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
134
+ <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
135
+ <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
136
+ <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
137
+ <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
138
+ <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
139
+ <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
140
+ <item name="actionBarWidgetTheme">@null</item>
141
+ <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
142
+ <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
143
+ <item name="actionBarDivider">?attr/dividerVertical</item>
144
+ <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
145
+ <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
146
+ <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
147
+
148
+ <!-- Dropdown Spinner Attributes -->
149
+ <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
150
+
151
+ <!-- Action Mode -->
152
+ <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
153
+ <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
154
+ <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
155
+ <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>
156
+ <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
157
+
158
+ <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
159
+ <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
160
+ <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
161
+ <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
162
+ <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
163
+
164
+ <!-- Panel attributes -->
165
+ <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
166
+ <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
167
+ <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
168
+ <item name="android:panelBackground">@android:color/transparent</item>
169
+ <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
170
+
171
+ <!-- List attributes -->
172
+ <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
173
+ <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
174
+ <item name="listPreferredItemHeight">64dp</item>
175
+ <item name="listPreferredItemHeightSmall">48dp</item>
176
+ <item name="listPreferredItemHeightLarge">80dp</item>
177
+ <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
178
+ <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
179
+
180
+ <!-- Spinner styles -->
181
+ <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
182
+ <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
183
+ <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
184
+
185
+ <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
186
+ <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
187
+ <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
188
+
189
+ <!-- Popup Menu styles -->
190
+ <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
191
+ <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
192
+ <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
193
+ <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
194
+ <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
195
+
196
+ <!-- SearchView attributes -->
197
+ <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
198
+ <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
199
+ <item name="textColorSearchUrl">@color/abc_search_url_text</item>
200
+ <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
201
+ <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
202
+
203
+ <!-- ShareActionProvider attributes -->
204
+ <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
205
+
206
+ <!-- Toolbar styles -->
207
+ <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
208
+ <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
209
+
210
+ <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
211
+ <item name="editTextBackground">@drawable/abc_edit_text_material</item>
212
+ <item name="editTextColor">?android:attr/textColorPrimary</item>
213
+ <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
214
+
215
+ <!-- Color palette -->
216
+ <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
217
+ <item name="colorPrimary">@color/primary_material_dark</item>
218
+ <item name="colorAccent">@color/accent_material_dark</item>
219
+
220
+ <item name="colorControlNormal">?android:attr/textColorSecondary</item>
221
+ <item name="colorControlActivated">?attr/colorAccent</item>
222
+ <item name="colorControlHighlight">@color/ripple_material_dark</item>
223
+ <item name="colorButtonNormal">@color/button_material_dark</item>
224
+ <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
225
+ <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
226
+
227
+ <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
228
+
229
+ <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
230
+ <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
231
+ <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
232
+
233
+ <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
234
+ <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
235
+
236
+ <!-- Button styles -->
237
+ <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
238
+ <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
239
+ <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
240
+
241
+ <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
242
+
243
+ <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
244
+ <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
245
+ <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
246
+ <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
247
+ <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
248
+
249
+ <!-- Dialog attributes -->
250
+ <item name="dialogTheme">@style/Theme.AppCompat.Dialog</item>
251
+ <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
252
+
253
+ <item name="alertDialogTheme">@style/Theme.AppCompat.Dialog.Alert</item>
254
+ <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
255
+ <item name="alertDialogCenterButtons">false</item>
256
+ <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
257
+ <item name="listDividerAlertDialog">@null</item>
258
+
259
+ <!-- Define these here; ContextThemeWrappers around themes that define them should
260
+ always clear these values. -->
261
+ <item name="windowFixedWidthMajor">0dp</item>
262
+ <item name="windowFixedWidthMinor">0dp</item>
263
+ <item name="windowFixedHeightMajor">0dp</item>
264
+ <item name="windowFixedHeightMinor">0dp</item>
265
+ </style>
266
+
267
+ <!-- Base platform-dependent theme providing an action bar in a light-themed activity. -->
268
+ <style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
269
+ <item name="windowNoTitle">false</item>
270
+ <item name="windowActionBar">true</item>
271
+ <item name="windowActionBarOverlay">false</item>
272
+ <item name="windowActionModeOverlay">false</item>
273
+ <item name="actionBarPopupTheme">@null</item>
274
+
275
+ <!-- Used by MediaRouter -->
276
+ <item name="isLightTheme">true</item>
277
+
278
+ <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
279
+ <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
280
+ <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
281
+ <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>
282
+
283
+ <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
284
+ <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
285
+
286
+ <!-- Action Bar Styles -->
287
+ <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
288
+ <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
289
+ <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
290
+ <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
291
+ <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
292
+ <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
293
+ <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
294
+ <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
295
+ <item name="actionBarWidgetTheme">@null</item>
296
+ <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
297
+ <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
298
+ <item name="actionBarDivider">?attr/dividerVertical</item>
299
+ <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
300
+ <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
301
+ <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
302
+
303
+ <!-- Action Mode -->
304
+ <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
305
+ <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
306
+ <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
307
+ <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_mtrl_am_alpha</item>
308
+ <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
309
+
310
+ <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
311
+ <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
312
+ <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
313
+ <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
314
+ <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
315
+
316
+ <!-- Dropdown Spinner Attributes -->
317
+ <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
318
+
319
+ <!-- Panel attributes -->
320
+ <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
321
+ <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
322
+ <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
323
+ <item name="android:panelBackground">@android:color/transparent</item>
324
+ <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
325
+
326
+ <!-- List attributes -->
327
+ <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
328
+ <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
329
+ <item name="listPreferredItemHeight">64dp</item>
330
+ <item name="listPreferredItemHeightSmall">48dp</item>
331
+ <item name="listPreferredItemHeightLarge">80dp</item>
332
+ <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
333
+ <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
334
+
335
+ <!-- Spinner styles -->
336
+ <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
337
+ <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
338
+ <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
339
+
340
+ <!-- Required for use of support_simple_spinner_dropdown_item.xml -->
341
+ <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
342
+ <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
343
+
344
+ <!-- Popup Menu styles -->
345
+ <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
346
+ <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
347
+ <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
348
+ <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
349
+ <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
350
+
351
+ <!-- SearchView attributes -->
352
+ <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
353
+ <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
354
+ <item name="textColorSearchUrl">@color/abc_search_url_text</item>
355
+ <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
356
+ <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
357
+
358
+ <!-- ShareActionProvider attributes -->
359
+ <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
360
+
361
+ <!-- Toolbar styles -->
362
+ <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
363
+ <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
364
+
365
+ <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
366
+ <item name="editTextBackground">@drawable/abc_edit_text_material</item>
367
+ <item name="editTextColor">?android:attr/textColorPrimary</item>
368
+ <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
369
+
370
+ <!-- Color palette -->
371
+ <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
372
+ <item name="colorPrimary">@color/primary_material_light</item>
373
+ <item name="colorAccent">@color/accent_material_light</item>
374
+
375
+ <item name="colorControlNormal">?android:attr/textColorSecondary</item>
376
+ <item name="colorControlActivated">?attr/colorAccent</item>
377
+ <item name="colorControlHighlight">@color/ripple_material_light</item>
378
+ <item name="colorButtonNormal">@color/button_material_light</item>
379
+ <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
380
+ <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
381
+
382
+ <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
383
+
384
+ <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
385
+ <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
386
+ <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
387
+
388
+ <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
389
+ <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
390
+
391
+ <!-- Button styles -->
392
+ <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
393
+ <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
394
+ <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
395
+
396
+ <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
397
+
398
+ <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
399
+ <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
400
+ <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
401
+ <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
402
+ <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
403
+
404
+ <!-- Dialog attributes -->
405
+ <item name="dialogTheme">@style/Theme.AppCompat.Light.Dialog</item>
406
+ <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
407
+
408
+ <item name="alertDialogTheme">@style/Theme.AppCompat.Light.Dialog.Alert</item>
409
+ <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
410
+ <item name="alertDialogCenterButtons">false</item>
411
+ <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
412
+ <item name="listDividerAlertDialog">@null</item>
413
+
414
+ <!-- Define these here; ContextThemeWrappers around themes that define them should
415
+ always clear these values. -->
416
+ <item name="windowFixedWidthMajor">0dp</item>
417
+ <item name="windowFixedWidthMinor">0dp</item>
418
+ <item name="windowFixedHeightMajor">0dp</item>
419
+ <item name="windowFixedHeightMinor">0dp</item>
420
+ </style>
421
+
422
+ <style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
423
+ </style>
424
+
425
+ <style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
426
+ </style>
427
+
428
+ <style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
429
+ <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
430
+ <item name="actionBarWidgetTheme">@null</item>
431
+ <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
432
+
433
+ <!-- Panel attributes -->
434
+ <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
435
+
436
+ <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
437
+ <item name="colorPrimary">@color/primary_material_dark</item>
438
+ </style>
439
+
440
+ <!-- Menu/item attributes -->
441
+ <style name="Base.Theme.AppCompat.CompactMenu" parent="">
442
+ <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
443
+ <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
444
+ <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
445
+ </style>
446
+
447
+ <style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
448
+ <item name="android:colorBackground">@color/background_floating_material_dark</item>
449
+ <item name="android:colorBackgroundCacheHint">@null</item>
450
+
451
+ <item name="android:windowFrame">@null</item>
452
+ <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
453
+ <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
454
+ <item name="android:windowBackground">@drawable/abc_dialog_material_background_dark</item>
455
+ <item name="android:windowIsFloating">true</item>
456
+ <item name="android:backgroundDimEnabled">true</item>
457
+ <item name="android:windowContentOverlay">@null</item>
458
+ <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
459
+ <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
460
+
461
+ <item name="windowActionBar">false</item>
462
+ <item name="windowActionModeOverlay">true</item>
463
+
464
+ <item name="listPreferredItemPaddingLeft">24dip</item>
465
+ <item name="listPreferredItemPaddingRight">24dip</item>
466
+
467
+ <item name="android:listDivider">@null</item>
468
+ </style>
469
+
470
+ <style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
471
+ <item name="android:colorBackground">@color/background_floating_material_light</item>
472
+ <item name="android:colorBackgroundCacheHint">@null</item>
473
+
474
+ <item name="android:windowFrame">@null</item>
475
+ <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
476
+ <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
477
+ <item name="android:windowBackground">@drawable/abc_dialog_material_background_light</item>
478
+ <item name="android:windowIsFloating">true</item>
479
+ <item name="android:backgroundDimEnabled">true</item>
480
+ <item name="android:windowContentOverlay">@null</item>
481
+ <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
482
+ <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
483
+
484
+ <item name="windowActionBar">false</item>
485
+ <item name="windowActionModeOverlay">true</item>
486
+
487
+ <item name="listPreferredItemPaddingLeft">24dip</item>
488
+ <item name="listPreferredItemPaddingRight">24dip</item>
489
+
490
+ <item name="android:listDivider">@null</item>
491
+ </style>
492
+
493
+ <style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog" />
494
+ <style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog" />
495
+
496
+ <style name="Base.Theme.AppCompat.Dialog.Alert">
497
+ <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
498
+ <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
499
+ </style>
500
+
501
+ <style name="Base.Theme.AppCompat.Light.Dialog.Alert">
502
+ <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
503
+ <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
504
+ </style>
505
+
506
+ <style name="Base.Theme.AppCompat.Dialog.MinWidth">
507
+ <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
508
+ <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
509
+ </style>
510
+
511
+ <style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
512
+ <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
513
+ <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
514
+ </style>
515
+
516
+ <style name="Base.Theme.AppCompat.Dialog.FixedSize">
517
+ <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
518
+ <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
519
+ <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
520
+ <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
521
+ </style>
522
+
523
+ <style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
524
+ <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
525
+ <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
526
+ <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
527
+ <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
528
+ </style>
529
+
530
+ <!-- We're not large, so redirect to Theme.AppCompat -->
531
+ <style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat" />
532
+
533
+ <style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light" />
534
+
535
+ <!-- Overlay themes -->
536
+ <style name="Platform.ThemeOverlay.AppCompat" parent="" />
537
+
538
+ <style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat" />
539
+
540
+ <style name="Platform.ThemeOverlay.AppCompat.Dark">
541
+ <!-- Action Bar styles -->
542
+ <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
543
+ <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
544
+ <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
545
+
546
+ <!-- SearchView styles -->
547
+ <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
548
+ <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
549
+ </style>
550
+
551
+ <style name="Platform.ThemeOverlay.AppCompat.Light">
552
+ <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
553
+ <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
554
+ <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
555
+
556
+ <!-- SearchView attributes -->
557
+ <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
558
+ <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
559
+ </style>
560
+
561
+ <style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
562
+ <item name="android:windowBackground">@color/background_material_light</item>
563
+ <item name="android:colorForeground">@color/foreground_material_light</item>
564
+ <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
565
+ <item name="android:colorBackground">@color/background_material_light</item>
566
+ <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
567
+
568
+ <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
569
+ <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
570
+ <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
571
+ <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
572
+ <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
573
+ <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
574
+ <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
575
+ <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
576
+ <item name="android:textColorHint">@color/hint_foreground_material_light</item>
577
+ <item name="android:textColorHintInverse">@color/hint_foreground_material_dark</item>
578
+ <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
579
+
580
+ <item name="colorControlNormal">?android:attr/textColorSecondary</item>
581
+ <item name="colorControlHighlight">@color/ripple_material_light</item>
582
+ <item name="colorButtonNormal">@color/button_material_light</item>
583
+ <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
584
+
585
+ <!-- Used by MediaRouter -->
586
+ <item name="isLightTheme">true</item>
587
+ </style>
588
+
589
+ <style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
590
+ <item name="android:windowBackground">@color/background_material_dark</item>
591
+ <item name="android:colorForeground">@color/foreground_material_dark</item>
592
+ <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
593
+ <item name="android:colorBackground">@color/background_material_dark</item>
594
+ <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
595
+
596
+ <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
597
+ <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
598
+ <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
599
+ <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
600
+ <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
601
+ <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
602
+ <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
603
+ <item name="android:textColorHint">@color/hint_foreground_material_dark</item>
604
+ <item name="android:textColorHintInverse">@color/hint_foreground_material_light</item>
605
+ <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
606
+
607
+ <item name="colorControlNormal">?android:attr/textColorSecondary</item>
608
+ <item name="colorControlHighlight">@color/ripple_material_dark</item>
609
+ <item name="colorButtonNormal">@color/button_material_dark</item>
610
+ <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
611
+
612
+ <!-- Used by MediaRouter -->
613
+ <item name="isLightTheme">false</item>
614
+ </style>
615
+
616
+ <style name="Base.ThemeOverlay.AppCompat.ActionBar">
617
+ <item name="colorControlNormal">?android:attr/textColorPrimary</item>
618
+ <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
619
+ </style>
620
+
621
+ <style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
622
+ <item name="colorControlNormal">?android:attr/textColorPrimary</item>
623
+ <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
624
+ </style>
625
+
626
+ </resources>