From: Andy Scherzinger Date: Mon, 2 Nov 2015 11:11:22 +0000 (+0100) Subject: Merge branch 'material_buttons' of https://github.com/owncloud/android into material_fab X-Git-Tag: beta-20151202~3^2~8 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/fdcd0829d60cd2cf23fbc9c05c1547b3d247c712?hp=efdcb979632effba0b62f3422d5ff8f9974087b6 Merge branch 'material_buttons' of https://github.com/owncloud/android into material_fab --- diff --git a/.travis.yml b/.travis.yml index 0db9b1ec..b93cd7d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,10 @@ sudo: false language: android android: components: - - build-tools-22.0.1 + - build-tools-23.0.1 + - android-23 - android-22 + - android-19 before_install: - rm pom.xml script: diff --git a/SETUP.md b/SETUP.md index 0f1bc8ed..64c04c97 100644 --- a/SETUP.md +++ b/SETUP.md @@ -90,6 +90,7 @@ The generated APK file is saved in android/build/outputs/apk as android-debug.ap * Choose the projects with the next names under the 'New Project Name' column: ** owncloud-android ** android-support-appcompat-v7-exploded-aar +** com-getbase-floatingactionbutton-1-10-0-exploded-aar ** owncloud-android-workaround-accounts (optional) ** ownCloud Android Library ** ownCloud Sample Client (optional) @@ -102,11 +103,12 @@ The generated APK file is saved in android/build/outputs/apk as android-debug.ap * If any error persists, clean and build manually the next projects in order: ** ownCloud Android Library ** android-support-appcompat-v7-exploded-aar +** com-getbase-floatingactionbutton-1-10-0-exploded-aar ** owncloud-android * If any error on those projects persists, check the project properties. In the 'Android' section, API Level should be ** ownCloud Android Library -> API level 19 ** android-support-appcompat-v7-exploded-aa -> API level 22 -** owncloud-android -> API level 22 ; in this project, two library projects should appear referred in the bottom of the dialog: libs\android-support-appcompat-v7-exploded-aar and owncloud-android-library. Add them if needed. +** owncloud-android -> API level 22 ; in this project, three library projects should appear referred in the bottom of the dialog: libs\android-support-appcompat-v7-exploded-aar, ** com-getbase-floatingactionbutton-1-10-0-exploded-aar and owncloud-android-library. Add them if needed. * After those actions you should be good to go. HAVE FUN! diff --git a/THIRD_PARTY.txt b/THIRD_PARTY.txt index 6fd3e5b3..034ecb32 100644 --- a/THIRD_PARTY.txt +++ b/THIRD_PARTY.txt @@ -59,4 +59,8 @@ The third party software included and used by this project is: modifications com.ortiz.touch.ExtendedViewPager and com.ortiz.touch.TouchImageView classes. See https://github.com/MikeOrtiz/TouchImageView - \ No newline at end of file + * floatingactionbutton 1.10.0. + Copyright (c) 2014 Jerzy Chalupski + Licensed under Apache License, Version 2.0. + placed at libs/com-getbase-floatingactionbutton-1-10-0-exploded-aar has been exploded by ownCloud Inc. + See https://github.com/futuresimple/android-floating-action-button \ No newline at end of file diff --git a/build.gradle b/build.gradle index a0db0184..53029963 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:1.2.3' + classpath 'com.android.tools.build:gradle:1.3.0' } } @@ -20,15 +20,18 @@ repositories { dependencies { compile name: 'touch-image-view' - compile 'com.android.support:support-v4:22.2.1' compile project(':owncloud-android-library') compile 'com.jakewharton:disklrucache:2.0.2' - compile 'com.android.support:appcompat-v7:22.2.1' + compile 'com.android.support:appcompat-v7:23.1.0' + compile 'com.getbase:floatingactionbutton:1.10.1' } android { - compileSdkVersion 22 - buildToolsVersion "22.0.1" + compileSdkVersion 23 + buildToolsVersion "23.0.1" + // as long as ownCloud uses Apache HTTP + // http://developer.android.com/about/versions/marshmallow/android-6.0-changes.html#behavior-apache-http-client + useLibrary 'org.apache.http.legacy' sourceSets { main { manifest.srcFile 'AndroidManifest.xml' diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/.classpath b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/.classpath new file mode 100644 index 00000000..a4763d1e --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/.classpath @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/.project b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/.project new file mode 100644 index 00000000..957d33da --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/.project @@ -0,0 +1,33 @@ + + + android-support-v7-appcompat + + + + + + com.android.ide.eclipse.adt.ResourceManagerBuilder + + + + + com.android.ide.eclipse.adt.PreCompilerBuilder + + + + + org.eclipse.jdt.core.javabuilder + + + + + com.android.ide.eclipse.adt.ApkBuilder + + + + + + com.android.ide.eclipse.adt.AndroidNature + org.eclipse.jdt.core.javanature + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/AndroidManifest.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/AndroidManifest.xml new file mode 100644 index 00000000..dac4cb27 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/AndroidManifest.xml @@ -0,0 +1,20 @@ + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/README.txt b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/README.txt new file mode 100644 index 00000000..8e8de056 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/README.txt @@ -0,0 +1,10 @@ +Library Project including compatibility ActionBar. + +This can be used by an Android project to provide +access to ActionBar on applications running on API 7+. + +There is technically no source, but the src folder is necessary +to ensure that the build system works. The content is actually +located in libs/android-support-v7-appcompat.jar. +The accompanying resources must also be included in the application. + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/build.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/build.xml new file mode 100644 index 00000000..0e2aa70e --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/build.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/libs/android-support-v4.jar b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/libs/android-support-v4.jar new file mode 100644 index 00000000..2a9bf3c9 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/libs/android-support-v4.jar differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/libs/android-support-v7-appcompat.jar b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/libs/android-support-v7-appcompat.jar new file mode 100644 index 00000000..128329c0 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/libs/android-support-v7-appcompat.jar differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/project.properties b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/project.properties new file mode 100644 index 00000000..b2ef7dcc --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/project.properties @@ -0,0 +1,15 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system edit +# "ant.properties", and override values to adapt the script to your +# project structure. +# +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt + +# Project target. +target=android-23 +android.library=true diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_fade_in.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_fade_in.xml new file mode 100644 index 00000000..da7ee295 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_fade_in.xml @@ -0,0 +1,20 @@ + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_fade_out.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_fade_out.xml new file mode 100644 index 00000000..c81b39a9 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_fade_out.xml @@ -0,0 +1,20 @@ + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_grow_fade_in_from_bottom.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_grow_fade_in_from_bottom.xml new file mode 100644 index 00000000..79d02d44 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_grow_fade_in_from_bottom.xml @@ -0,0 +1,30 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_popup_enter.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_popup_enter.xml new file mode 100644 index 00000000..91664da1 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_popup_enter.xml @@ -0,0 +1,21 @@ + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_popup_exit.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_popup_exit.xml new file mode 100644 index 00000000..db7e8073 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_popup_exit.xml @@ -0,0 +1,21 @@ + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_shrink_fade_out_from_bottom.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_shrink_fade_out_from_bottom.xml new file mode 100644 index 00000000..9a23cd20 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_shrink_fade_out_from_bottom.xml @@ -0,0 +1,27 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_in_bottom.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_in_bottom.xml new file mode 100644 index 00000000..1afa8feb --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_in_bottom.xml @@ -0,0 +1,19 @@ + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_in_top.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_in_top.xml new file mode 100644 index 00000000..ab824f2e --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_in_top.xml @@ -0,0 +1,19 @@ + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_out_bottom.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_out_bottom.xml new file mode 100644 index 00000000..b309fe89 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_out_bottom.xml @@ -0,0 +1,19 @@ + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_out_top.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_out_top.xml new file mode 100644 index 00000000..e84d1c7f --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/anim/abc_slide_out_top.xml @@ -0,0 +1,19 @@ + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color-v11/abc_background_cache_hint_selector_material_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color-v11/abc_background_cache_hint_selector_material_dark.xml new file mode 100644 index 00000000..e0160766 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color-v11/abc_background_cache_hint_selector_material_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color-v11/abc_background_cache_hint_selector_material_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color-v11/abc_background_cache_hint_selector_material_light.xml new file mode 100644 index 00000000..290faf1a --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color-v11/abc_background_cache_hint_selector_material_light.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color-v23/abc_color_highlight_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color-v23/abc_color_highlight_material.xml new file mode 100644 index 00000000..8d536118 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color-v23/abc_color_highlight_material.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_background_cache_hint_selector_material_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_background_cache_hint_selector_material_dark.xml new file mode 100644 index 00000000..9a7af53d --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_background_cache_hint_selector_material_dark.xml @@ -0,0 +1,19 @@ + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_background_cache_hint_selector_material_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_background_cache_hint_selector_material_light.xml new file mode 100644 index 00000000..aa53f357 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_background_cache_hint_selector_material_light.xml @@ -0,0 +1,19 @@ + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_disable_only_material_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_disable_only_material_dark.xml new file mode 100644 index 00000000..724c2557 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_disable_only_material_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_disable_only_material_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_disable_only_material_light.xml new file mode 100644 index 00000000..7395e680 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_disable_only_material_light.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_material_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_material_dark.xml new file mode 100644 index 00000000..7d66d02d --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_material_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_material_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_material_light.xml new file mode 100644 index 00000000..105b643d --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_primary_text_material_light.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_search_url_text.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_search_url_text.xml new file mode 100644 index 00000000..0631d5d4 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_search_url_text.xml @@ -0,0 +1,21 @@ + + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_secondary_text_material_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_secondary_text_material_dark.xml new file mode 100644 index 00000000..6399b1d0 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_secondary_text_material_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_secondary_text_material_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_secondary_text_material_light.xml new file mode 100644 index 00000000..87c015a4 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/abc_secondary_text_material_light.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/switch_thumb_material_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/switch_thumb_material_dark.xml new file mode 100644 index 00000000..6153382c --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/switch_thumb_material_dark.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/switch_thumb_material_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/switch_thumb_material_light.xml new file mode 100644 index 00000000..94d71148 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/color/switch_thumb_material_light.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 00000000..4d9f861f Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 00000000..99110085 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 00000000..69ff9dde Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 00000000..9218981b Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 00000000..a5885763 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png new file mode 100644 index 00000000..b184dbc6 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png new file mode 100644 index 00000000..6549c527 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 00000000..88f1767f Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 00000000..d5e1a001 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 00000000..22643982 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..f61e8e3e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 00000000..0fd15563 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 00000000..65ccd8f4 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png new file mode 100644 index 00000000..b9ff1db5 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..70eb0737 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..e78bcaf5 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 00000000..9a878205 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 00000000..8610c501 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 00000000..2d971a94 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 00000000..ee408129 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 00000000..b9baa0cc Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 00000000..a87d2cdc Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 00000000..1e571f5c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_focused_holo.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_focused_holo.9.png new file mode 100644 index 00000000..c09ec90e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_focused_holo.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_longpressed_holo.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_longpressed_holo.9.png new file mode 100644 index 00000000..62fbd2cb Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_longpressed_holo.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png new file mode 100644 index 00000000..2f6ef916 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_pressed_holo_light.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_pressed_holo_light.9.png new file mode 100644 index 00000000..863ce95f Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_pressed_holo_light.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 00000000..b6d46777 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 00000000..e01c7392 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 00000000..2cf413c5 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 00000000..9d8451aa Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 00000000..4efe298e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 00000000..543dec33 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 00000000..9930b3ad Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 00000000..4cfb1a7c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 00000000..32ddf7a9 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..9de02639 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 00000000..6ad9b1d2 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 00000000..4b0b10a7 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 00000000..5b13bc17 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 00000000..0078bf6b Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 00000000..a74ab260 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 00000000..6282df4e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..2e1062fa Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..a262b0c8 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..9ed43ca4 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..4cd8a27c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..e300b7cf Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..05b1e119 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..aa7b3238 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..d02a5da1 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..a188f2fb Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..e95ba942 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..87bf8d36 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..b097e48a Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..de371581 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..ac86165d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..8b2adf6b Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..0b895042 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..7dc69341 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..884cd127 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..90fe333a Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..930630de Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 00000000..fa0ed8fe Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 00000000..7a9fcbcb Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 00000000..3b052e57 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 00000000..96a86931 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 00000000..827d6342 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png new file mode 100644 index 00000000..09084757 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png new file mode 100644 index 00000000..a5a437f3 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 00000000..d890a62a Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 00000000..06204394 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 00000000..038e0008 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..8043d4ca Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 00000000..e80681ae Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 00000000..9603e76e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png new file mode 100644 index 00000000..44c14232 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..80c06955 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..3966d6ad Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 00000000..017e45ed Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 00000000..ec0cff49 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 00000000..966938b9 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 00000000..d05f969e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 00000000..451818ce Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 00000000..a216da17 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 00000000..1e571f5c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_focused_holo.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_focused_holo.9.png new file mode 100644 index 00000000..addb54a2 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_focused_holo.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_longpressed_holo.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_longpressed_holo.9.png new file mode 100644 index 00000000..5fcd5b20 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_longpressed_holo.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png new file mode 100644 index 00000000..251b9891 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_pressed_holo_light.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_pressed_holo_light.9.png new file mode 100644 index 00000000..01efec04 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_pressed_holo_light.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 00000000..f1d1b617 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 00000000..10851f6c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 00000000..fe0ec49a Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 00000000..5f55cd55 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 00000000..10df6390 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 00000000..f83b1ef1 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 00000000..e9efb20f Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 00000000..a4ab0a1e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 00000000..db9e172d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..ed75cb81 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 00000000..00c81fca Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 00000000..12b0a79c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 00000000..3ffa2519 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 00000000..0eb61f15 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 00000000..0c766f30 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 00000000..4f66d7ad Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-v21/abc_action_bar_item_background_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-v21/abc_action_bar_item_background_material.xml new file mode 100644 index 00000000..595c56c6 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-v21/abc_action_bar_item_background_material.xml @@ -0,0 +1,18 @@ + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-v21/abc_btn_colored_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-v21/abc_btn_colored_material.xml new file mode 100644 index 00000000..10251aad --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-v21/abc_btn_colored_material.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-v23/abc_control_background_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-v23/abc_control_background_material.xml new file mode 100644 index 00000000..0b540390 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-v23/abc_control_background_material.xml @@ -0,0 +1,19 @@ + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 00000000..6284eaaa Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 00000000..49025208 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 00000000..59a683ab Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 00000000..03bf49cc Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 00000000..342323b4 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png new file mode 100644 index 00000000..c0333f98 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png new file mode 100644 index 00000000..2f29c39c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 00000000..a854864d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 00000000..726b1dc5 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 00000000..600178a9 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..c465e82f Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 00000000..76e07f09 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 00000000..1015e1f4 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png new file mode 100644 index 00000000..b3fa6bc2 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..c8a6d258 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..3c5e683e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 00000000..f87733af Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 00000000..9aabc43c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 00000000..c039c8e0 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 00000000..b57ee193 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 00000000..76f26965 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 00000000..d0385ba4 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 00000000..1e571f5c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_focused_holo.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_focused_holo.9.png new file mode 100644 index 00000000..67c25aef Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_focused_holo.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_longpressed_holo.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_longpressed_holo.9.png new file mode 100644 index 00000000..17c34a1a Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_longpressed_holo.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png new file mode 100644 index 00000000..988548a1 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png new file mode 100644 index 00000000..15fcf6a3 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 00000000..65275b38 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 00000000..5b58e760 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 00000000..09d10225 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 00000000..b5dd854b Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 00000000..138f643f Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 00000000..cd41d74c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 00000000..8d67525e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 00000000..2b4734d2 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 00000000..805cb291 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..bcf6b7f0 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 00000000..f0752d2b Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 00000000..2242d2f9 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 00000000..8ff3a830 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 00000000..e7e693a7 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 00000000..819171ad Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 00000000..4def8c8f Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png new file mode 100644 index 00000000..4eae28fd Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 00000000..accf80e4 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 00000000..8c82ec3d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 00000000..8fc0a9b8 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 00000000..92b712e5 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png new file mode 100644 index 00000000..78bbeba1 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png new file mode 100644 index 00000000..c4ba8e64 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 00000000..f026a41c Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 00000000..c8b9f689 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png new file mode 100644 index 00000000..f6d2f329 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..39178bf3 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 00000000..f54f4f9d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png new file mode 100644 index 00000000..65cf0c1e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png new file mode 100644 index 00000000..d0416237 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..9dff893e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..a1f8c333 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 00000000..28a3bbf2 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 00000000..29a4e529 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 00000000..162ab984 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 00000000..a1866ba4 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 00000000..d967ae70 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 00000000..5baef9ff Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png new file mode 100644 index 00000000..987b2bc2 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_focused_holo.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_focused_holo.9.png new file mode 100644 index 00000000..8b050e85 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_focused_holo.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png new file mode 100644 index 00000000..00e370a1 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png new file mode 100644 index 00000000..719c7b5e Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png new file mode 100644 index 00000000..75bd5803 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png new file mode 100644 index 00000000..9cc36666 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png new file mode 100644 index 00000000..224a0815 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png new file mode 100644 index 00000000..f7f306db Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png new file mode 100644 index 00000000..ee4bfe7d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png new file mode 100644 index 00000000..52687451 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 00000000..adffc147 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 00000000..f3d16d57 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png new file mode 100644 index 00000000..6a82af50 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png new file mode 100644 index 00000000..c3791fc6 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..6940b603 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 00000000..c74b3fcf Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 00000000..eeb74c86 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png new file mode 100644 index 00000000..4d3d3a4d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png new file mode 100644 index 00000000..c5acb84f Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png new file mode 100644 index 00000000..30328ae1 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png new file mode 100644 index 00000000..d4f36506 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png new file mode 100644 index 00000000..4dc870e4 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png new file mode 100644 index 00000000..4e18de21 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png new file mode 100644 index 00000000..5fa32665 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png new file mode 100644 index 00000000..c11cb2ec Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png new file mode 100644 index 00000000..6fd5bfef Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png new file mode 100644 index 00000000..99e68cc0 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png new file mode 100644 index 00000000..16b0f1d4 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png new file mode 100644 index 00000000..7b2a480a Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png new file mode 100644 index 00000000..fe93d873 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png new file mode 100644 index 00000000..4b2d05ab Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png new file mode 100644 index 00000000..16e9e14d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png new file mode 100644 index 00000000..129d30f8 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png new file mode 100644 index 00000000..fa6ab02b Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png new file mode 100644 index 00000000..77318c71 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png new file mode 100644 index 00000000..098c25a1 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png new file mode 100644 index 00000000..76c4eeb2 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png new file mode 100644 index 00000000..e5a43bbe Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png new file mode 100644 index 00000000..eeb37c1d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png new file mode 100644 index 00000000..6b8bc0a8 Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png new file mode 100644 index 00000000..85c81c1d Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png new file mode 100644 index 00000000..929be19b Binary files /dev/null and b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png differ diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_borderless_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_borderless_material.xml new file mode 100644 index 00000000..f3894600 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_borderless_material.xml @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_check_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_check_material.xml new file mode 100644 index 00000000..4934a929 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_check_material.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_colored_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_colored_material.xml new file mode 100644 index 00000000..ec93b8b6 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_colored_material.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_default_mtrl_shape.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_default_mtrl_shape.xml new file mode 100644 index 00000000..c50d4b10 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_default_mtrl_shape.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_radio_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_radio_material.xml new file mode 100644 index 00000000..6e9f9cf3 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_btn_radio_material.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_cab_background_internal_bg.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_cab_background_internal_bg.xml new file mode 100644 index 00000000..9faf60ac --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_cab_background_internal_bg.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_cab_background_top_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_cab_background_top_material.xml new file mode 100644 index 00000000..f20add7e --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_cab_background_top_material.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_dialog_material_background_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_dialog_material_background_dark.xml new file mode 100644 index 00000000..41c4a6f8 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_dialog_material_background_dark.xml @@ -0,0 +1,26 @@ + + + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_dialog_material_background_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_dialog_material_background_light.xml new file mode 100644 index 00000000..248b13af --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_dialog_material_background_light.xml @@ -0,0 +1,26 @@ + + + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_edit_text_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_edit_text_material.xml new file mode 100644 index 00000000..46c4e912 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_edit_text_material.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_item_background_holo_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_item_background_holo_dark.xml new file mode 100644 index 00000000..72162c22 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_item_background_holo_dark.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_item_background_holo_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_item_background_holo_light.xml new file mode 100644 index 00000000..1c180b2e --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_item_background_holo_light.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_background_transition_holo_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_background_transition_holo_dark.xml new file mode 100644 index 00000000..0add58c8 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_background_transition_holo_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_background_transition_holo_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_background_transition_holo_light.xml new file mode 100644 index 00000000..0c1d3e67 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_background_transition_holo_light.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_holo_dark.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_holo_dark.xml new file mode 100644 index 00000000..1fb5fc45 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_holo_dark.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_holo_light.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_holo_light.xml new file mode 100644 index 00000000..8d240472 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_list_selector_holo_light.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_ratingbar_full_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_ratingbar_full_material.xml new file mode 100644 index 00000000..535e2da2 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_ratingbar_full_material.xml @@ -0,0 +1,24 @@ + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_seekbar_thumb_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_seekbar_thumb_material.xml new file mode 100644 index 00000000..7fea83bc --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_seekbar_thumb_material.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_seekbar_track_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_seekbar_track_material.xml new file mode 100644 index 00000000..e68ac03e --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_seekbar_track_material.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_spinner_textfield_background_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_spinner_textfield_background_material.xml new file mode 100644 index 00000000..d0f46a80 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_spinner_textfield_background_material.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_switch_thumb_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_switch_thumb_material.xml new file mode 100644 index 00000000..ee96ec2e --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_switch_thumb_material.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_tab_indicator_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_tab_indicator_material.xml new file mode 100644 index 00000000..1a8de1b6 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_tab_indicator_material.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_text_cursor_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_text_cursor_material.xml new file mode 100644 index 00000000..885670c9 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_text_cursor_material.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_textfield_search_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_textfield_search_material.xml new file mode 100644 index 00000000..08873966 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/drawable/abc_textfield_search_material.xml @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_bar_title_item.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_bar_title_item.xml new file mode 100644 index 00000000..194afb74 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_bar_title_item.xml @@ -0,0 +1,34 @@ + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_bar_up_container.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_bar_up_container.xml new file mode 100644 index 00000000..f46550a5 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_bar_up_container.xml @@ -0,0 +1,23 @@ + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_bar_view_list_nav_layout.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_bar_view_list_nav_layout.xml new file mode 100644 index 00000000..5c105ab5 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_bar_view_list_nav_layout.xml @@ -0,0 +1,23 @@ + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_menu_item_layout.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_menu_item_layout.xml new file mode 100644 index 00000000..150ea50d --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_menu_item_layout.xml @@ -0,0 +1,30 @@ + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_menu_layout.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_menu_layout.xml new file mode 100644 index 00000000..4918d2fb --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_menu_layout.xml @@ -0,0 +1,24 @@ + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_mode_bar.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_mode_bar.xml new file mode 100644 index 00000000..34b56a1b --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_mode_bar.xml @@ -0,0 +1,25 @@ + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_mode_close_item_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_mode_close_item_material.xml new file mode 100644 index 00000000..2944d983 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_action_mode_close_item_material.xml @@ -0,0 +1,26 @@ + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_activity_chooser_view.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_activity_chooser_view.xml new file mode 100644 index 00000000..85fd94e3 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_activity_chooser_view.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_activity_chooser_view_list_item.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_activity_chooser_view_list_item.xml new file mode 100644 index 00000000..887427d8 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_activity_chooser_view_list_item.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_alert_dialog_button_bar_material.xml b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_alert_dialog_button_bar_material.xml new file mode 100644 index 00000000..44057071 --- /dev/null +++ b/libs/android-support-appcompat-v7-23-1-0-exploded-aar/res/layout/abc_alert_dialog_button_bar_material.xml @@ -0,0 +1,59 @@ + + + + + +