├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── Screenshot_2018-02-20-09-48-41.png ├── Screenshot_2018-02-20-09-49-24.png ├── _config.yml ├── app ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── javier │ │ │ │ │ └── app │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── javier │ │ │ │ └── app │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ └── debug │ │ │ ├── android │ │ │ └── support │ │ │ │ ├── compat │ │ │ │ └── R.java │ │ │ │ ├── coreui │ │ │ │ └── R.java │ │ │ │ ├── coreutils │ │ │ │ └── R.java │ │ │ │ ├── fragment │ │ │ │ └── R.java │ │ │ │ ├── graphics │ │ │ │ └── drawable │ │ │ │ │ ├── R.java │ │ │ │ │ └── animated │ │ │ │ │ └── R.java │ │ │ │ ├── mediacompat │ │ │ │ └── R.java │ │ │ │ ├── v4 │ │ │ │ └── R.java │ │ │ │ └── v7 │ │ │ │ ├── appcompat │ │ │ │ └── R.java │ │ │ │ └── recyclerview │ │ │ │ └── R.java │ │ │ ├── com │ │ │ ├── adroitandroid │ │ │ │ └── chipcloud │ │ │ │ │ └── R.java │ │ │ ├── afollestad │ │ │ │ └── materialdialogs │ │ │ │ │ └── R.java │ │ │ ├── codetroopers │ │ │ │ └── betterpickers │ │ │ │ │ └── R.java │ │ │ ├── example │ │ │ │ └── crystalrangeseekbar │ │ │ │ │ └── R.java │ │ │ ├── javier │ │ │ │ ├── app │ │ │ │ │ └── R.java │ │ │ │ └── filterview │ │ │ │ │ └── R.java │ │ │ └── rengwuxian │ │ │ │ └── materialedittext │ │ │ │ └── R.java │ │ │ ├── me │ │ │ └── zhanghai │ │ │ │ └── android │ │ │ │ └── materialprogressbar │ │ │ │ └── R.java │ │ │ └── mehdi │ │ │ └── sakout │ │ │ └── fancybuttons │ │ │ └── R.java │ ├── intermediates │ │ ├── assets │ │ │ └── debug │ │ │ │ ├── backward │ │ │ │ ├── fonts │ │ │ │ ├── AndroidClockMono-Thin.ttf │ │ │ │ ├── Google Android License.txt.txt │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ ├── fontawesome.ttf │ │ │ │ └── robotoregular.ttf │ │ │ │ └── zone.tab │ │ ├── blame │ │ │ └── res │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── multi │ │ │ │ │ └── values.json │ │ │ │ └── debug │ │ │ │ ├── multi │ │ │ │ ├── color.json │ │ │ │ ├── layout.json │ │ │ │ ├── values-af.json │ │ │ │ ├── values-am.json │ │ │ │ ├── values-ar.json │ │ │ │ ├── values-az-rAZ.json │ │ │ │ ├── values-b+sr+Latn.json │ │ │ │ ├── values-be-rBY.json │ │ │ │ ├── values-bg.json │ │ │ │ ├── values-bn-rBD.json │ │ │ │ ├── values-bs-rBA.json │ │ │ │ ├── values-ca.json │ │ │ │ ├── values-cs.json │ │ │ │ ├── values-da.json │ │ │ │ ├── values-de.json │ │ │ │ ├── values-el.json │ │ │ │ ├── values-en-rAU.json │ │ │ │ ├── values-en-rGB.json │ │ │ │ ├── values-en-rIN.json │ │ │ │ ├── values-es-rUS.json │ │ │ │ ├── values-es.json │ │ │ │ ├── values-et-rEE.json │ │ │ │ ├── values-eu-rES.json │ │ │ │ ├── values-fa.json │ │ │ │ ├── values-fi.json │ │ │ │ ├── values-fr-rCA.json │ │ │ │ ├── values-fr.json │ │ │ │ ├── values-gl-rES.json │ │ │ │ ├── values-gu-rIN.json │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ ├── values-hi.json │ │ │ │ ├── values-hr.json │ │ │ │ ├── values-hu.json │ │ │ │ ├── values-hy-rAM.json │ │ │ │ ├── values-in.json │ │ │ │ ├── values-is-rIS.json │ │ │ │ ├── values-it.json │ │ │ │ ├── values-iw.json │ │ │ │ ├── values-ja.json │ │ │ │ ├── values-ka-rGE.json │ │ │ │ ├── values-kk-rKZ.json │ │ │ │ ├── values-km-rKH.json │ │ │ │ ├── values-kn-rIN.json │ │ │ │ ├── values-ko.json │ │ │ │ ├── values-ky-rKG.json │ │ │ │ ├── values-land.json │ │ │ │ ├── values-large-hdpi-v4.json │ │ │ │ ├── values-large-v4.json │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ ├── values-lo-rLA.json │ │ │ │ ├── values-lt.json │ │ │ │ ├── values-lv.json │ │ │ │ ├── values-mdpi-v4.json │ │ │ │ ├── values-mk-rMK.json │ │ │ │ ├── values-ml-rIN.json │ │ │ │ ├── values-mn-rMN.json │ │ │ │ ├── values-mr-rIN.json │ │ │ │ ├── values-ms-rMY.json │ │ │ │ ├── values-my-rMM.json │ │ │ │ ├── values-nb.json │ │ │ │ ├── values-ne-rNP.json │ │ │ │ ├── values-night-v8.json │ │ │ │ ├── values-nl.json │ │ │ │ ├── values-pa-rIN.json │ │ │ │ ├── values-pl.json │ │ │ │ ├── values-port.json │ │ │ │ ├── values-pt-rBR.json │ │ │ │ ├── values-pt-rPT.json │ │ │ │ ├── values-pt.json │ │ │ │ ├── values-ro.json │ │ │ │ ├── values-ru.json │ │ │ │ ├── values-si-rLK.json │ │ │ │ ├── values-sk.json │ │ │ │ ├── values-sl.json │ │ │ │ ├── values-sq-rAL.json │ │ │ │ ├── values-sr.json │ │ │ │ ├── values-sv.json │ │ │ │ ├── values-sw.json │ │ │ │ ├── values-sw600dp-land-v13.json │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ ├── values-sw720dp-v13.json │ │ │ │ ├── values-ta-rIN.json │ │ │ │ ├── values-te-rIN.json │ │ │ │ ├── values-th.json │ │ │ │ ├── values-tl.json │ │ │ │ ├── values-tr.json │ │ │ │ ├── values-uk.json │ │ │ │ ├── values-ur-rPK.json │ │ │ │ ├── values-uz-rUZ.json │ │ │ │ ├── values-v11.json │ │ │ │ ├── values-v12.json │ │ │ │ ├── values-v13.json │ │ │ │ ├── values-v14.json │ │ │ │ ├── values-v16.json │ │ │ │ ├── values-v17.json │ │ │ │ ├── values-v18.json │ │ │ │ ├── values-v21.json │ │ │ │ ├── values-v22.json │ │ │ │ ├── values-v23.json │ │ │ │ ├── values-v24.json │ │ │ │ ├── values-v25.json │ │ │ │ ├── values-vi.json │ │ │ │ ├── values-w270dp-h560dp-v13.json │ │ │ │ ├── values-xhdpi-v4.json │ │ │ │ ├── values-xlarge-mdpi-v4.json │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ ├── values-xxhdpi-v4.json │ │ │ │ ├── values-xxxhdpi-v4.json │ │ │ │ ├── values-zh-rCN.json │ │ │ │ ├── values-zh-rHK.json │ │ │ │ ├── values-zh-rTW.json │ │ │ │ ├── values-zh.json │ │ │ │ ├── values-zu.json │ │ │ │ └── values.json │ │ │ │ └── single │ │ │ │ ├── anim.json │ │ │ │ ├── color-v11.json │ │ │ │ ├── color-v23.json │ │ │ │ ├── color.json │ │ │ │ ├── drawable-anydpi-v21.json │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ ├── drawable-hdpi.json │ │ │ │ ├── drawable-ldpi-v4.json │ │ │ │ ├── drawable-ldrtl-hdpi-v17.json │ │ │ │ ├── drawable-ldrtl-mdpi-v17.json │ │ │ │ ├── drawable-ldrtl-xhdpi-v17.json │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17.json │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17.json │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ ├── drawable-mdpi.json │ │ │ │ ├── drawable-sw600dp-hdpi-v13.json │ │ │ │ ├── drawable-sw600dp-mdpi-v13.json │ │ │ │ ├── drawable-sw600dp-xhdpi-v13.json │ │ │ │ ├── drawable-v21.json │ │ │ │ ├── drawable-v23.json │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ ├── drawable-xhdpi.json │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ ├── drawable-xxhdpi.json │ │ │ │ ├── drawable-xxxhdpi-v4.json │ │ │ │ ├── drawable-xxxhdpi.json │ │ │ │ ├── drawable.json │ │ │ │ ├── layout-land.json │ │ │ │ ├── layout-ldrtl-v17.json │ │ │ │ ├── layout-sw600dp-land-v13.json │ │ │ │ ├── layout-sw600dp-v13.json │ │ │ │ ├── layout-v11.json │ │ │ │ ├── layout-v14.json │ │ │ │ ├── layout-v16.json │ │ │ │ ├── layout-v21.json │ │ │ │ ├── layout-w270dp-h560dp-v13.json │ │ │ │ ├── layout.json │ │ │ │ ├── mipmap-hdpi.json │ │ │ │ ├── mipmap-mdpi.json │ │ │ │ ├── mipmap-xhdpi.json │ │ │ │ ├── mipmap-xxhdpi.json │ │ │ │ └── mipmap-xxxhdpi.json │ │ ├── classes │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ ├── compat │ │ │ │ │ └── R.class │ │ │ │ │ ├── coreui │ │ │ │ │ └── R.class │ │ │ │ │ ├── coreutils │ │ │ │ │ └── R.class │ │ │ │ │ ├── fragment │ │ │ │ │ └── R.class │ │ │ │ │ ├── graphics │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ └── animated │ │ │ │ │ │ └── R.class │ │ │ │ │ ├── mediacompat │ │ │ │ │ └── R.class │ │ │ │ │ ├── v4 │ │ │ │ │ └── R.class │ │ │ │ │ └── v7 │ │ │ │ │ ├── appcompat │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ └── recyclerview │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ ├── com │ │ │ │ ├── adroitandroid │ │ │ │ │ └── chipcloud │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$array.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ ├── afollestad │ │ │ │ │ └── materialdialogs │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ ├── codetroopers │ │ │ │ │ └── betterpickers │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$array.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$plurals.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ ├── example │ │ │ │ │ └── crystalrangeseekbar │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ ├── javier │ │ │ │ │ ├── app │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── MainActivity$1.class │ │ │ │ │ │ ├── MainActivity$10.class │ │ │ │ │ │ ├── MainActivity$11.class │ │ │ │ │ │ ├── MainActivity$12.class │ │ │ │ │ │ ├── MainActivity$2.class │ │ │ │ │ │ ├── MainActivity$3.class │ │ │ │ │ │ ├── MainActivity$4.class │ │ │ │ │ │ ├── MainActivity$5.class │ │ │ │ │ │ ├── MainActivity$6.class │ │ │ │ │ │ ├── MainActivity$7.class │ │ │ │ │ │ ├── MainActivity$8.class │ │ │ │ │ │ ├── MainActivity$9.class │ │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$array.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$mipmap.class │ │ │ │ │ │ ├── R$plurals.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ └── filterview │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$array.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$plurals.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ └── rengwuxian │ │ │ │ │ └── materialedittext │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ ├── me │ │ │ │ └── zhanghai │ │ │ │ │ └── android │ │ │ │ │ └── materialprogressbar │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ └── mehdi │ │ │ │ └── sakout │ │ │ │ └── fancybuttons │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ ├── incremental-safeguard │ │ │ └── debug │ │ │ │ └── tag.txt │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ └── dependency.store │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ ├── values-be-rBY │ │ │ │ │ │ └── values-be-rBY.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ └── values-bn-rBD.xml │ │ │ │ │ ├── values-bs-rBA │ │ │ │ │ │ └── values-bs-rBA.xml │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ ├── values-large-hdpi-v4 │ │ │ │ │ │ └── values-large-hdpi-v4.xml │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mdpi-v4 │ │ │ │ │ │ └── values-mdpi-v4.xml │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw600dp-land-v13 │ │ │ │ │ │ └── values-sw600dp-land-v13.xml │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ ├── values-sw720dp-v13 │ │ │ │ │ │ └── values-sw720dp-v13.xml │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-w270dp-h560dp-v13 │ │ │ │ │ │ └── values-w270dp-h560dp-v13.xml │ │ │ │ │ ├── values-xhdpi-v4 │ │ │ │ │ │ └── values-xhdpi-v4.xml │ │ │ │ │ ├── values-xlarge-mdpi-v4 │ │ │ │ │ │ └── values-xlarge-mdpi-v4.xml │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ ├── values-xxhdpi-v4 │ │ │ │ │ │ └── values-xxhdpi-v4.xml │ │ │ │ │ ├── values-xxxhdpi-v4 │ │ │ │ │ │ └── values-xxxhdpi-v4.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zh │ │ │ │ │ │ └── values-zh.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ └── packageDebug │ │ │ │ ├── dex-renamer-state.txt │ │ │ │ ├── file-input-save-data.txt │ │ │ │ └── zip-cache │ │ │ │ └── 6_iYhwaCPd4cC5jmAtsGfqcDdv4= │ │ ├── manifest │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── manifests │ │ │ └── full │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── pre-dexed │ │ │ └── debug │ │ │ │ ├── classes_0d0b0d25ddb276da1430b86120583d101349b49f.jar │ │ │ │ ├── classes_0f72eae2f4f6d8e56a0d22fe7e9e92e98e09b9b0.jar │ │ │ │ ├── classes_1634cb0b004df0906f7685c60676092448fc91a2.jar │ │ │ │ ├── classes_3572842767620fa85fd1aff0e6eb506ab6d2c07c.jar │ │ │ │ ├── classes_390eebe1da95fa271e239d2e48ab0240b8477d0b.jar │ │ │ │ ├── classes_3eec8d24072039defd30af7047918da49eca5d38.jar │ │ │ │ ├── classes_573cd025c4b67a94a8522764967b6039b458dd4b.jar │ │ │ │ ├── classes_842e8634f6c5aa99bd541c5caaee2b152c33d862.jar │ │ │ │ ├── classes_8a58112f1db69ecbd2edb831ab6d60359f153c56.jar │ │ │ │ ├── classes_aeafb13e742cf58e40d0f02dab75e4fa1a0d1847.jar │ │ │ │ ├── classes_c878301a86fe530ba1dbc6dc6aada8b550d18367.jar │ │ │ │ ├── classes_c8e0f0f4c754feb0e06f22f8d9c9079c0de6fd30.jar │ │ │ │ ├── classes_c9dab01587da75fe0dae439114150bc2efbc43fb.jar │ │ │ │ ├── classes_d8617e58bd97716491dc7b861870e20321c7abd7.jar │ │ │ │ ├── classes_dfcdb4a900567ee70587eab43b80b0ccfd534c1b.jar │ │ │ │ ├── classes_ef3bd0197267fd2883a27ec70a6bc0d4b3a66aa0.jar │ │ │ │ ├── classes_f0591631711cf3b68d74203521506dcd708d0eb9.jar │ │ │ │ ├── classes_fb15a2b6e3ce6162588553adca5660b5dbbdfb4e.jar │ │ │ │ ├── debug_159c4cfb729fdb5ca7a4f933cf62e402d690d2c4.jar │ │ │ │ ├── gson-2.8.0_b5096f20fa120ce32c2fee49d8b5c6fe85735a30.jar │ │ │ │ ├── library-2.4.0_8bb566b3be158287e649e3820acf449eb451f055.jar │ │ │ │ ├── picasso-2.5.2_96bf1700ebd3e59bdaf9d634a7d21967dd7e6c6c.jar │ │ │ │ └── support-annotations-25.3.1_4839eeaada8f38d19e7e1375c1bc4940b7df9d69.jar │ │ ├── res │ │ │ ├── merged │ │ │ │ └── debug │ │ │ │ │ ├── anim │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ ├── abc_slide_out_top.xml │ │ │ │ │ ├── decelerate_cubic.xml │ │ │ │ │ ├── popup_enter.xml │ │ │ │ │ └── popup_exit.xml │ │ │ │ │ ├── color-v11 │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ ├── color-v23 │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ ├── abc_color_highlight_material.xml │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ ├── abc_tint_switch_thumb.xml │ │ │ │ │ └── abc_tint_switch_track.xml │ │ │ │ │ ├── color │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ ├── abc_hint_foreground_material_dark.xml │ │ │ │ │ ├── abc_hint_foreground_material_light.xml │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ ├── abc_tint_switch_thumb.xml │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ ├── date_picker_selector.xml │ │ │ │ │ ├── date_picker_year_selector.xml │ │ │ │ │ ├── dialog_text_color_holo_dark.xml │ │ │ │ │ ├── dialog_text_color_holo_light.xml │ │ │ │ │ ├── done_text_color.xml │ │ │ │ │ ├── done_text_color_dark.xml │ │ │ │ │ ├── recurrence_bubble_text_color.xml │ │ │ │ │ ├── recurrence_spinner_text_color.xml │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ ├── drawable-anydpi-v21 │ │ │ │ │ └── md_nav_back.xml │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── dialog_full_holo_dark.9.png │ │ │ │ │ ├── dialog_full_holo_light.9.png │ │ │ │ │ ├── ic_account_black_18dp.png │ │ │ │ │ ├── ic_account_black_24dp.png │ │ │ │ │ ├── ic_account_black_36dp.png │ │ │ │ │ ├── ic_account_black_48dp.png │ │ │ │ │ ├── ic_account_grey600_18dp.png │ │ │ │ │ ├── ic_account_grey600_24dp.png │ │ │ │ │ ├── ic_account_grey600_36dp.png │ │ │ │ │ ├── ic_account_grey600_48dp.png │ │ │ │ │ ├── ic_account_white_18dp.png │ │ │ │ │ ├── ic_account_white_24dp.png │ │ │ │ │ ├── ic_account_white_36dp.png │ │ │ │ │ ├── ic_account_white_48dp.png │ │ │ │ │ ├── ic_android_black_18dp.png │ │ │ │ │ ├── ic_android_black_24dp.png │ │ │ │ │ ├── ic_android_black_36dp.png │ │ │ │ │ ├── ic_android_black_48dp.png │ │ │ │ │ ├── ic_android_grey600_18dp.png │ │ │ │ │ ├── ic_android_grey600_24dp.png │ │ │ │ │ ├── ic_android_grey600_36dp.png │ │ │ │ │ ├── ic_android_grey600_48dp.png │ │ │ │ │ ├── ic_android_white_18dp.png │ │ │ │ │ ├── ic_android_white_24dp.png │ │ │ │ │ ├── ic_android_white_36dp.png │ │ │ │ │ ├── ic_android_white_48dp.png │ │ │ │ │ ├── ic_backspace_disabled_dark.png │ │ │ │ │ ├── ic_backspace_disabled_light.png │ │ │ │ │ ├── ic_backspace_normal_dark.png │ │ │ │ │ ├── ic_backspace_normal_light.png │ │ │ │ │ ├── ic_calendar_black_18dp.png │ │ │ │ │ ├── ic_calendar_black_24dp.png │ │ │ │ │ ├── ic_calendar_black_36dp.png │ │ │ │ │ ├── ic_calendar_black_48dp.png │ │ │ │ │ ├── ic_calendar_grey600_18dp.png │ │ │ │ │ ├── ic_calendar_grey600_24dp.png │ │ │ │ │ ├── ic_calendar_grey600_36dp.png │ │ │ │ │ ├── ic_calendar_grey600_48dp.png │ │ │ │ │ ├── ic_calendar_white_18dp.png │ │ │ │ │ ├── ic_calendar_white_24dp.png │ │ │ │ │ ├── ic_calendar_white_36dp.png │ │ │ │ │ ├── ic_calendar_white_48dp.png │ │ │ │ │ ├── ic_cash_usd_black_18dp.png │ │ │ │ │ ├── ic_cash_usd_black_24dp.png │ │ │ │ │ ├── ic_cash_usd_black_36dp.png │ │ │ │ │ ├── ic_cash_usd_black_48dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_18dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_24dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_36dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_48dp.png │ │ │ │ │ ├── ic_cash_usd_white_18dp.png │ │ │ │ │ ├── ic_cash_usd_white_24dp.png │ │ │ │ │ ├── ic_cash_usd_white_36dp.png │ │ │ │ │ ├── ic_cash_usd_white_48dp.png │ │ │ │ │ ├── ic_clear_search_holo_light.png │ │ │ │ │ ├── ic_clock_black_18dp.png │ │ │ │ │ ├── ic_clock_black_24dp.png │ │ │ │ │ ├── ic_clock_black_36dp.png │ │ │ │ │ ├── ic_clock_black_48dp.png │ │ │ │ │ ├── ic_clock_grey600_18dp.png │ │ │ │ │ ├── ic_clock_grey600_24dp.png │ │ │ │ │ ├── ic_clock_grey600_36dp.png │ │ │ │ │ ├── ic_clock_grey600_48dp.png │ │ │ │ │ ├── ic_clock_white_18dp.png │ │ │ │ │ ├── ic_clock_white_24dp.png │ │ │ │ │ ├── ic_clock_white_36dp.png │ │ │ │ │ ├── ic_clock_white_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ │ │ │ ├── ic_layers_black_18dp.png │ │ │ │ │ ├── ic_layers_black_24dp.png │ │ │ │ │ ├── ic_layers_black_36dp.png │ │ │ │ │ ├── ic_layers_black_48dp.png │ │ │ │ │ ├── ic_layers_grey600_18dp.png │ │ │ │ │ ├── ic_layers_grey600_24dp.png │ │ │ │ │ ├── ic_layers_grey600_36dp.png │ │ │ │ │ ├── ic_layers_grey600_48dp.png │ │ │ │ │ ├── ic_layers_white_18dp.png │ │ │ │ │ ├── ic_layers_white_24dp.png │ │ │ │ │ ├── ic_layers_white_36dp.png │ │ │ │ │ ├── ic_layers_white_48dp.png │ │ │ │ │ ├── ic_recurrence_bubble_disabled.png │ │ │ │ │ ├── ic_recurrence_bubble_fill.png │ │ │ │ │ ├── ic_recurrence_bubble_outline.png │ │ │ │ │ ├── ic_recurrence_bubble_outline_disabled.png │ │ │ │ │ ├── ic_search_holo_light.png │ │ │ │ │ ├── ic_window_close_black_18dp.png │ │ │ │ │ ├── ic_window_close_black_24dp.png │ │ │ │ │ ├── ic_window_close_black_36dp.png │ │ │ │ │ ├── ic_window_close_black_48dp.png │ │ │ │ │ ├── ic_window_close_grey600_18dp.png │ │ │ │ │ ├── ic_window_close_grey600_24dp.png │ │ │ │ │ ├── ic_window_close_grey600_36dp.png │ │ │ │ │ ├── ic_window_close_grey600_48dp.png │ │ │ │ │ ├── ic_window_close_white_18dp.png │ │ │ │ │ ├── ic_window_close_white_24dp.png │ │ │ │ │ ├── ic_window_close_white_36dp.png │ │ │ │ │ ├── ic_window_close_white_48dp.png │ │ │ │ │ ├── md_nav_back.png │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ ├── notify_panel_notification_icon_bg.png │ │ │ │ │ ├── spinner_default_holo_light.9.png │ │ │ │ │ ├── spinner_disabled_holo_light.9.png │ │ │ │ │ ├── spinner_focused_holo_light.9.png │ │ │ │ │ ├── spinner_pressed_holo_light.9.png │ │ │ │ │ ├── textfield_activated_holo_light.9.png │ │ │ │ │ ├── textfield_default_holo_light.9.png │ │ │ │ │ ├── textfield_disabled_focused_holo_light.9.png │ │ │ │ │ ├── textfield_disabled_holo_light.9.png │ │ │ │ │ └── textfield_focused_holo_light.9.png │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ ├── drawable-ldpi-v4 │ │ │ │ │ └── md_nav_back.png │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── dialog_full_holo_dark.9.png │ │ │ │ │ ├── dialog_full_holo_light.9.png │ │ │ │ │ ├── ic_account_black_18dp.png │ │ │ │ │ ├── ic_account_black_24dp.png │ │ │ │ │ ├── ic_account_black_36dp.png │ │ │ │ │ ├── ic_account_black_48dp.png │ │ │ │ │ ├── ic_account_grey600_18dp.png │ │ │ │ │ ├── ic_account_grey600_24dp.png │ │ │ │ │ ├── ic_account_grey600_36dp.png │ │ │ │ │ ├── ic_account_grey600_48dp.png │ │ │ │ │ ├── ic_account_white_18dp.png │ │ │ │ │ ├── ic_account_white_24dp.png │ │ │ │ │ ├── ic_account_white_36dp.png │ │ │ │ │ ├── ic_account_white_48dp.png │ │ │ │ │ ├── ic_android_black_18dp.png │ │ │ │ │ ├── ic_android_black_24dp.png │ │ │ │ │ ├── ic_android_black_36dp.png │ │ │ │ │ ├── ic_android_black_48dp.png │ │ │ │ │ ├── ic_android_grey600_18dp.png │ │ │ │ │ ├── ic_android_grey600_24dp.png │ │ │ │ │ ├── ic_android_grey600_36dp.png │ │ │ │ │ ├── ic_android_grey600_48dp.png │ │ │ │ │ ├── ic_android_white_18dp.png │ │ │ │ │ ├── ic_android_white_24dp.png │ │ │ │ │ ├── ic_android_white_36dp.png │ │ │ │ │ ├── ic_android_white_48dp.png │ │ │ │ │ ├── ic_backspace_disabled_dark.png │ │ │ │ │ ├── ic_backspace_disabled_light.png │ │ │ │ │ ├── ic_backspace_normal_dark.png │ │ │ │ │ ├── ic_backspace_normal_light.png │ │ │ │ │ ├── ic_calendar_black_18dp.png │ │ │ │ │ ├── ic_calendar_black_24dp.png │ │ │ │ │ ├── ic_calendar_black_36dp.png │ │ │ │ │ ├── ic_calendar_black_48dp.png │ │ │ │ │ ├── ic_calendar_grey600_18dp.png │ │ │ │ │ ├── ic_calendar_grey600_24dp.png │ │ │ │ │ ├── ic_calendar_grey600_36dp.png │ │ │ │ │ ├── ic_calendar_grey600_48dp.png │ │ │ │ │ ├── ic_calendar_white_18dp.png │ │ │ │ │ ├── ic_calendar_white_24dp.png │ │ │ │ │ ├── ic_calendar_white_36dp.png │ │ │ │ │ ├── ic_calendar_white_48dp.png │ │ │ │ │ ├── ic_cash_usd_black_18dp.png │ │ │ │ │ ├── ic_cash_usd_black_24dp.png │ │ │ │ │ ├── ic_cash_usd_black_36dp.png │ │ │ │ │ ├── ic_cash_usd_black_48dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_18dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_24dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_36dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_48dp.png │ │ │ │ │ ├── ic_cash_usd_white_18dp.png │ │ │ │ │ ├── ic_cash_usd_white_24dp.png │ │ │ │ │ ├── ic_cash_usd_white_36dp.png │ │ │ │ │ ├── ic_cash_usd_white_48dp.png │ │ │ │ │ ├── ic_clear_search_holo_light.png │ │ │ │ │ ├── ic_clock_black_18dp.png │ │ │ │ │ ├── ic_clock_black_24dp.png │ │ │ │ │ ├── ic_clock_black_36dp.png │ │ │ │ │ ├── ic_clock_black_48dp.png │ │ │ │ │ ├── ic_clock_grey600_18dp.png │ │ │ │ │ ├── ic_clock_grey600_24dp.png │ │ │ │ │ ├── ic_clock_grey600_36dp.png │ │ │ │ │ ├── ic_clock_grey600_48dp.png │ │ │ │ │ ├── ic_clock_white_18dp.png │ │ │ │ │ ├── ic_clock_white_24dp.png │ │ │ │ │ ├── ic_clock_white_36dp.png │ │ │ │ │ ├── ic_clock_white_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ │ │ │ ├── ic_layers_black_18dp.png │ │ │ │ │ ├── ic_layers_black_24dp.png │ │ │ │ │ ├── ic_layers_black_36dp.png │ │ │ │ │ ├── ic_layers_black_48dp.png │ │ │ │ │ ├── ic_layers_grey600_18dp.png │ │ │ │ │ ├── ic_layers_grey600_24dp.png │ │ │ │ │ ├── ic_layers_grey600_36dp.png │ │ │ │ │ ├── ic_layers_grey600_48dp.png │ │ │ │ │ ├── ic_layers_white_18dp.png │ │ │ │ │ ├── ic_layers_white_24dp.png │ │ │ │ │ ├── ic_layers_white_36dp.png │ │ │ │ │ ├── ic_layers_white_48dp.png │ │ │ │ │ ├── ic_recurrence_bubble_disabled.png │ │ │ │ │ ├── ic_recurrence_bubble_fill.png │ │ │ │ │ ├── ic_recurrence_bubble_outline.png │ │ │ │ │ ├── ic_recurrence_bubble_outline_disabled.png │ │ │ │ │ ├── ic_search_holo_light.png │ │ │ │ │ ├── ic_window_close_black_18dp.png │ │ │ │ │ ├── ic_window_close_black_24dp.png │ │ │ │ │ ├── ic_window_close_black_36dp.png │ │ │ │ │ ├── ic_window_close_black_48dp.png │ │ │ │ │ ├── ic_window_close_grey600_18dp.png │ │ │ │ │ ├── ic_window_close_grey600_24dp.png │ │ │ │ │ ├── ic_window_close_grey600_36dp.png │ │ │ │ │ ├── ic_window_close_grey600_48dp.png │ │ │ │ │ ├── ic_window_close_white_18dp.png │ │ │ │ │ ├── ic_window_close_white_24dp.png │ │ │ │ │ ├── ic_window_close_white_36dp.png │ │ │ │ │ ├── ic_window_close_white_48dp.png │ │ │ │ │ ├── md_nav_back.png │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ ├── notify_panel_notification_icon_bg.png │ │ │ │ │ ├── spinner_default_holo_light.9.png │ │ │ │ │ ├── spinner_disabled_holo_light.9.png │ │ │ │ │ ├── spinner_focused_holo_light.9.png │ │ │ │ │ ├── spinner_pressed_holo_light.9.png │ │ │ │ │ ├── textfield_activated_holo_light.9.png │ │ │ │ │ ├── textfield_default_holo_light.9.png │ │ │ │ │ ├── textfield_disabled_focused_holo_light.9.png │ │ │ │ │ ├── textfield_disabled_holo_light.9.png │ │ │ │ │ └── textfield_focused_holo_light.9.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ ├── drawable-sw600dp-hdpi-v13 │ │ │ │ │ ├── ic_backspace_disabled_dark.png │ │ │ │ │ ├── ic_backspace_disabled_light.png │ │ │ │ │ ├── ic_backspace_normal_dark.png │ │ │ │ │ └── ic_backspace_normal_light.png │ │ │ │ │ ├── drawable-sw600dp-mdpi-v13 │ │ │ │ │ ├── ic_backspace_disabled_dark.png │ │ │ │ │ ├── ic_backspace_disabled_light.png │ │ │ │ │ ├── ic_backspace_normal_dark.png │ │ │ │ │ └── ic_backspace_normal_light.png │ │ │ │ │ ├── drawable-sw600dp-xhdpi-v13 │ │ │ │ │ ├── ic_backspace_disabled_dark.png │ │ │ │ │ ├── ic_backspace_disabled_light.png │ │ │ │ │ ├── ic_backspace_normal_dark.png │ │ │ │ │ └── ic_backspace_normal_light.png │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ ├── bp_material_button_background.xml │ │ │ │ │ ├── button_background_dark.xml │ │ │ │ │ ├── button_background_light.xml │ │ │ │ │ ├── key_background_dark.xml │ │ │ │ │ ├── key_background_light.xml │ │ │ │ │ ├── md_btn_selector_ripple.xml │ │ │ │ │ ├── md_btn_selector_ripple_dark.xml │ │ │ │ │ ├── md_btn_shape.xml │ │ │ │ │ ├── mdtp_material_button_selected.xml │ │ │ │ │ └── notification_action_background.xml │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── dialog_full_holo_dark.9.png │ │ │ │ │ ├── dialog_full_holo_light.9.png │ │ │ │ │ ├── ic_account_black_18dp.png │ │ │ │ │ ├── ic_account_black_24dp.png │ │ │ │ │ ├── ic_account_black_36dp.png │ │ │ │ │ ├── ic_account_black_48dp.png │ │ │ │ │ ├── ic_account_grey600_18dp.png │ │ │ │ │ ├── ic_account_grey600_24dp.png │ │ │ │ │ ├── ic_account_grey600_36dp.png │ │ │ │ │ ├── ic_account_grey600_48dp.png │ │ │ │ │ ├── ic_account_white_18dp.png │ │ │ │ │ ├── ic_account_white_24dp.png │ │ │ │ │ ├── ic_account_white_36dp.png │ │ │ │ │ ├── ic_account_white_48dp.png │ │ │ │ │ ├── ic_android_black_18dp.png │ │ │ │ │ ├── ic_android_black_24dp.png │ │ │ │ │ ├── ic_android_black_36dp.png │ │ │ │ │ ├── ic_android_black_48dp.png │ │ │ │ │ ├── ic_android_grey600_18dp.png │ │ │ │ │ ├── ic_android_grey600_24dp.png │ │ │ │ │ ├── ic_android_grey600_36dp.png │ │ │ │ │ ├── ic_android_grey600_48dp.png │ │ │ │ │ ├── ic_android_white_18dp.png │ │ │ │ │ ├── ic_android_white_24dp.png │ │ │ │ │ ├── ic_android_white_36dp.png │ │ │ │ │ ├── ic_android_white_48dp.png │ │ │ │ │ ├── ic_backspace_disabled_dark.png │ │ │ │ │ ├── ic_backspace_disabled_light.png │ │ │ │ │ ├── ic_backspace_normal_dark.png │ │ │ │ │ ├── ic_backspace_normal_light.png │ │ │ │ │ ├── ic_calendar_black_18dp.png │ │ │ │ │ ├── ic_calendar_black_24dp.png │ │ │ │ │ ├── ic_calendar_black_36dp.png │ │ │ │ │ ├── ic_calendar_black_48dp.png │ │ │ │ │ ├── ic_calendar_grey600_18dp.png │ │ │ │ │ ├── ic_calendar_grey600_24dp.png │ │ │ │ │ ├── ic_calendar_grey600_36dp.png │ │ │ │ │ ├── ic_calendar_grey600_48dp.png │ │ │ │ │ ├── ic_calendar_white_18dp.png │ │ │ │ │ ├── ic_calendar_white_24dp.png │ │ │ │ │ ├── ic_calendar_white_36dp.png │ │ │ │ │ ├── ic_calendar_white_48dp.png │ │ │ │ │ ├── ic_cash_usd_black_18dp.png │ │ │ │ │ ├── ic_cash_usd_black_24dp.png │ │ │ │ │ ├── ic_cash_usd_black_36dp.png │ │ │ │ │ ├── ic_cash_usd_black_48dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_18dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_24dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_36dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_48dp.png │ │ │ │ │ ├── ic_cash_usd_white_18dp.png │ │ │ │ │ ├── ic_cash_usd_white_24dp.png │ │ │ │ │ ├── ic_cash_usd_white_36dp.png │ │ │ │ │ ├── ic_cash_usd_white_48dp.png │ │ │ │ │ ├── ic_check_dark_disabled.png │ │ │ │ │ ├── ic_check_light_disabled.png │ │ │ │ │ ├── ic_check_normal_dark.png │ │ │ │ │ ├── ic_check_normal_light.png │ │ │ │ │ ├── ic_clear_search_holo_light.png │ │ │ │ │ ├── ic_clock_black_18dp.png │ │ │ │ │ ├── ic_clock_black_24dp.png │ │ │ │ │ ├── ic_clock_black_36dp.png │ │ │ │ │ ├── ic_clock_black_48dp.png │ │ │ │ │ ├── ic_clock_grey600_18dp.png │ │ │ │ │ ├── ic_clock_grey600_24dp.png │ │ │ │ │ ├── ic_clock_grey600_36dp.png │ │ │ │ │ ├── ic_clock_grey600_48dp.png │ │ │ │ │ ├── ic_clock_white_18dp.png │ │ │ │ │ ├── ic_clock_white_24dp.png │ │ │ │ │ ├── ic_clock_white_36dp.png │ │ │ │ │ ├── ic_clock_white_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ │ │ │ ├── ic_layers_black_18dp.png │ │ │ │ │ ├── ic_layers_black_24dp.png │ │ │ │ │ ├── ic_layers_black_36dp.png │ │ │ │ │ ├── ic_layers_black_48dp.png │ │ │ │ │ ├── ic_layers_grey600_18dp.png │ │ │ │ │ ├── ic_layers_grey600_24dp.png │ │ │ │ │ ├── ic_layers_grey600_36dp.png │ │ │ │ │ ├── ic_layers_grey600_48dp.png │ │ │ │ │ ├── ic_layers_white_18dp.png │ │ │ │ │ ├── ic_layers_white_24dp.png │ │ │ │ │ ├── ic_layers_white_36dp.png │ │ │ │ │ ├── ic_layers_white_48dp.png │ │ │ │ │ ├── ic_recurrence_bubble_disabled.png │ │ │ │ │ ├── ic_recurrence_bubble_fill.png │ │ │ │ │ ├── ic_recurrence_bubble_outline.png │ │ │ │ │ ├── ic_recurrence_bubble_outline_disabled.png │ │ │ │ │ ├── ic_search_holo_light.png │ │ │ │ │ ├── ic_window_close_black_18dp.png │ │ │ │ │ ├── ic_window_close_black_24dp.png │ │ │ │ │ ├── ic_window_close_black_36dp.png │ │ │ │ │ ├── ic_window_close_black_48dp.png │ │ │ │ │ ├── ic_window_close_grey600_18dp.png │ │ │ │ │ ├── ic_window_close_grey600_24dp.png │ │ │ │ │ ├── ic_window_close_grey600_36dp.png │ │ │ │ │ ├── ic_window_close_grey600_48dp.png │ │ │ │ │ ├── ic_window_close_white_18dp.png │ │ │ │ │ ├── ic_window_close_white_24dp.png │ │ │ │ │ ├── ic_window_close_white_36dp.png │ │ │ │ │ ├── ic_window_close_white_48dp.png │ │ │ │ │ ├── list_focused_holo.9.png │ │ │ │ │ ├── list_longpressed_holo_light.9.png │ │ │ │ │ ├── list_pressed_holo_light.9.png │ │ │ │ │ ├── list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── md_nav_back.png │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ ├── notify_panel_notification_icon_bg.png │ │ │ │ │ ├── spinner_default_holo_light.9.png │ │ │ │ │ ├── spinner_disabled_holo_light.9.png │ │ │ │ │ ├── spinner_focused_holo_light.9.png │ │ │ │ │ ├── spinner_pressed_holo_light.9.png │ │ │ │ │ ├── textfield_activated_holo_light.9.png │ │ │ │ │ ├── textfield_default_holo_light.9.png │ │ │ │ │ ├── textfield_disabled_focused_holo_light.9.png │ │ │ │ │ ├── textfield_disabled_holo_light.9.png │ │ │ │ │ └── textfield_focused_holo_light.9.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── ic_account_black_18dp.png │ │ │ │ │ ├── ic_account_black_24dp.png │ │ │ │ │ ├── ic_account_black_36dp.png │ │ │ │ │ ├── ic_account_black_48dp.png │ │ │ │ │ ├── ic_account_grey600_18dp.png │ │ │ │ │ ├── ic_account_grey600_24dp.png │ │ │ │ │ ├── ic_account_grey600_36dp.png │ │ │ │ │ ├── ic_account_grey600_48dp.png │ │ │ │ │ ├── ic_account_white_18dp.png │ │ │ │ │ ├── ic_account_white_24dp.png │ │ │ │ │ ├── ic_account_white_36dp.png │ │ │ │ │ ├── ic_account_white_48dp.png │ │ │ │ │ ├── ic_android_black_18dp.png │ │ │ │ │ ├── ic_android_black_24dp.png │ │ │ │ │ ├── ic_android_black_36dp.png │ │ │ │ │ ├── ic_android_black_48dp.png │ │ │ │ │ ├── ic_android_grey600_18dp.png │ │ │ │ │ ├── ic_android_grey600_24dp.png │ │ │ │ │ ├── ic_android_grey600_36dp.png │ │ │ │ │ ├── ic_android_grey600_48dp.png │ │ │ │ │ ├── ic_android_white_18dp.png │ │ │ │ │ ├── ic_android_white_24dp.png │ │ │ │ │ ├── ic_android_white_36dp.png │ │ │ │ │ ├── ic_android_white_48dp.png │ │ │ │ │ ├── ic_calendar_black_18dp.png │ │ │ │ │ ├── ic_calendar_black_24dp.png │ │ │ │ │ ├── ic_calendar_black_36dp.png │ │ │ │ │ ├── ic_calendar_black_48dp.png │ │ │ │ │ ├── ic_calendar_grey600_18dp.png │ │ │ │ │ ├── ic_calendar_grey600_24dp.png │ │ │ │ │ ├── ic_calendar_grey600_36dp.png │ │ │ │ │ ├── ic_calendar_grey600_48dp.png │ │ │ │ │ ├── ic_calendar_white_18dp.png │ │ │ │ │ ├── ic_calendar_white_24dp.png │ │ │ │ │ ├── ic_calendar_white_36dp.png │ │ │ │ │ ├── ic_calendar_white_48dp.png │ │ │ │ │ ├── ic_cash_usd_black_18dp.png │ │ │ │ │ ├── ic_cash_usd_black_24dp.png │ │ │ │ │ ├── ic_cash_usd_black_36dp.png │ │ │ │ │ ├── ic_cash_usd_black_48dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_18dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_24dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_36dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_48dp.png │ │ │ │ │ ├── ic_cash_usd_white_18dp.png │ │ │ │ │ ├── ic_cash_usd_white_24dp.png │ │ │ │ │ ├── ic_cash_usd_white_36dp.png │ │ │ │ │ ├── ic_cash_usd_white_48dp.png │ │ │ │ │ ├── ic_clock_black_18dp.png │ │ │ │ │ ├── ic_clock_black_24dp.png │ │ │ │ │ ├── ic_clock_black_36dp.png │ │ │ │ │ ├── ic_clock_black_48dp.png │ │ │ │ │ ├── ic_clock_grey600_18dp.png │ │ │ │ │ ├── ic_clock_grey600_24dp.png │ │ │ │ │ ├── ic_clock_grey600_36dp.png │ │ │ │ │ ├── ic_clock_grey600_48dp.png │ │ │ │ │ ├── ic_clock_white_18dp.png │ │ │ │ │ ├── ic_clock_white_24dp.png │ │ │ │ │ ├── ic_clock_white_36dp.png │ │ │ │ │ ├── ic_clock_white_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ │ │ │ ├── ic_layers_black_18dp.png │ │ │ │ │ ├── ic_layers_black_24dp.png │ │ │ │ │ ├── ic_layers_black_36dp.png │ │ │ │ │ ├── ic_layers_black_48dp.png │ │ │ │ │ ├── ic_layers_grey600_18dp.png │ │ │ │ │ ├── ic_layers_grey600_24dp.png │ │ │ │ │ ├── ic_layers_grey600_36dp.png │ │ │ │ │ ├── ic_layers_grey600_48dp.png │ │ │ │ │ ├── ic_layers_white_18dp.png │ │ │ │ │ ├── ic_layers_white_24dp.png │ │ │ │ │ ├── ic_layers_white_36dp.png │ │ │ │ │ ├── ic_layers_white_48dp.png │ │ │ │ │ ├── ic_recurrence_bubble_disabled.png │ │ │ │ │ ├── ic_recurrence_bubble_fill.png │ │ │ │ │ ├── ic_recurrence_bubble_outline.png │ │ │ │ │ ├── ic_recurrence_bubble_outline_disabled.png │ │ │ │ │ ├── ic_window_close_black_18dp.png │ │ │ │ │ ├── ic_window_close_black_24dp.png │ │ │ │ │ ├── ic_window_close_black_36dp.png │ │ │ │ │ ├── ic_window_close_black_48dp.png │ │ │ │ │ ├── ic_window_close_grey600_18dp.png │ │ │ │ │ ├── ic_window_close_grey600_24dp.png │ │ │ │ │ ├── ic_window_close_grey600_36dp.png │ │ │ │ │ ├── ic_window_close_grey600_48dp.png │ │ │ │ │ ├── ic_window_close_white_18dp.png │ │ │ │ │ ├── ic_window_close_white_24dp.png │ │ │ │ │ ├── ic_window_close_white_36dp.png │ │ │ │ │ ├── ic_window_close_white_48dp.png │ │ │ │ │ ├── list_focused_holo.9.png │ │ │ │ │ ├── list_longpressed_holo_light.9.png │ │ │ │ │ ├── list_pressed_holo_light.9.png │ │ │ │ │ ├── md_nav_back.png │ │ │ │ │ ├── spinner_default_holo_light.9.png │ │ │ │ │ ├── spinner_disabled_holo_light.9.png │ │ │ │ │ ├── spinner_focused_holo_light.9.png │ │ │ │ │ ├── spinner_pressed_holo_light.9.png │ │ │ │ │ ├── textfield_activated_holo_light.9.png │ │ │ │ │ ├── textfield_default_holo_light.9.png │ │ │ │ │ ├── textfield_disabled_focused_holo_light.9.png │ │ │ │ │ ├── textfield_disabled_holo_light.9.png │ │ │ │ │ └── textfield_focused_holo_light.9.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ ├── ic_account_black_18dp.png │ │ │ │ │ ├── ic_account_black_24dp.png │ │ │ │ │ ├── ic_account_black_36dp.png │ │ │ │ │ ├── ic_account_black_48dp.png │ │ │ │ │ ├── ic_account_grey600_18dp.png │ │ │ │ │ ├── ic_account_grey600_24dp.png │ │ │ │ │ ├── ic_account_grey600_36dp.png │ │ │ │ │ ├── ic_account_grey600_48dp.png │ │ │ │ │ ├── ic_account_white_18dp.png │ │ │ │ │ ├── ic_account_white_24dp.png │ │ │ │ │ ├── ic_account_white_36dp.png │ │ │ │ │ ├── ic_account_white_48dp.png │ │ │ │ │ ├── ic_android_black_18dp.png │ │ │ │ │ ├── ic_android_black_24dp.png │ │ │ │ │ ├── ic_android_black_36dp.png │ │ │ │ │ ├── ic_android_black_48dp.png │ │ │ │ │ ├── ic_android_grey600_18dp.png │ │ │ │ │ ├── ic_android_grey600_24dp.png │ │ │ │ │ ├── ic_android_grey600_36dp.png │ │ │ │ │ ├── ic_android_grey600_48dp.png │ │ │ │ │ ├── ic_android_white_18dp.png │ │ │ │ │ ├── ic_android_white_24dp.png │ │ │ │ │ ├── ic_android_white_36dp.png │ │ │ │ │ ├── ic_android_white_48dp.png │ │ │ │ │ ├── ic_calendar_black_18dp.png │ │ │ │ │ ├── ic_calendar_black_24dp.png │ │ │ │ │ ├── ic_calendar_black_36dp.png │ │ │ │ │ ├── ic_calendar_black_48dp.png │ │ │ │ │ ├── ic_calendar_grey600_18dp.png │ │ │ │ │ ├── ic_calendar_grey600_24dp.png │ │ │ │ │ ├── ic_calendar_grey600_36dp.png │ │ │ │ │ ├── ic_calendar_grey600_48dp.png │ │ │ │ │ ├── ic_calendar_white_18dp.png │ │ │ │ │ ├── ic_calendar_white_24dp.png │ │ │ │ │ ├── ic_calendar_white_36dp.png │ │ │ │ │ ├── ic_calendar_white_48dp.png │ │ │ │ │ ├── ic_cash_usd_black_18dp.png │ │ │ │ │ ├── ic_cash_usd_black_24dp.png │ │ │ │ │ ├── ic_cash_usd_black_36dp.png │ │ │ │ │ ├── ic_cash_usd_black_48dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_18dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_24dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_36dp.png │ │ │ │ │ ├── ic_cash_usd_grey600_48dp.png │ │ │ │ │ ├── ic_cash_usd_white_18dp.png │ │ │ │ │ ├── ic_cash_usd_white_24dp.png │ │ │ │ │ ├── ic_cash_usd_white_36dp.png │ │ │ │ │ ├── ic_cash_usd_white_48dp.png │ │ │ │ │ ├── ic_clock_black_18dp.png │ │ │ │ │ ├── ic_clock_black_24dp.png │ │ │ │ │ ├── ic_clock_black_36dp.png │ │ │ │ │ ├── ic_clock_black_48dp.png │ │ │ │ │ ├── ic_clock_grey600_18dp.png │ │ │ │ │ ├── ic_clock_grey600_24dp.png │ │ │ │ │ ├── ic_clock_grey600_36dp.png │ │ │ │ │ ├── ic_clock_grey600_48dp.png │ │ │ │ │ ├── ic_clock_white_18dp.png │ │ │ │ │ ├── ic_clock_white_24dp.png │ │ │ │ │ ├── ic_clock_white_36dp.png │ │ │ │ │ ├── ic_clock_white_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ │ │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ │ │ │ ├── ic_layers_black_18dp.png │ │ │ │ │ ├── ic_layers_black_24dp.png │ │ │ │ │ ├── ic_layers_black_36dp.png │ │ │ │ │ ├── ic_layers_black_48dp.png │ │ │ │ │ ├── ic_layers_grey600_18dp.png │ │ │ │ │ ├── ic_layers_grey600_24dp.png │ │ │ │ │ ├── ic_layers_grey600_36dp.png │ │ │ │ │ ├── ic_layers_grey600_48dp.png │ │ │ │ │ ├── ic_layers_white_18dp.png │ │ │ │ │ ├── ic_layers_white_24dp.png │ │ │ │ │ ├── ic_layers_white_36dp.png │ │ │ │ │ ├── ic_layers_white_48dp.png │ │ │ │ │ ├── ic_window_close_black_18dp.png │ │ │ │ │ ├── ic_window_close_black_24dp.png │ │ │ │ │ ├── ic_window_close_black_36dp.png │ │ │ │ │ ├── ic_window_close_black_48dp.png │ │ │ │ │ ├── ic_window_close_grey600_18dp.png │ │ │ │ │ ├── ic_window_close_grey600_24dp.png │ │ │ │ │ ├── ic_window_close_grey600_36dp.png │ │ │ │ │ ├── ic_window_close_grey600_48dp.png │ │ │ │ │ ├── ic_window_close_white_18dp.png │ │ │ │ │ ├── ic_window_close_white_24dp.png │ │ │ │ │ ├── ic_window_close_white_36dp.png │ │ │ │ │ ├── ic_window_close_white_48dp.png │ │ │ │ │ └── md_nav_back.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ ├── abc_ic_go_search_api_material.xml │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ ├── abc_ic_search_api_material.xml │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ ├── abc_ratingbar_material.xml │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ ├── abc_vector_test.xml │ │ │ │ │ ├── bp_material_button_background.xml │ │ │ │ │ ├── bp_material_button_selected.xml │ │ │ │ │ ├── bp_material_key_background.xml │ │ │ │ │ ├── button_background_dark.xml │ │ │ │ │ ├── button_background_light.xml │ │ │ │ │ ├── chip.xml │ │ │ │ │ ├── chip_selected.xml │ │ │ │ │ ├── done_background_color.xml │ │ │ │ │ ├── done_background_color_dark.xml │ │ │ │ │ ├── edit_text_holo_light.xml │ │ │ │ │ ├── ic_backspace_dark.xml │ │ │ │ │ ├── ic_backspace_light.xml │ │ │ │ │ ├── ic_check_dark.xml │ │ │ │ │ ├── ic_check_light.xml │ │ │ │ │ ├── item_background_holo_light.xml │ │ │ │ │ ├── key_background_dark.xml │ │ │ │ │ ├── key_background_light.xml │ │ │ │ │ ├── list_selector_background_transition_holo_light.xml │ │ │ │ │ ├── md_btn_selected.xml │ │ │ │ │ ├── md_btn_selected_dark.xml │ │ │ │ │ ├── md_btn_selector.xml │ │ │ │ │ ├── md_btn_selector_dark.xml │ │ │ │ │ ├── md_item_selected.xml │ │ │ │ │ ├── md_item_selected_dark.xml │ │ │ │ │ ├── md_selector.xml │ │ │ │ │ ├── md_selector_dark.xml │ │ │ │ │ ├── md_transparent.xml │ │ │ │ │ ├── notification_bg.xml │ │ │ │ │ ├── notification_bg_low.xml │ │ │ │ │ ├── notification_icon_background.xml │ │ │ │ │ ├── notification_tile_bg.xml │ │ │ │ │ ├── recurrence_bubble_fill.xml │ │ │ │ │ └── spinner_background_holo_light.xml │ │ │ │ │ ├── layout-land │ │ │ │ │ ├── calendar_date_picker_dialog.xml │ │ │ │ │ ├── date_picker_dialog.xml │ │ │ │ │ ├── expiration_picker_dialog.xml │ │ │ │ │ ├── hms_picker_dialog.xml │ │ │ │ │ ├── number_picker_dialog.xml │ │ │ │ │ ├── radial_time_picker_dialog.xml │ │ │ │ │ └── time_picker_dialog.xml │ │ │ │ │ ├── layout-ldrtl-v17 │ │ │ │ │ ├── md_listitem_multichoice.xml │ │ │ │ │ └── md_listitem_singlechoice.xml │ │ │ │ │ ├── layout-sw600dp-land-v13 │ │ │ │ │ ├── calendar_date_picker_dialog.xml │ │ │ │ │ ├── date_picker_dialog.xml │ │ │ │ │ ├── expiration_picker_dialog.xml │ │ │ │ │ ├── hms_picker_dialog.xml │ │ │ │ │ ├── number_picker_dialog.xml │ │ │ │ │ └── time_picker_dialog.xml │ │ │ │ │ ├── layout-sw600dp-v13 │ │ │ │ │ ├── calendar_date_picker_dialog.xml │ │ │ │ │ ├── three_keys_view.xml │ │ │ │ │ ├── three_keys_view_leftright.xml │ │ │ │ │ ├── three_keys_view_right_drawable.xml │ │ │ │ │ └── three_keys_view_text.xml │ │ │ │ │ ├── layout-v11 │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ ├── notification_template_big_media_custom.xml │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ └── notification_template_big_media_narrow_custom.xml │ │ │ │ │ ├── layout-v14 │ │ │ │ │ ├── md_stub_progress.xml │ │ │ │ │ ├── md_stub_progress_indeterminate.xml │ │ │ │ │ └── md_stub_progress_indeterminate_horizontal.xml │ │ │ │ │ ├── layout-v16 │ │ │ │ │ └── notification_template_custom_big.xml │ │ │ │ │ ├── layout-v21 │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ └── notification_template_icon_group.xml │ │ │ │ │ ├── layout-w270dp-h560dp-v13 │ │ │ │ │ └── calendar_date_picker_dialog.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ ├── abc_alert_dialog_title_material.xml │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── calendar_date_picker_dialog.xml │ │ │ │ │ ├── calendar_date_picker_header_view.xml │ │ │ │ │ ├── calendar_date_picker_selected_date.xml │ │ │ │ │ ├── calendar_date_picker_view_animator.xml │ │ │ │ │ ├── calendar_year_label_text_view.xml │ │ │ │ │ ├── chip.xml │ │ │ │ │ ├── date_picker_dialog.xml │ │ │ │ │ ├── date_picker_view.xml │ │ │ │ │ ├── empty_time_zone_item.xml │ │ │ │ │ ├── expiration_picker_dialog.xml │ │ │ │ │ ├── expiration_picker_view.xml │ │ │ │ │ ├── extra_option_item.xml │ │ │ │ │ ├── filter_section.xml │ │ │ │ │ ├── filter_view.xml │ │ │ │ │ ├── hms_picker_dialog.xml │ │ │ │ │ ├── hms_picker_view.xml │ │ │ │ │ ├── keyboard.xml │ │ │ │ │ ├── keyboard_right_drawable.xml │ │ │ │ │ ├── keyboard_right_drawable_with_header.xml │ │ │ │ │ ├── keyboard_text.xml │ │ │ │ │ ├── keyboard_text_with_header.xml │ │ │ │ │ ├── keyboard_with_header.xml │ │ │ │ │ ├── layout_ok_cancel_buttons.xml │ │ │ │ │ ├── md_dialog_basic.xml │ │ │ │ │ ├── md_dialog_basic_check.xml │ │ │ │ │ ├── md_dialog_custom.xml │ │ │ │ │ ├── md_dialog_input.xml │ │ │ │ │ ├── md_dialog_input_check.xml │ │ │ │ │ ├── md_dialog_list.xml │ │ │ │ │ ├── md_dialog_list_check.xml │ │ │ │ │ ├── md_dialog_progress.xml │ │ │ │ │ ├── md_dialog_progress_indeterminate.xml │ │ │ │ │ ├── md_dialog_progress_indeterminate_horizontal.xml │ │ │ │ │ ├── md_listitem.xml │ │ │ │ │ ├── md_listitem_multichoice.xml │ │ │ │ │ ├── md_listitem_singlechoice.xml │ │ │ │ │ ├── md_stub_actionbuttons.xml │ │ │ │ │ ├── md_stub_titleframe.xml │ │ │ │ │ ├── md_stub_titleframe_lesspadding.xml │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ ├── notification_template_icon_group.xml │ │ │ │ │ ├── notification_template_lines_media.xml │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ ├── notification_template_media_custom.xml │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ ├── number_picker_dialog.xml │ │ │ │ │ ├── number_picker_view.xml │ │ │ │ │ ├── radial_time_header_label.xml │ │ │ │ │ ├── radial_time_picker_dialog.xml │ │ │ │ │ ├── recurrencepicker.xml │ │ │ │ │ ├── recurrencepicker_end_text.xml │ │ │ │ │ ├── recurrencepicker_freq_item.xml │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ ├── single_option_item.xml │ │ │ │ │ ├── slider_option_item.xml │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml │ │ │ │ │ ├── tag_option_item.xml │ │ │ │ │ ├── three_keys_view.xml │ │ │ │ │ ├── three_keys_view_leftright.xml │ │ │ │ │ ├── three_keys_view_right_drawable.xml │ │ │ │ │ ├── three_keys_view_text.xml │ │ │ │ │ ├── time_picker_dialog.xml │ │ │ │ │ ├── time_picker_view.xml │ │ │ │ │ ├── time_zone_filter_item.xml │ │ │ │ │ ├── time_zone_item.xml │ │ │ │ │ └── timezonepickerview.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-af │ │ │ │ │ └── values-af.xml │ │ │ │ │ ├── values-am │ │ │ │ │ └── values-am.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ ├── values-be-rBY │ │ │ │ │ └── values-be-rBY.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ └── values-bn-rBD.xml │ │ │ │ │ ├── values-bs-rBA │ │ │ │ │ └── values-bs-rBA.xml │ │ │ │ │ ├── values-ca │ │ │ │ │ └── values-ca.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ └── values-cs.xml │ │ │ │ │ ├── values-da │ │ │ │ │ └── values-da.xml │ │ │ │ │ ├── values-de │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-el │ │ │ │ │ └── values-el.xml │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ ├── values-es │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ └── values-fa.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ └── values-fi.xml │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ └── values-fr.xml │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ ├── values-in │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ ├── values-it │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ ├── values-land │ │ │ │ │ └── values-land.xml │ │ │ │ │ ├── values-large-hdpi-v4 │ │ │ │ │ └── values-large-hdpi-v4.xml │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mdpi-v4 │ │ │ │ │ └── values-mdpi-v4.xml │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-port │ │ │ │ │ └── values-port.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ └── values-ro.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw600dp-land-v13 │ │ │ │ │ └── values-sw600dp-land-v13.xml │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ ├── values-sw720dp-v13 │ │ │ │ │ └── values-sw720dp-v13.xml │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ ├── values-th │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v12 │ │ │ │ │ └── values-v12.xml │ │ │ │ │ ├── values-v13 │ │ │ │ │ └── values-v13.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ └── values-v14.xml │ │ │ │ │ ├── values-v16 │ │ │ │ │ └── values-v16.xml │ │ │ │ │ ├── values-v17 │ │ │ │ │ └── values-v17.xml │ │ │ │ │ ├── values-v18 │ │ │ │ │ └── values-v18.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v22 │ │ │ │ │ └── values-v22.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-v24 │ │ │ │ │ └── values-v24.xml │ │ │ │ │ ├── values-v25 │ │ │ │ │ └── values-v25.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-w270dp-h560dp-v13 │ │ │ │ │ └── values-w270dp-h560dp-v13.xml │ │ │ │ │ ├── values-xhdpi-v4 │ │ │ │ │ └── values-xhdpi-v4.xml │ │ │ │ │ ├── values-xlarge-mdpi-v4 │ │ │ │ │ └── values-xlarge-mdpi-v4.xml │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ ├── values-xxhdpi-v4 │ │ │ │ │ └── values-xxhdpi-v4.xml │ │ │ │ │ ├── values-xxxhdpi-v4 │ │ │ │ │ └── values-xxxhdpi-v4.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zh │ │ │ │ │ └── values-zh.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ └── values-zu.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── resources-debug-androidTest.ap_ │ │ │ └── resources-debug.ap_ │ │ ├── symbols │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── R.txt │ │ │ └── debug │ │ │ │ └── R.txt │ │ └── transforms │ │ │ └── dex │ │ │ └── debug │ │ │ └── folders │ │ │ └── 1000 │ │ │ └── 1f │ │ │ └── main │ │ │ └── classes.dex │ ├── outputs │ │ ├── apk │ │ │ └── app-debug.apk │ │ └── logs │ │ │ └── manifest-merger-debug-report.txt │ └── tmp │ │ └── expandedArchives │ │ ├── classes.jar_4a7qr5cxuqn4mckp44t5glvvy │ │ └── android │ │ │ └── support │ │ │ └── graphics │ │ │ └── drawable │ │ │ ├── Animatable2Compat$AnimationCallback$1.class │ │ │ ├── Animatable2Compat$AnimationCallback.class │ │ │ ├── Animatable2Compat.class │ │ │ ├── AnimatedVectorDrawableCompat$1.class │ │ │ ├── AnimatedVectorDrawableCompat$2.class │ │ │ ├── AnimatedVectorDrawableCompat$AnimatedVectorDrawableCompatState.class │ │ │ ├── AnimatedVectorDrawableCompat$AnimatedVectorDrawableDelegateState.class │ │ │ ├── AnimatedVectorDrawableCompat.class │ │ │ └── animated │ │ │ └── BuildConfig.class │ │ ├── classes.jar_4hmvtos84bb0e252mftdx9qrc │ │ └── android │ │ │ └── support │ │ │ └── graphics │ │ │ └── drawable │ │ │ ├── AndroidResources.class │ │ │ ├── BuildConfig.class │ │ │ ├── PathParser$ExtractFloatResult.class │ │ │ ├── PathParser$PathDataNode.class │ │ │ ├── PathParser.class │ │ │ ├── TypedArrayUtils.class │ │ │ ├── VectorDrawableCommon.class │ │ │ ├── VectorDrawableCompat$VClipPath.class │ │ │ ├── VectorDrawableCompat$VFullPath.class │ │ │ ├── VectorDrawableCompat$VGroup.class │ │ │ ├── VectorDrawableCompat$VPath.class │ │ │ ├── VectorDrawableCompat$VPathRenderer.class │ │ │ ├── VectorDrawableCompat$VectorDrawableCompatState.class │ │ │ ├── VectorDrawableCompat$VectorDrawableDelegateState.class │ │ │ └── VectorDrawableCompat.class │ │ ├── classes.jar_5qszfj7992kr769osgtywpkf9 │ │ └── android │ │ │ └── support │ │ │ ├── coreui │ │ │ └── BuildConfig.class │ │ │ └── v4 │ │ │ ├── app │ │ │ ├── ActionBarDrawerToggle$ActionBarDrawerToggleImpl.class │ │ │ ├── ActionBarDrawerToggle$ActionBarDrawerToggleImplBase.class │ │ │ ├── ActionBarDrawerToggle$ActionBarDrawerToggleImplHC.class │ │ │ ├── ActionBarDrawerToggle$ActionBarDrawerToggleImplJellybeanMR2.class │ │ │ ├── ActionBarDrawerToggle$Delegate.class │ │ │ ├── ActionBarDrawerToggle$DelegateProvider.class │ │ │ ├── ActionBarDrawerToggle$SlideDrawable.class │ │ │ ├── ActionBarDrawerToggle.class │ │ │ ├── ActionBarDrawerToggleHoneycomb$SetIndicatorInfo.class │ │ │ ├── ActionBarDrawerToggleHoneycomb.class │ │ │ └── ActionBarDrawerToggleJellybeanMR2.class │ │ │ ├── view │ │ │ ├── AbsSavedState$1.class │ │ │ ├── AbsSavedState$2.class │ │ │ ├── AbsSavedState.class │ │ │ ├── AsyncLayoutInflater$1.class │ │ │ ├── AsyncLayoutInflater$BasicInflater.class │ │ │ ├── AsyncLayoutInflater$InflateRequest.class │ │ │ ├── AsyncLayoutInflater$InflateThread.class │ │ │ ├── AsyncLayoutInflater$OnInflateFinishedListener.class │ │ │ ├── AsyncLayoutInflater.class │ │ │ ├── NestedScrollingChildHelper.class │ │ │ ├── NestedScrollingParentHelper.class │ │ │ ├── PagerAdapter.class │ │ │ ├── PagerTabStrip$1.class │ │ │ ├── PagerTabStrip$2.class │ │ │ ├── PagerTabStrip.class │ │ │ ├── PagerTitleStrip$PageListener.class │ │ │ ├── PagerTitleStrip$PagerTitleStripImpl.class │ │ │ ├── PagerTitleStrip$PagerTitleStripImplBase.class │ │ │ ├── PagerTitleStrip$PagerTitleStripImplIcs.class │ │ │ ├── PagerTitleStrip.class │ │ │ ├── PagerTitleStripIcs$SingleLineAllCapsTransform.class │ │ │ ├── PagerTitleStripIcs.class │ │ │ ├── ViewPager$1.class │ │ │ ├── ViewPager$2.class │ │ │ ├── ViewPager$3.class │ │ │ ├── ViewPager$4.class │ │ │ ├── ViewPager$DecorView.class │ │ │ ├── ViewPager$ItemInfo.class │ │ │ ├── ViewPager$LayoutParams.class │ │ │ ├── ViewPager$MyAccessibilityDelegate.class │ │ │ ├── ViewPager$OnAdapterChangeListener.class │ │ │ ├── ViewPager$OnPageChangeListener.class │ │ │ ├── ViewPager$PageTransformer.class │ │ │ ├── ViewPager$PagerObserver.class │ │ │ ├── ViewPager$SavedState$1.class │ │ │ ├── ViewPager$SavedState.class │ │ │ ├── ViewPager$SimpleOnPageChangeListener.class │ │ │ ├── ViewPager$ViewPositionComparator.class │ │ │ ├── ViewPager.class │ │ │ └── animation │ │ │ │ ├── FastOutLinearInInterpolator.class │ │ │ │ ├── FastOutSlowInInterpolator.class │ │ │ │ ├── LinearOutSlowInInterpolator.class │ │ │ │ └── LookupTableInterpolator.class │ │ │ └── widget │ │ │ ├── AutoScrollHelper$ClampedScroller.class │ │ │ ├── AutoScrollHelper$ScrollAnimationRunnable.class │ │ │ ├── AutoScrollHelper.class │ │ │ ├── CircleImageView$OvalShadow.class │ │ │ ├── CircleImageView.class │ │ │ ├── ContentLoadingProgressBar$1.class │ │ │ ├── ContentLoadingProgressBar$2.class │ │ │ ├── ContentLoadingProgressBar.class │ │ │ ├── CursorAdapter$ChangeObserver.class │ │ │ ├── CursorAdapter$MyDataSetObserver.class │ │ │ ├── CursorAdapter.class │ │ │ ├── CursorFilter$CursorFilterClient.class │ │ │ ├── CursorFilter.class │ │ │ ├── DrawerLayout$AccessibilityDelegate.class │ │ │ ├── DrawerLayout$ChildAccessibilityDelegate.class │ │ │ ├── DrawerLayout$DrawerLayoutCompatImpl.class │ │ │ ├── DrawerLayout$DrawerLayoutCompatImplApi21.class │ │ │ ├── DrawerLayout$DrawerLayoutCompatImplBase.class │ │ │ ├── DrawerLayout$DrawerListener.class │ │ │ ├── DrawerLayout$LayoutParams.class │ │ │ ├── DrawerLayout$SavedState$1.class │ │ │ ├── DrawerLayout$SavedState.class │ │ │ ├── DrawerLayout$SimpleDrawerListener.class │ │ │ ├── DrawerLayout$ViewDragCallback$1.class │ │ │ ├── DrawerLayout$ViewDragCallback.class │ │ │ ├── DrawerLayout.class │ │ │ ├── DrawerLayoutCompatApi21$InsetsListener.class │ │ │ ├── DrawerLayoutCompatApi21.class │ │ │ ├── DrawerLayoutImpl.class │ │ │ ├── ExploreByTouchHelper$1.class │ │ │ ├── ExploreByTouchHelper$2.class │ │ │ ├── ExploreByTouchHelper$MyNodeProvider.class │ │ │ ├── ExploreByTouchHelper.class │ │ │ ├── FocusStrategy$BoundsAdapter.class │ │ │ ├── FocusStrategy$CollectionAdapter.class │ │ │ ├── FocusStrategy$SequentialComparator.class │ │ │ ├── FocusStrategy.class │ │ │ ├── ListViewAutoScrollHelper.class │ │ │ ├── MaterialProgressDrawable$1.class │ │ │ ├── MaterialProgressDrawable$2.class │ │ │ ├── MaterialProgressDrawable$3.class │ │ │ ├── MaterialProgressDrawable$ProgressDrawableSize.class │ │ │ ├── MaterialProgressDrawable$Ring.class │ │ │ ├── MaterialProgressDrawable.class │ │ │ ├── NestedScrollView$AccessibilityDelegate.class │ │ │ ├── NestedScrollView$OnScrollChangeListener.class │ │ │ ├── NestedScrollView$SavedState$1.class │ │ │ ├── NestedScrollView$SavedState.class │ │ │ ├── NestedScrollView.class │ │ │ ├── ResourceCursorAdapter.class │ │ │ ├── SimpleCursorAdapter$CursorToStringConverter.class │ │ │ ├── SimpleCursorAdapter$ViewBinder.class │ │ │ ├── SimpleCursorAdapter.class │ │ │ ├── SlidingPaneLayout$AccessibilityDelegate.class │ │ │ ├── SlidingPaneLayout$DisableLayerRunnable.class │ │ │ ├── SlidingPaneLayout$DragHelperCallback.class │ │ │ ├── SlidingPaneLayout$LayoutParams.class │ │ │ ├── SlidingPaneLayout$PanelSlideListener.class │ │ │ ├── SlidingPaneLayout$SavedState$1.class │ │ │ ├── SlidingPaneLayout$SavedState.class │ │ │ ├── SlidingPaneLayout$SimplePanelSlideListener.class │ │ │ ├── SlidingPaneLayout$SlidingPanelLayoutImpl.class │ │ │ ├── SlidingPaneLayout$SlidingPanelLayoutImplBase.class │ │ │ ├── SlidingPaneLayout$SlidingPanelLayoutImplJB.class │ │ │ ├── SlidingPaneLayout$SlidingPanelLayoutImplJBMR1.class │ │ │ ├── SlidingPaneLayout.class │ │ │ ├── Space.class │ │ │ ├── SwipeProgressBar.class │ │ │ ├── SwipeRefreshLayout$1.class │ │ │ ├── SwipeRefreshLayout$2.class │ │ │ ├── SwipeRefreshLayout$3.class │ │ │ ├── SwipeRefreshLayout$4.class │ │ │ ├── SwipeRefreshLayout$5.class │ │ │ ├── SwipeRefreshLayout$6.class │ │ │ ├── SwipeRefreshLayout$7.class │ │ │ ├── SwipeRefreshLayout$8.class │ │ │ ├── SwipeRefreshLayout$OnChildScrollUpCallback.class │ │ │ ├── SwipeRefreshLayout$OnRefreshListener.class │ │ │ ├── SwipeRefreshLayout.class │ │ │ ├── ViewDragHelper$1.class │ │ │ ├── ViewDragHelper$2.class │ │ │ ├── ViewDragHelper$Callback.class │ │ │ └── ViewDragHelper.class │ │ ├── classes.jar_741ulujzp8ea4ngo9vhqd1q3d │ │ └── android │ │ │ └── support │ │ │ ├── mediacompat │ │ │ └── BuildConfig.class │ │ │ └── v4 │ │ │ └── media │ │ │ ├── MediaBrowserCompat$CallbackHandler.class │ │ │ ├── MediaBrowserCompat$ConnectionCallback$ConnectionCallbackInternal.class │ │ │ ├── MediaBrowserCompat$ConnectionCallback$StubApi21.class │ │ │ ├── MediaBrowserCompat$ConnectionCallback.class │ │ │ ├── MediaBrowserCompat$ItemCallback$StubApi23.class │ │ │ ├── MediaBrowserCompat$ItemCallback.class │ │ │ ├── MediaBrowserCompat$ItemReceiver.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImpl.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplApi21$1.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplApi21$2.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplApi21$3.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplApi21$4.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplApi21$5.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplApi21$6.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplApi21.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplApi23.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplApi24.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplBase$1.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplBase$2.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplBase$3.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplBase$4.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplBase$5.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplBase$MediaServiceConnection$1.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplBase$MediaServiceConnection$2.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplBase$MediaServiceConnection.class │ │ │ ├── MediaBrowserCompat$MediaBrowserImplBase.class │ │ │ ├── MediaBrowserCompat$MediaBrowserServiceCallbackImpl.class │ │ │ ├── MediaBrowserCompat$MediaItem$1.class │ │ │ ├── MediaBrowserCompat$MediaItem$Flags.class │ │ │ ├── MediaBrowserCompat$MediaItem.class │ │ │ ├── MediaBrowserCompat$SearchCallback.class │ │ │ ├── MediaBrowserCompat$SearchResultReceiver.class │ │ │ ├── MediaBrowserCompat$ServiceBinderWrapper.class │ │ │ ├── MediaBrowserCompat$Subscription.class │ │ │ ├── MediaBrowserCompat$SubscriptionCallback$StubApi21.class │ │ │ ├── MediaBrowserCompat$SubscriptionCallback$StubApi24.class │ │ │ ├── MediaBrowserCompat$SubscriptionCallback.class │ │ │ ├── MediaBrowserCompat.class │ │ │ ├── MediaBrowserCompatApi21$ConnectionCallback.class │ │ │ ├── MediaBrowserCompatApi21$ConnectionCallbackProxy.class │ │ │ ├── MediaBrowserCompatApi21$MediaItem.class │ │ │ ├── MediaBrowserCompatApi21$SubscriptionCallback.class │ │ │ ├── MediaBrowserCompatApi21$SubscriptionCallbackProxy.class │ │ │ ├── MediaBrowserCompatApi21.class │ │ │ ├── MediaBrowserCompatApi23$ItemCallback.class │ │ │ ├── MediaBrowserCompatApi23$ItemCallbackProxy.class │ │ │ ├── MediaBrowserCompatApi23.class │ │ │ ├── MediaBrowserCompatApi24$SubscriptionCallback.class │ │ │ ├── MediaBrowserCompatApi24$SubscriptionCallbackProxy.class │ │ │ ├── MediaBrowserCompatApi24.class │ │ │ ├── MediaBrowserCompatUtils.class │ │ │ ├── MediaBrowserProtocol.class │ │ │ ├── MediaBrowserServiceCompat$1.class │ │ │ ├── MediaBrowserServiceCompat$2.class │ │ │ ├── MediaBrowserServiceCompat$3.class │ │ │ ├── MediaBrowserServiceCompat$BrowserRoot.class │ │ │ ├── MediaBrowserServiceCompat$ConnectionRecord.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImpl.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplApi21$1.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplApi21$2.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplApi21.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplApi23$1.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplApi23.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplApi24$1.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplApi24.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplBase$1.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplBase$2.class │ │ │ ├── MediaBrowserServiceCompat$MediaBrowserServiceImplBase.class │ │ │ ├── MediaBrowserServiceCompat$Result.class │ │ │ ├── MediaBrowserServiceCompat$ServiceBinderImpl$1.class │ │ │ ├── MediaBrowserServiceCompat$ServiceBinderImpl$2.class │ │ │ ├── MediaBrowserServiceCompat$ServiceBinderImpl$3.class │ │ │ ├── MediaBrowserServiceCompat$ServiceBinderImpl$4.class │ │ │ ├── MediaBrowserServiceCompat$ServiceBinderImpl$5.class │ │ │ ├── MediaBrowserServiceCompat$ServiceBinderImpl$6.class │ │ │ ├── MediaBrowserServiceCompat$ServiceBinderImpl$7.class │ │ │ ├── MediaBrowserServiceCompat$ServiceBinderImpl$8.class │ │ │ ├── MediaBrowserServiceCompat$ServiceBinderImpl.class │ │ │ ├── MediaBrowserServiceCompat$ServiceCallbacks.class │ │ │ ├── MediaBrowserServiceCompat$ServiceCallbacksCompat.class │ │ │ ├── MediaBrowserServiceCompat$ServiceHandler.class │ │ │ ├── MediaBrowserServiceCompat.class │ │ │ ├── MediaBrowserServiceCompatApi21$BrowserRoot.class │ │ │ ├── MediaBrowserServiceCompatApi21$MediaBrowserServiceAdaptor.class │ │ │ ├── MediaBrowserServiceCompatApi21$ResultWrapper.class │ │ │ ├── MediaBrowserServiceCompatApi21$ServiceCompatProxy.class │ │ │ ├── MediaBrowserServiceCompatApi21.class │ │ │ ├── MediaBrowserServiceCompatApi23$MediaBrowserServiceAdaptor.class │ │ │ ├── MediaBrowserServiceCompatApi23$ServiceCompatProxy.class │ │ │ ├── MediaBrowserServiceCompatApi23.class │ │ │ ├── MediaBrowserServiceCompatApi24$MediaBrowserServiceAdaptor.class │ │ │ ├── MediaBrowserServiceCompatApi24$ResultWrapper.class │ │ │ ├── MediaBrowserServiceCompatApi24$ServiceCompatProxy.class │ │ │ ├── MediaBrowserServiceCompatApi24.class │ │ │ ├── MediaDescriptionCompat$1.class │ │ │ ├── MediaDescriptionCompat$Builder.class │ │ │ ├── MediaDescriptionCompat.class │ │ │ ├── MediaDescriptionCompatApi21$Builder.class │ │ │ ├── MediaDescriptionCompatApi21.class │ │ │ ├── MediaDescriptionCompatApi23$Builder.class │ │ │ ├── MediaDescriptionCompatApi23.class │ │ │ ├── MediaMetadataCompat$1.class │ │ │ ├── MediaMetadataCompat$BitmapKey.class │ │ │ ├── MediaMetadataCompat$Builder.class │ │ │ ├── MediaMetadataCompat$LongKey.class │ │ │ ├── MediaMetadataCompat$RatingKey.class │ │ │ ├── MediaMetadataCompat$TextKey.class │ │ │ ├── MediaMetadataCompat.class │ │ │ ├── MediaMetadataCompatApi21$Builder.class │ │ │ ├── MediaMetadataCompatApi21.class │ │ │ ├── ParceledListSliceAdapterApi21.class │ │ │ ├── RatingCompat$1.class │ │ │ ├── RatingCompat$StarStyle.class │ │ │ ├── RatingCompat$Style.class │ │ │ ├── RatingCompat.class │ │ │ ├── RatingCompatKitkat.class │ │ │ ├── TransportController.class │ │ │ ├── TransportMediator$1.class │ │ │ ├── TransportMediator$2.class │ │ │ ├── TransportMediator.class │ │ │ ├── TransportMediatorCallback.class │ │ │ ├── TransportMediatorJellybeanMR2$1.class │ │ │ ├── TransportMediatorJellybeanMR2$2.class │ │ │ ├── TransportMediatorJellybeanMR2$3.class │ │ │ ├── TransportMediatorJellybeanMR2$4.class │ │ │ ├── TransportMediatorJellybeanMR2$5.class │ │ │ ├── TransportMediatorJellybeanMR2$6.class │ │ │ ├── TransportMediatorJellybeanMR2.class │ │ │ ├── TransportPerformer.class │ │ │ ├── TransportStateListener.class │ │ │ ├── VolumeProviderCompat$1.class │ │ │ ├── VolumeProviderCompat$Callback.class │ │ │ ├── VolumeProviderCompat$ControlType.class │ │ │ ├── VolumeProviderCompat.class │ │ │ ├── VolumeProviderCompatApi21$1.class │ │ │ ├── VolumeProviderCompatApi21$Delegate.class │ │ │ ├── VolumeProviderCompatApi21.class │ │ │ └── session │ │ │ ├── IMediaControllerCallback$Stub$Proxy.class │ │ │ ├── IMediaControllerCallback$Stub.class │ │ │ ├── IMediaControllerCallback.class │ │ │ ├── IMediaSession$Stub$Proxy.class │ │ │ ├── IMediaSession$Stub.class │ │ │ ├── IMediaSession.class │ │ │ ├── MediaButtonReceiver.class │ │ │ ├── MediaControllerCompat$Callback$MessageHandler.class │ │ │ ├── MediaControllerCompat$Callback$StubApi21.class │ │ │ ├── MediaControllerCompat$Callback$StubCompat.class │ │ │ ├── MediaControllerCompat$Callback.class │ │ │ ├── MediaControllerCompat$MediaControllerExtraData.class │ │ │ ├── MediaControllerCompat$MediaControllerImpl.class │ │ │ ├── MediaControllerCompat$MediaControllerImplApi21$ExtraBinderRequestResultReceiver.class │ │ │ ├── MediaControllerCompat$MediaControllerImplApi21$ExtraCallback$1.class │ │ │ ├── MediaControllerCompat$MediaControllerImplApi21$ExtraCallback$2.class │ │ │ ├── MediaControllerCompat$MediaControllerImplApi21$ExtraCallback$3.class │ │ │ ├── MediaControllerCompat$MediaControllerImplApi21$ExtraCallback$4.class │ │ │ ├── MediaControllerCompat$MediaControllerImplApi21$ExtraCallback.class │ │ │ ├── MediaControllerCompat$MediaControllerImplApi21.class │ │ │ ├── MediaControllerCompat$MediaControllerImplApi23.class │ │ │ ├── MediaControllerCompat$MediaControllerImplApi24.class │ │ │ ├── MediaControllerCompat$MediaControllerImplBase.class │ │ │ ├── MediaControllerCompat$PlaybackInfo.class │ │ │ ├── MediaControllerCompat$TransportControls.class │ │ │ ├── MediaControllerCompat$TransportControlsApi21.class │ │ │ ├── MediaControllerCompat$TransportControlsApi23.class │ │ │ ├── MediaControllerCompat$TransportControlsApi24.class │ │ │ ├── MediaControllerCompat$TransportControlsBase.class │ │ │ ├── MediaControllerCompat.class │ │ │ ├── MediaControllerCompatApi21$Callback.class │ │ │ ├── MediaControllerCompatApi21$CallbackProxy.class │ │ │ ├── MediaControllerCompatApi21$PlaybackInfo.class │ │ │ ├── MediaControllerCompatApi21$TransportControls.class │ │ │ ├── MediaControllerCompatApi21.class │ │ │ ├── MediaControllerCompatApi23$TransportControls.class │ │ │ ├── MediaControllerCompatApi23.class │ │ │ ├── MediaControllerCompatApi24$TransportControls.class │ │ │ ├── MediaControllerCompatApi24.class │ │ │ ├── MediaSessionCompat$1.class │ │ │ ├── MediaSessionCompat$2.class │ │ │ ├── MediaSessionCompat$Callback$StubApi21.class │ │ │ ├── MediaSessionCompat$Callback$StubApi23.class │ │ │ ├── MediaSessionCompat$Callback$StubApi24.class │ │ │ ├── MediaSessionCompat$Callback.class │ │ │ ├── MediaSessionCompat$MediaSessionImpl.class │ │ │ ├── MediaSessionCompat$MediaSessionImplApi21$ExtraSession.class │ │ │ ├── MediaSessionCompat$MediaSessionImplApi21.class │ │ │ ├── MediaSessionCompat$MediaSessionImplBase$1.class │ │ │ ├── MediaSessionCompat$MediaSessionImplBase$2.class │ │ │ ├── MediaSessionCompat$MediaSessionImplBase$Command.class │ │ │ ├── MediaSessionCompat$MediaSessionImplBase$MediaSessionStub.class │ │ │ ├── MediaSessionCompat$MediaSessionImplBase$MessageHandler.class │ │ │ ├── MediaSessionCompat$MediaSessionImplBase.class │ │ │ ├── MediaSessionCompat$OnActiveChangeListener.class │ │ │ ├── MediaSessionCompat$QueueItem$1.class │ │ │ ├── MediaSessionCompat$QueueItem.class │ │ │ ├── MediaSessionCompat$ResultReceiverWrapper$1.class │ │ │ ├── MediaSessionCompat$ResultReceiverWrapper.class │ │ │ ├── MediaSessionCompat$SessionFlags.class │ │ │ ├── MediaSessionCompat$Token$1.class │ │ │ ├── MediaSessionCompat$Token.class │ │ │ ├── MediaSessionCompat.class │ │ │ ├── MediaSessionCompatApi14.class │ │ │ ├── MediaSessionCompatApi18$Callback.class │ │ │ ├── MediaSessionCompatApi18$OnPlaybackPositionUpdateListener.class │ │ │ ├── MediaSessionCompatApi18.class │ │ │ ├── MediaSessionCompatApi19$Callback.class │ │ │ ├── MediaSessionCompatApi19$OnMetadataUpdateListener.class │ │ │ ├── MediaSessionCompatApi19.class │ │ │ ├── MediaSessionCompatApi21$Callback.class │ │ │ ├── MediaSessionCompatApi21$CallbackProxy.class │ │ │ ├── MediaSessionCompatApi21$QueueItem.class │ │ │ ├── MediaSessionCompatApi21.class │ │ │ ├── MediaSessionCompatApi22.class │ │ │ ├── MediaSessionCompatApi23$Callback.class │ │ │ ├── MediaSessionCompatApi23$CallbackProxy.class │ │ │ ├── MediaSessionCompatApi23.class │ │ │ ├── MediaSessionCompatApi24$Callback.class │ │ │ ├── MediaSessionCompatApi24$CallbackProxy.class │ │ │ ├── MediaSessionCompatApi24.class │ │ │ ├── ParcelableVolumeInfo$1.class │ │ │ ├── ParcelableVolumeInfo.class │ │ │ ├── PlaybackStateCompat$1.class │ │ │ ├── PlaybackStateCompat$Actions.class │ │ │ ├── PlaybackStateCompat$Builder.class │ │ │ ├── PlaybackStateCompat$CustomAction$1.class │ │ │ ├── PlaybackStateCompat$CustomAction$Builder.class │ │ │ ├── PlaybackStateCompat$CustomAction.class │ │ │ ├── PlaybackStateCompat$ErrorCode.class │ │ │ ├── PlaybackStateCompat$MediaKeyAction.class │ │ │ ├── PlaybackStateCompat$RepeatMode.class │ │ │ ├── PlaybackStateCompat$State.class │ │ │ ├── PlaybackStateCompat.class │ │ │ ├── PlaybackStateCompatApi21$CustomAction.class │ │ │ ├── PlaybackStateCompatApi21.class │ │ │ └── PlaybackStateCompatApi22.class │ │ ├── classes.jar_75yer9ncbpbe04f1t7ei0fp0s │ │ └── android │ │ │ └── support │ │ │ ├── coreutils │ │ │ └── BuildConfig.class │ │ │ └── v4 │ │ │ ├── app │ │ │ ├── AppLaunchChecker.class │ │ │ ├── NavUtils$NavUtilsImpl.class │ │ │ ├── NavUtils$NavUtilsImplBase.class │ │ │ ├── NavUtils$NavUtilsImplJB.class │ │ │ ├── NavUtils.class │ │ │ ├── NavUtilsJB.class │ │ │ ├── TaskStackBuilder$SupportParentable.class │ │ │ ├── TaskStackBuilder$TaskStackBuilderImpl.class │ │ │ ├── TaskStackBuilder$TaskStackBuilderImplBase.class │ │ │ ├── TaskStackBuilder$TaskStackBuilderImplHoneycomb.class │ │ │ ├── TaskStackBuilder$TaskStackBuilderImplJellybean.class │ │ │ ├── TaskStackBuilder.class │ │ │ ├── TaskStackBuilderHoneycomb.class │ │ │ └── TaskStackBuilderJellybean.class │ │ │ ├── content │ │ │ ├── AsyncTaskLoader$LoadTask.class │ │ │ ├── AsyncTaskLoader.class │ │ │ ├── CursorLoader.class │ │ │ ├── FileProvider$PathStrategy.class │ │ │ ├── FileProvider$SimplePathStrategy.class │ │ │ ├── FileProvider.class │ │ │ ├── Loader$ForceLoadContentObserver.class │ │ │ ├── Loader$OnLoadCanceledListener.class │ │ │ ├── Loader$OnLoadCompleteListener.class │ │ │ ├── Loader.class │ │ │ ├── LocalBroadcastManager$1.class │ │ │ ├── LocalBroadcastManager$BroadcastRecord.class │ │ │ ├── LocalBroadcastManager$ReceiverRecord.class │ │ │ ├── LocalBroadcastManager.class │ │ │ ├── PermissionChecker$PermissionResult.class │ │ │ ├── PermissionChecker.class │ │ │ ├── WakefulBroadcastReceiver.class │ │ │ └── res │ │ │ │ └── TypedArrayUtils.class │ │ │ ├── graphics │ │ │ ├── ColorUtils.class │ │ │ └── drawable │ │ │ │ ├── RoundedBitmapDrawable.class │ │ │ │ ├── RoundedBitmapDrawable21.class │ │ │ │ ├── RoundedBitmapDrawableFactory$DefaultRoundedBitmapDrawable.class │ │ │ │ └── RoundedBitmapDrawableFactory.class │ │ │ ├── print │ │ │ ├── PrintHelper$1.class │ │ │ ├── PrintHelper$OnPrintFinishCallback.class │ │ │ ├── PrintHelper$PrintHelperApi20Impl.class │ │ │ ├── PrintHelper$PrintHelperApi23Impl.class │ │ │ ├── PrintHelper$PrintHelperApi24Impl.class │ │ │ ├── PrintHelper$PrintHelperImpl$1.class │ │ │ ├── PrintHelper$PrintHelperImpl$2.class │ │ │ ├── PrintHelper$PrintHelperImpl.class │ │ │ ├── PrintHelper$PrintHelperKitkatImpl.class │ │ │ ├── PrintHelper$PrintHelperStubImpl.class │ │ │ ├── PrintHelper$PrintHelperVersionImpl.class │ │ │ ├── PrintHelper.class │ │ │ ├── PrintHelperApi20.class │ │ │ ├── PrintHelperApi23.class │ │ │ ├── PrintHelperApi24.class │ │ │ ├── PrintHelperKitkat$1.class │ │ │ ├── PrintHelperKitkat$2.class │ │ │ ├── PrintHelperKitkat$3$1$1.class │ │ │ ├── PrintHelperKitkat$3$1.class │ │ │ ├── PrintHelperKitkat$3.class │ │ │ ├── PrintHelperKitkat$OnPrintFinishCallback.class │ │ │ └── PrintHelperKitkat.class │ │ │ ├── provider │ │ │ ├── DocumentFile.class │ │ │ ├── DocumentsContractApi19.class │ │ │ ├── DocumentsContractApi21.class │ │ │ ├── RawDocumentFile.class │ │ │ ├── SingleDocumentFile.class │ │ │ └── TreeDocumentFile.class │ │ │ └── text │ │ │ ├── BidiFormatter$1.class │ │ │ ├── BidiFormatter$Builder.class │ │ │ ├── BidiFormatter$DirectionalityEstimator.class │ │ │ └── BidiFormatter.class │ │ ├── classes.jar_9t93vfybk9y852botu6z80aoi │ │ └── android │ │ │ └── support │ │ │ └── v7 │ │ │ ├── app │ │ │ ├── ActionBar$DisplayOptions.class │ │ │ ├── ActionBar$LayoutParams.class │ │ │ ├── ActionBar$NavigationMode.class │ │ │ ├── ActionBar$OnMenuVisibilityListener.class │ │ │ ├── ActionBar$OnNavigationListener.class │ │ │ ├── ActionBar$Tab.class │ │ │ ├── ActionBar$TabListener.class │ │ │ ├── ActionBar.class │ │ │ ├── ActionBarActivity.class │ │ │ ├── ActionBarDrawerToggle$1.class │ │ │ ├── ActionBarDrawerToggle$Delegate.class │ │ │ ├── ActionBarDrawerToggle$DelegateProvider.class │ │ │ ├── ActionBarDrawerToggle$DummyDelegate.class │ │ │ ├── ActionBarDrawerToggle$HoneycombDelegate.class │ │ │ ├── ActionBarDrawerToggle$IcsDelegate.class │ │ │ ├── ActionBarDrawerToggle$JellybeanMr2Delegate.class │ │ │ ├── ActionBarDrawerToggle$ToolbarCompatDelegate.class │ │ │ ├── ActionBarDrawerToggle.class │ │ │ ├── ActionBarDrawerToggleHoneycomb$SetIndicatorInfo.class │ │ │ ├── ActionBarDrawerToggleHoneycomb.class │ │ │ ├── AlertController$1.class │ │ │ ├── AlertController$2.class │ │ │ ├── AlertController$3.class │ │ │ ├── AlertController$4.class │ │ │ ├── AlertController$5.class │ │ │ ├── AlertController$AlertParams$1.class │ │ │ ├── AlertController$AlertParams$2.class │ │ │ ├── AlertController$AlertParams$3.class │ │ │ ├── AlertController$AlertParams$4.class │ │ │ ├── AlertController$AlertParams$OnPrepareListViewListener.class │ │ │ ├── AlertController$AlertParams.class │ │ │ ├── AlertController$ButtonHandler.class │ │ │ ├── AlertController$CheckedItemAdapter.class │ │ │ ├── AlertController$RecycleListView.class │ │ │ ├── AlertController.class │ │ │ ├── AlertDialog$Builder.class │ │ │ ├── AlertDialog.class │ │ │ ├── AppCompatActivity.class │ │ │ ├── AppCompatCallback.class │ │ │ ├── AppCompatDelegate$NightMode.class │ │ │ ├── AppCompatDelegate.class │ │ │ ├── AppCompatDelegateImplBase$1.class │ │ │ ├── AppCompatDelegateImplBase$ActionBarDrawableToggleImpl.class │ │ │ ├── AppCompatDelegateImplBase$AppCompatWindowCallbackBase.class │ │ │ ├── AppCompatDelegateImplBase.class │ │ │ ├── AppCompatDelegateImplN$AppCompatWindowCallbackN.class │ │ │ ├── AppCompatDelegateImplN.class │ │ │ ├── AppCompatDelegateImplV11.class │ │ │ ├── AppCompatDelegateImplV14$AppCompatWindowCallbackV14.class │ │ │ ├── AppCompatDelegateImplV14$AutoNightModeManager$1.class │ │ │ ├── AppCompatDelegateImplV14$AutoNightModeManager.class │ │ │ ├── AppCompatDelegateImplV14.class │ │ │ ├── AppCompatDelegateImplV23$AppCompatWindowCallbackV23.class │ │ │ ├── AppCompatDelegateImplV23.class │ │ │ ├── AppCompatDelegateImplV9$1.class │ │ │ ├── AppCompatDelegateImplV9$2.class │ │ │ ├── AppCompatDelegateImplV9$3.class │ │ │ ├── AppCompatDelegateImplV9$4.class │ │ │ ├── AppCompatDelegateImplV9$5$1.class │ │ │ ├── AppCompatDelegateImplV9$5.class │ │ │ ├── AppCompatDelegateImplV9$6.class │ │ │ ├── AppCompatDelegateImplV9$ActionMenuPresenterCallback.class │ │ │ ├── AppCompatDelegateImplV9$ActionModeCallbackWrapperV9$1.class │ │ │ ├── AppCompatDelegateImplV9$ActionModeCallbackWrapperV9.class │ │ │ ├── AppCompatDelegateImplV9$ListMenuDecorView.class │ │ │ ├── AppCompatDelegateImplV9$PanelFeatureState$SavedState$1.class │ │ │ ├── AppCompatDelegateImplV9$PanelFeatureState$SavedState.class │ │ │ ├── AppCompatDelegateImplV9$PanelFeatureState.class │ │ │ ├── AppCompatDelegateImplV9$PanelMenuPresenterCallback.class │ │ │ ├── AppCompatDelegateImplV9.class │ │ │ ├── AppCompatDialog.class │ │ │ ├── AppCompatDialogFragment.class │ │ │ ├── AppCompatViewInflater$DeclaredOnClickListener.class │ │ │ ├── AppCompatViewInflater.class │ │ │ ├── NavItemSelectedListener.class │ │ │ ├── NotificationCompat$1.class │ │ │ ├── NotificationCompat$Api24Extender.class │ │ │ ├── NotificationCompat$Builder.class │ │ │ ├── NotificationCompat$DecoratedCustomViewStyle.class │ │ │ ├── NotificationCompat$DecoratedMediaCustomViewStyle.class │ │ │ ├── NotificationCompat$IceCreamSandwichExtender.class │ │ │ ├── NotificationCompat$JellybeanExtender.class │ │ │ ├── NotificationCompat$LollipopExtender.class │ │ │ ├── NotificationCompat$MediaStyle.class │ │ │ ├── NotificationCompat.class │ │ │ ├── NotificationCompatImpl21.class │ │ │ ├── NotificationCompatImpl24.class │ │ │ ├── NotificationCompatImplBase.class │ │ │ ├── NotificationCompatImplJellybean.class │ │ │ ├── ResourcesFlusher.class │ │ │ ├── ToolbarActionBar$1.class │ │ │ ├── ToolbarActionBar$2.class │ │ │ ├── ToolbarActionBar$ActionMenuPresenterCallback.class │ │ │ ├── ToolbarActionBar$MenuBuilderCallback.class │ │ │ ├── ToolbarActionBar$PanelMenuPresenterCallback.class │ │ │ ├── ToolbarActionBar$ToolbarCallbackWrapper.class │ │ │ ├── ToolbarActionBar.class │ │ │ ├── TwilightCalculator.class │ │ │ ├── TwilightManager$TwilightState.class │ │ │ ├── TwilightManager.class │ │ │ ├── WindowDecorActionBar$1.class │ │ │ ├── WindowDecorActionBar$2.class │ │ │ ├── WindowDecorActionBar$3.class │ │ │ ├── WindowDecorActionBar$ActionModeImpl.class │ │ │ ├── WindowDecorActionBar$TabImpl.class │ │ │ └── WindowDecorActionBar.class │ │ │ ├── appcompat │ │ │ └── BuildConfig.class │ │ │ ├── content │ │ │ └── res │ │ │ │ ├── AppCompatColorStateListInflater.class │ │ │ │ ├── AppCompatResources$ColorStateListCacheEntry.class │ │ │ │ ├── AppCompatResources.class │ │ │ │ └── GrowingArrayUtils.class │ │ │ ├── graphics │ │ │ └── drawable │ │ │ │ ├── DrawableWrapper.class │ │ │ │ ├── DrawerArrowDrawable$ArrowDirection.class │ │ │ │ └── DrawerArrowDrawable.class │ │ │ ├── text │ │ │ └── AllCapsTransformationMethod.class │ │ │ ├── transition │ │ │ └── ActionBarTransition.class │ │ │ ├── view │ │ │ ├── ActionBarPolicy.class │ │ │ ├── ActionMode$Callback.class │ │ │ ├── ActionMode.class │ │ │ ├── CollapsibleActionView.class │ │ │ ├── ContextThemeWrapper.class │ │ │ ├── StandaloneActionMode.class │ │ │ ├── SupportActionModeWrapper$CallbackWrapper.class │ │ │ ├── SupportActionModeWrapper.class │ │ │ ├── SupportMenuInflater$InflatedOnMenuItemClickListener.class │ │ │ ├── SupportMenuInflater$MenuState.class │ │ │ ├── SupportMenuInflater.class │ │ │ ├── ViewPropertyAnimatorCompatSet$1.class │ │ │ ├── ViewPropertyAnimatorCompatSet.class │ │ │ ├── WindowCallbackWrapper.class │ │ │ └── menu │ │ │ │ ├── ActionMenuItem.class │ │ │ │ ├── ActionMenuItemView$ActionMenuItemForwardingListener.class │ │ │ │ ├── ActionMenuItemView$PopupCallback.class │ │ │ │ ├── ActionMenuItemView.class │ │ │ │ ├── BaseMenuPresenter.class │ │ │ │ ├── BaseMenuWrapper.class │ │ │ │ ├── BaseWrapper.class │ │ │ │ ├── CascadingMenuPopup$1.class │ │ │ │ ├── CascadingMenuPopup$2$1.class │ │ │ │ ├── CascadingMenuPopup$2.class │ │ │ │ ├── CascadingMenuPopup$CascadingMenuInfo.class │ │ │ │ ├── CascadingMenuPopup$HorizPosition.class │ │ │ │ ├── CascadingMenuPopup.class │ │ │ │ ├── ExpandedMenuView.class │ │ │ │ ├── ListMenuItemView.class │ │ │ │ ├── ListMenuPresenter$MenuAdapter.class │ │ │ │ ├── ListMenuPresenter.class │ │ │ │ ├── MenuAdapter.class │ │ │ │ ├── MenuBuilder$Callback.class │ │ │ │ ├── MenuBuilder$ItemInvoker.class │ │ │ │ ├── MenuBuilder.class │ │ │ │ ├── MenuDialogHelper.class │ │ │ │ ├── MenuHelper.class │ │ │ │ ├── MenuItemImpl$1.class │ │ │ │ ├── MenuItemImpl.class │ │ │ │ ├── MenuItemWrapperICS$ActionProviderWrapper.class │ │ │ │ ├── MenuItemWrapperICS$CollapsibleActionViewWrapper.class │ │ │ │ ├── MenuItemWrapperICS$OnActionExpandListenerWrapper.class │ │ │ │ ├── MenuItemWrapperICS$OnMenuItemClickListenerWrapper.class │ │ │ │ ├── MenuItemWrapperICS.class │ │ │ │ ├── MenuItemWrapperJB$ActionProviderWrapperJB.class │ │ │ │ ├── MenuItemWrapperJB.class │ │ │ │ ├── MenuPopup.class │ │ │ │ ├── MenuPopupHelper$1.class │ │ │ │ ├── MenuPopupHelper.class │ │ │ │ ├── MenuPresenter$Callback.class │ │ │ │ ├── MenuPresenter.class │ │ │ │ ├── MenuView$ItemView.class │ │ │ │ ├── MenuView.class │ │ │ │ ├── MenuWrapperFactory.class │ │ │ │ ├── MenuWrapperICS.class │ │ │ │ ├── ShowableListMenu.class │ │ │ │ ├── StandardMenuPopup$1.class │ │ │ │ ├── StandardMenuPopup.class │ │ │ │ ├── SubMenuBuilder.class │ │ │ │ └── SubMenuWrapperICS.class │ │ │ └── widget │ │ │ ├── AbsActionBarView$1.class │ │ │ ├── AbsActionBarView$VisibilityAnimListener.class │ │ │ ├── AbsActionBarView.class │ │ │ ├── ActionBarBackgroundDrawable.class │ │ │ ├── ActionBarBackgroundDrawableV21.class │ │ │ ├── ActionBarContainer.class │ │ │ ├── ActionBarContextView$1.class │ │ │ ├── ActionBarContextView.class │ │ │ ├── ActionBarOverlayLayout$1.class │ │ │ ├── ActionBarOverlayLayout$2.class │ │ │ ├── ActionBarOverlayLayout$3.class │ │ │ ├── ActionBarOverlayLayout$ActionBarVisibilityCallback.class │ │ │ ├── ActionBarOverlayLayout$LayoutParams.class │ │ │ ├── ActionBarOverlayLayout.class │ │ │ ├── ActionMenuPresenter$ActionButtonSubmenu.class │ │ │ ├── ActionMenuPresenter$ActionMenuPopupCallback.class │ │ │ ├── ActionMenuPresenter$OpenOverflowRunnable.class │ │ │ ├── ActionMenuPresenter$OverflowMenuButton$1.class │ │ │ ├── ActionMenuPresenter$OverflowMenuButton.class │ │ │ ├── ActionMenuPresenter$OverflowPopup.class │ │ │ ├── ActionMenuPresenter$PopupPresenterCallback.class │ │ │ ├── ActionMenuPresenter$SavedState$1.class │ │ │ ├── ActionMenuPresenter$SavedState.class │ │ │ ├── ActionMenuPresenter.class │ │ │ ├── ActionMenuView$ActionMenuChildView.class │ │ │ ├── ActionMenuView$ActionMenuPresenterCallback.class │ │ │ ├── ActionMenuView$LayoutParams.class │ │ │ ├── ActionMenuView$MenuBuilderCallback.class │ │ │ ├── ActionMenuView$OnMenuItemClickListener.class │ │ │ ├── ActionMenuView.class │ │ │ ├── ActivityChooserModel$ActivityChooserModelClient.class │ │ │ ├── ActivityChooserModel$ActivityResolveInfo.class │ │ │ ├── ActivityChooserModel$ActivitySorter.class │ │ │ ├── ActivityChooserModel$DefaultSorter.class │ │ │ ├── ActivityChooserModel$HistoricalRecord.class │ │ │ ├── ActivityChooserModel$OnChooseActivityListener.class │ │ │ ├── ActivityChooserModel$PersistHistoryAsyncTask.class │ │ │ ├── ActivityChooserModel.class │ │ │ ├── ActivityChooserView$1.class │ │ │ ├── ActivityChooserView$2.class │ │ │ ├── ActivityChooserView$3.class │ │ │ ├── ActivityChooserView$4.class │ │ │ ├── ActivityChooserView$ActivityChooserViewAdapter.class │ │ │ ├── ActivityChooserView$Callbacks.class │ │ │ ├── ActivityChooserView$InnerLayout.class │ │ │ ├── ActivityChooserView.class │ │ │ ├── AlertDialogLayout.class │ │ │ ├── AppCompatAutoCompleteTextView.class │ │ │ ├── AppCompatBackgroundHelper.class │ │ │ ├── AppCompatButton.class │ │ │ ├── AppCompatCheckBox.class │ │ │ ├── AppCompatCheckedTextView.class │ │ │ ├── AppCompatCompoundButtonHelper$DirectSetButtonDrawableInterface.class │ │ │ ├── AppCompatCompoundButtonHelper.class │ │ │ ├── AppCompatDrawableManager$AvdcInflateDelegate.class │ │ │ ├── AppCompatDrawableManager$ColorFilterLruCache.class │ │ │ ├── AppCompatDrawableManager$InflateDelegate.class │ │ │ ├── AppCompatDrawableManager$VdcInflateDelegate.class │ │ │ ├── AppCompatDrawableManager.class │ │ │ ├── AppCompatEditText.class │ │ │ ├── AppCompatImageButton.class │ │ │ ├── AppCompatImageHelper.class │ │ │ ├── AppCompatImageView.class │ │ │ ├── AppCompatMultiAutoCompleteTextView.class │ │ │ ├── AppCompatPopupWindow$1.class │ │ │ ├── AppCompatPopupWindow.class │ │ │ ├── AppCompatProgressBarHelper.class │ │ │ ├── AppCompatRadioButton.class │ │ │ ├── AppCompatRatingBar.class │ │ │ ├── AppCompatSeekBar.class │ │ │ ├── AppCompatSeekBarHelper.class │ │ │ ├── AppCompatSpinner$1.class │ │ │ ├── AppCompatSpinner$DropDownAdapter.class │ │ │ ├── AppCompatSpinner$DropdownPopup$1.class │ │ │ ├── AppCompatSpinner$DropdownPopup$2.class │ │ │ ├── AppCompatSpinner$DropdownPopup$3.class │ │ │ ├── AppCompatSpinner$DropdownPopup.class │ │ │ ├── AppCompatSpinner.class │ │ │ ├── AppCompatTextHelper.class │ │ │ ├── AppCompatTextHelperV17.class │ │ │ ├── AppCompatTextView.class │ │ │ ├── ButtonBarLayout.class │ │ │ ├── ContentFrameLayout$OnAttachListener.class │ │ │ ├── ContentFrameLayout.class │ │ │ ├── DecorContentParent.class │ │ │ ├── DecorToolbar.class │ │ │ ├── DialogTitle.class │ │ │ ├── DrawableUtils.class │ │ │ ├── DropDownListView.class │ │ │ ├── FitWindowsFrameLayout.class │ │ │ ├── FitWindowsLinearLayout.class │ │ │ ├── FitWindowsViewGroup$OnFitSystemWindowsListener.class │ │ │ ├── FitWindowsViewGroup.class │ │ │ ├── ForwardingListener$1.class │ │ │ ├── ForwardingListener$2.class │ │ │ ├── ForwardingListener$DisallowIntercept.class │ │ │ ├── ForwardingListener$TriggerLongPress.class │ │ │ ├── ForwardingListener.class │ │ │ ├── LinearLayoutCompat$DividerMode.class │ │ │ ├── LinearLayoutCompat$LayoutParams.class │ │ │ ├── LinearLayoutCompat$OrientationMode.class │ │ │ ├── LinearLayoutCompat.class │ │ │ ├── ListPopupWindow$1.class │ │ │ ├── ListPopupWindow$2.class │ │ │ ├── ListPopupWindow$3.class │ │ │ ├── ListPopupWindow$ListSelectorHider.class │ │ │ ├── ListPopupWindow$PopupDataSetObserver.class │ │ │ ├── ListPopupWindow$PopupScrollListener.class │ │ │ ├── ListPopupWindow$PopupTouchInterceptor.class │ │ │ ├── ListPopupWindow$ResizePopupRunnable.class │ │ │ ├── ListPopupWindow.class │ │ │ ├── ListViewCompat$GateKeeperDrawable.class │ │ │ ├── ListViewCompat.class │ │ │ ├── MenuItemHoverListener.class │ │ │ ├── MenuPopupWindow$MenuDropDownListView.class │ │ │ ├── MenuPopupWindow.class │ │ │ ├── PopupMenu$1.class │ │ │ ├── PopupMenu$2.class │ │ │ ├── PopupMenu$3.class │ │ │ ├── PopupMenu$OnDismissListener.class │ │ │ ├── PopupMenu$OnMenuItemClickListener.class │ │ │ ├── PopupMenu.class │ │ │ ├── ResourcesWrapper.class │ │ │ ├── RtlSpacingHelper.class │ │ │ ├── ScrollingTabContainerView$1.class │ │ │ ├── ScrollingTabContainerView$TabAdapter.class │ │ │ ├── ScrollingTabContainerView$TabClickListener.class │ │ │ ├── ScrollingTabContainerView$TabView.class │ │ │ ├── ScrollingTabContainerView$VisibilityAnimListener.class │ │ │ ├── ScrollingTabContainerView.class │ │ │ ├── SearchView$1.class │ │ │ ├── SearchView$10.class │ │ │ ├── SearchView$11.class │ │ │ ├── SearchView$12.class │ │ │ ├── SearchView$2.class │ │ │ ├── SearchView$3.class │ │ │ ├── SearchView$4.class │ │ │ ├── SearchView$5.class │ │ │ ├── SearchView$6.class │ │ │ ├── SearchView$7.class │ │ │ ├── SearchView$8.class │ │ │ ├── SearchView$9.class │ │ │ ├── SearchView$AutoCompleteTextViewReflector.class │ │ │ ├── SearchView$OnCloseListener.class │ │ │ ├── SearchView$OnQueryTextListener.class │ │ │ ├── SearchView$OnSuggestionListener.class │ │ │ ├── SearchView$SavedState$1.class │ │ │ ├── SearchView$SavedState.class │ │ │ ├── SearchView$SearchAutoComplete.class │ │ │ ├── SearchView$UpdatableTouchDelegate.class │ │ │ ├── SearchView.class │ │ │ ├── ShareActionProvider$OnShareTargetSelectedListener.class │ │ │ ├── ShareActionProvider$ShareActivityChooserModelPolicy.class │ │ │ ├── ShareActionProvider$ShareMenuItemOnMenuItemClickListener.class │ │ │ ├── ShareActionProvider.class │ │ │ ├── SuggestionsAdapter$ChildViewCache.class │ │ │ ├── SuggestionsAdapter.class │ │ │ ├── SwitchCompat$1.class │ │ │ ├── SwitchCompat$ThumbAnimation.class │ │ │ ├── SwitchCompat.class │ │ │ ├── ThemeUtils.class │ │ │ ├── ThemedSpinnerAdapter$Helper.class │ │ │ ├── ThemedSpinnerAdapter.class │ │ │ ├── TintContextWrapper.class │ │ │ ├── TintInfo.class │ │ │ ├── TintResources.class │ │ │ ├── TintTypedArray.class │ │ │ ├── Toolbar$1.class │ │ │ ├── Toolbar$2.class │ │ │ ├── Toolbar$3.class │ │ │ ├── Toolbar$ExpandedActionViewMenuPresenter.class │ │ │ ├── Toolbar$LayoutParams.class │ │ │ ├── Toolbar$OnMenuItemClickListener.class │ │ │ ├── Toolbar$SavedState$1.class │ │ │ ├── Toolbar$SavedState.class │ │ │ ├── Toolbar.class │ │ │ ├── ToolbarWidgetWrapper$1.class │ │ │ ├── ToolbarWidgetWrapper$2.class │ │ │ ├── ToolbarWidgetWrapper.class │ │ │ ├── VectorEnabledTintResources.class │ │ │ ├── ViewStubCompat$OnInflateListener.class │ │ │ ├── ViewStubCompat.class │ │ │ └── ViewUtils.class │ │ ├── classes.jar_adubetfdsycd8pip914lu9k2w │ │ └── android │ │ │ └── support │ │ │ ├── fragment │ │ │ └── BuildConfig.class │ │ │ └── v4 │ │ │ └── app │ │ │ ├── BackStackRecord$Op.class │ │ │ ├── BackStackRecord.class │ │ │ ├── BackStackState$1.class │ │ │ ├── BackStackState.class │ │ │ ├── BaseFragmentActivityGingerbread.class │ │ │ ├── BaseFragmentActivityHoneycomb.class │ │ │ ├── BaseFragmentActivityJB.class │ │ │ ├── DialogFragment.class │ │ │ ├── Fragment$1.class │ │ │ ├── Fragment$2.class │ │ │ ├── Fragment$AnimationInfo.class │ │ │ ├── Fragment$InstantiationException.class │ │ │ ├── Fragment$OnStartEnterTransitionListener.class │ │ │ ├── Fragment$SavedState$1.class │ │ │ ├── Fragment$SavedState.class │ │ │ ├── Fragment.class │ │ │ ├── FragmentActivity$1.class │ │ │ ├── FragmentActivity$HostCallbacks.class │ │ │ ├── FragmentActivity$NonConfigurationInstances.class │ │ │ ├── FragmentActivity.class │ │ │ ├── FragmentContainer.class │ │ │ ├── FragmentController.class │ │ │ ├── FragmentHostCallback.class │ │ │ ├── FragmentManager$BackStackEntry.class │ │ │ ├── FragmentManager$FragmentLifecycleCallbacks.class │ │ │ ├── FragmentManager$OnBackStackChangedListener.class │ │ │ ├── FragmentManager.class │ │ │ ├── FragmentManagerImpl$1.class │ │ │ ├── FragmentManagerImpl$2.class │ │ │ ├── FragmentManagerImpl$AnimateOnHWLayerIfNeededListener$1.class │ │ │ ├── FragmentManagerImpl$AnimateOnHWLayerIfNeededListener.class │ │ │ ├── FragmentManagerImpl$FragmentTag.class │ │ │ ├── FragmentManagerImpl$OpGenerator.class │ │ │ ├── FragmentManagerImpl$PopBackStackState.class │ │ │ ├── FragmentManagerImpl$StartEnterTransitionListener.class │ │ │ ├── FragmentManagerImpl.class │ │ │ ├── FragmentManagerNonConfig.class │ │ │ ├── FragmentManagerState$1.class │ │ │ ├── FragmentManagerState.class │ │ │ ├── FragmentPagerAdapter.class │ │ │ ├── FragmentState$1.class │ │ │ ├── FragmentState.class │ │ │ ├── FragmentStatePagerAdapter.class │ │ │ ├── FragmentTabHost$DummyTabFactory.class │ │ │ ├── FragmentTabHost$SavedState$1.class │ │ │ ├── FragmentTabHost$SavedState.class │ │ │ ├── FragmentTabHost$TabInfo.class │ │ │ ├── FragmentTabHost.class │ │ │ ├── FragmentTransaction.class │ │ │ ├── FragmentTransition$1.class │ │ │ ├── FragmentTransition$2.class │ │ │ ├── FragmentTransition$3.class │ │ │ ├── FragmentTransition$4.class │ │ │ ├── FragmentTransition$FragmentContainerTransition.class │ │ │ ├── FragmentTransition.class │ │ │ ├── FragmentTransitionCompat21$1.class │ │ │ ├── FragmentTransitionCompat21$2.class │ │ │ ├── FragmentTransitionCompat21$3.class │ │ │ ├── FragmentTransitionCompat21$4.class │ │ │ ├── FragmentTransitionCompat21$5.class │ │ │ ├── FragmentTransitionCompat21$6.class │ │ │ ├── FragmentTransitionCompat21$7.class │ │ │ ├── FragmentTransitionCompat21.class │ │ │ ├── ListFragment$1.class │ │ │ ├── ListFragment$2.class │ │ │ ├── ListFragment.class │ │ │ ├── LoaderManager$LoaderCallbacks.class │ │ │ ├── LoaderManager.class │ │ │ ├── LoaderManagerImpl$LoaderInfo.class │ │ │ ├── LoaderManagerImpl.class │ │ │ ├── NoSaveStateFrameLayout.class │ │ │ ├── OneShotPreDrawListener.class │ │ │ └── SuperNotCalledException.class │ │ ├── classes.jar_bec3t1g9mwqyn3qscf9eyo9v9 │ │ └── com │ │ │ └── javier │ │ │ └── filterview │ │ │ ├── BuildConfig.class │ │ │ ├── FilterAdapter$1.class │ │ │ ├── FilterAdapter$2.class │ │ │ ├── FilterAdapter$3.class │ │ │ ├── FilterAdapter$4.class │ │ │ ├── FilterAdapter$FilterHolder.class │ │ │ ├── FilterAdapter.class │ │ │ ├── FilterItem.class │ │ │ ├── FilterSection.class │ │ │ ├── FilterView$1.class │ │ │ ├── FilterView$2.class │ │ │ ├── FilterView$Builder.class │ │ │ ├── FilterView.class │ │ │ ├── OnFilterViewResultListener.class │ │ │ ├── extra │ │ │ ├── ExtraOption.class │ │ │ ├── ExtraSection$Builder.class │ │ │ ├── ExtraSection.class │ │ │ ├── ExtraSectionAdapter$1.class │ │ │ ├── ExtraSectionAdapter$2.class │ │ │ ├── ExtraSectionAdapter$3.class │ │ │ ├── ExtraSectionAdapter$4.class │ │ │ ├── ExtraSectionAdapter$5$1.class │ │ │ ├── ExtraSectionAdapter$5$2.class │ │ │ ├── ExtraSectionAdapter$5.class │ │ │ ├── ExtraSectionAdapter$6$1.class │ │ │ ├── ExtraSectionAdapter$6.class │ │ │ ├── ExtraSectionAdapter$7$1.class │ │ │ ├── ExtraSectionAdapter$7$2.class │ │ │ ├── ExtraSectionAdapter$7.class │ │ │ ├── ExtraSectionAdapter$ExtraSectionHolder.class │ │ │ ├── ExtraSectionAdapter.class │ │ │ ├── OnExtraOptionListener.class │ │ │ ├── cboolean │ │ │ │ ├── ExtraBoolean.class │ │ │ │ └── OnBooleanCheckedChangeListener.class │ │ │ ├── ccurrencytext │ │ │ │ ├── CurrencyEditText$1.class │ │ │ │ ├── CurrencyEditText.class │ │ │ │ └── ExtraCurrencyEditText.class │ │ │ ├── cdate │ │ │ │ └── ExtraDate.class │ │ │ ├── chms │ │ │ │ └── ExtraHMS.class │ │ │ ├── clist │ │ │ │ ├── ExtraList.class │ │ │ │ └── TypeList.class │ │ │ └── ctext │ │ │ │ ├── ExtraEditText.class │ │ │ │ └── TextType.class │ │ │ ├── single │ │ │ ├── OnSingleOptionListener.class │ │ │ ├── SingleOption.class │ │ │ ├── SingleSection$Builder.class │ │ │ ├── SingleSection.class │ │ │ ├── SingleSectionAdapter$1.class │ │ │ ├── SingleSectionAdapter$SingleSectionHolder.class │ │ │ └── SingleSectionAdapter.class │ │ │ ├── slider │ │ │ ├── OnSliderValueChangeListener.class │ │ │ ├── SliderOption.class │ │ │ ├── SliderSection$Builder.class │ │ │ ├── SliderSection.class │ │ │ ├── SliderSectionAdapter$1.class │ │ │ ├── SliderSectionAdapter$2.class │ │ │ ├── SliderSectionAdapter$SliderSectionHolder.class │ │ │ ├── SliderSectionAdapter.class │ │ │ └── SliderType.class │ │ │ └── tag │ │ │ ├── OnTagListener.class │ │ │ ├── TagAdapter$1.class │ │ │ ├── TagAdapter$TagHolder.class │ │ │ ├── TagAdapter.class │ │ │ ├── TagGravity.class │ │ │ ├── TagMode.class │ │ │ ├── TagSection$Builder.class │ │ │ └── TagSection.class │ │ ├── classes.jar_ed57uk2gu9spi83pfejn0nup8 │ │ └── android │ │ │ └── support │ │ │ ├── compat │ │ │ └── BuildConfig.class │ │ │ └── v4 │ │ │ ├── accessibilityservice │ │ │ ├── AccessibilityServiceInfoCompat$AccessibilityServiceInfoIcsImpl.class │ │ │ ├── AccessibilityServiceInfoCompat$AccessibilityServiceInfoJellyBeanImpl.class │ │ │ ├── AccessibilityServiceInfoCompat$AccessibilityServiceInfoJellyBeanMr2Impl.class │ │ │ ├── AccessibilityServiceInfoCompat$AccessibilityServiceInfoStubImpl.class │ │ │ ├── AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl.class │ │ │ ├── AccessibilityServiceInfoCompat.class │ │ │ ├── AccessibilityServiceInfoCompatIcs.class │ │ │ ├── AccessibilityServiceInfoCompatJellyBean.class │ │ │ └── AccessibilityServiceInfoCompatJellyBeanMr2.class │ │ │ ├── animation │ │ │ ├── AnimatorCompatHelper.class │ │ │ ├── AnimatorListenerCompat.class │ │ │ ├── AnimatorProvider.class │ │ │ ├── AnimatorUpdateListenerCompat.class │ │ │ ├── GingerbreadAnimatorCompatProvider$GingerbreadFloatValueAnimator$1.class │ │ │ ├── GingerbreadAnimatorCompatProvider$GingerbreadFloatValueAnimator.class │ │ │ ├── GingerbreadAnimatorCompatProvider.class │ │ │ ├── HoneycombMr1AnimatorCompatProvider$AnimatorListenerCompatWrapper.class │ │ │ ├── HoneycombMr1AnimatorCompatProvider$HoneycombValueAnimatorCompat$1.class │ │ │ ├── HoneycombMr1AnimatorCompatProvider$HoneycombValueAnimatorCompat.class │ │ │ ├── HoneycombMr1AnimatorCompatProvider.class │ │ │ └── ValueAnimatorCompat.class │ │ │ ├── app │ │ │ ├── ActivityCompat$1.class │ │ │ ├── ActivityCompat$OnRequestPermissionsResultCallback.class │ │ │ ├── ActivityCompat$SharedElementCallback21Impl.class │ │ │ ├── ActivityCompat$SharedElementCallback23Impl$1.class │ │ │ ├── ActivityCompat$SharedElementCallback23Impl.class │ │ │ ├── ActivityCompat.class │ │ │ ├── ActivityCompatApi21$SharedElementCallback21.class │ │ │ ├── ActivityCompatApi21$SharedElementCallbackImpl.class │ │ │ ├── ActivityCompatApi21.class │ │ │ ├── ActivityCompatApi22.class │ │ │ ├── ActivityCompatApi23$OnSharedElementsReadyListenerBridge.class │ │ │ ├── ActivityCompatApi23$RequestPermissionsRequestCodeValidator.class │ │ │ ├── ActivityCompatApi23$SharedElementCallback23.class │ │ │ ├── ActivityCompatApi23$SharedElementCallbackImpl$1.class │ │ │ ├── ActivityCompatApi23$SharedElementCallbackImpl.class │ │ │ ├── ActivityCompatApi23.class │ │ │ ├── ActivityCompatHoneycomb.class │ │ │ ├── ActivityCompatJB.class │ │ │ ├── ActivityManagerCompat.class │ │ │ ├── ActivityManagerCompatKitKat.class │ │ │ ├── ActivityOptionsCompat$ActivityOptionsImpl21.class │ │ │ ├── ActivityOptionsCompat$ActivityOptionsImpl23.class │ │ │ ├── ActivityOptionsCompat$ActivityOptionsImpl24.class │ │ │ ├── ActivityOptionsCompat$ActivityOptionsImplJB.class │ │ │ ├── ActivityOptionsCompat.class │ │ │ ├── ActivityOptionsCompat21.class │ │ │ ├── ActivityOptionsCompat23.class │ │ │ ├── ActivityOptionsCompat24.class │ │ │ ├── ActivityOptionsCompatJB.class │ │ │ ├── AppOpsManagerCompat$AppOpsManager23.class │ │ │ ├── AppOpsManagerCompat$AppOpsManagerImpl.class │ │ │ ├── AppOpsManagerCompat.class │ │ │ ├── AppOpsManagerCompat23.class │ │ │ ├── BundleCompat.class │ │ │ ├── BundleCompatGingerbread.class │ │ │ ├── BundleCompatJellybeanMR2.class │ │ │ ├── BundleUtil.class │ │ │ ├── INotificationSideChannel$Stub$Proxy.class │ │ │ ├── INotificationSideChannel$Stub.class │ │ │ ├── INotificationSideChannel.class │ │ │ ├── NotificationBuilderWithActions.class │ │ │ ├── NotificationBuilderWithBuilderAccessor.class │ │ │ ├── NotificationCompat$Action$1.class │ │ │ ├── NotificationCompat$Action$Builder.class │ │ │ ├── NotificationCompat$Action$Extender.class │ │ │ ├── NotificationCompat$Action$WearableExtender.class │ │ │ ├── NotificationCompat$Action.class │ │ │ ├── NotificationCompat$BigPictureStyle.class │ │ │ ├── NotificationCompat$BigTextStyle.class │ │ │ ├── NotificationCompat$Builder.class │ │ │ ├── NotificationCompat$BuilderExtender.class │ │ │ ├── NotificationCompat$CarExtender$UnreadConversation$1.class │ │ │ ├── NotificationCompat$CarExtender$UnreadConversation$Builder.class │ │ │ ├── NotificationCompat$CarExtender$UnreadConversation.class │ │ │ ├── NotificationCompat$CarExtender.class │ │ │ ├── NotificationCompat$Extender.class │ │ │ ├── NotificationCompat$InboxStyle.class │ │ │ ├── NotificationCompat$MessagingStyle$Message.class │ │ │ ├── NotificationCompat$MessagingStyle.class │ │ │ ├── NotificationCompat$NotificationCompatImpl.class │ │ │ ├── NotificationCompat$NotificationCompatImplApi20.class │ │ │ ├── NotificationCompat$NotificationCompatImplApi21.class │ │ │ ├── NotificationCompat$NotificationCompatImplApi24.class │ │ │ ├── NotificationCompat$NotificationCompatImplBase.class │ │ │ ├── NotificationCompat$NotificationCompatImplHoneycomb.class │ │ │ ├── NotificationCompat$NotificationCompatImplIceCreamSandwich.class │ │ │ ├── NotificationCompat$NotificationCompatImplJellybean.class │ │ │ ├── NotificationCompat$NotificationCompatImplKitKat.class │ │ │ ├── NotificationCompat$NotificationVisibility.class │ │ │ ├── NotificationCompat$Style.class │ │ │ ├── NotificationCompat$WearableExtender.class │ │ │ ├── NotificationCompat.class │ │ │ ├── NotificationCompatApi20$Builder.class │ │ │ ├── NotificationCompatApi20.class │ │ │ ├── NotificationCompatApi21$Builder.class │ │ │ ├── NotificationCompatApi21.class │ │ │ ├── NotificationCompatApi23.class │ │ │ ├── NotificationCompatApi24$Builder.class │ │ │ ├── NotificationCompatApi24.class │ │ │ ├── NotificationCompatBase$Action$Factory.class │ │ │ ├── NotificationCompatBase$Action.class │ │ │ ├── NotificationCompatBase$UnreadConversation$Factory.class │ │ │ ├── NotificationCompatBase$UnreadConversation.class │ │ │ ├── NotificationCompatBase.class │ │ │ ├── NotificationCompatExtras.class │ │ │ ├── NotificationCompatHoneycomb.class │ │ │ ├── NotificationCompatIceCreamSandwich$Builder.class │ │ │ ├── NotificationCompatIceCreamSandwich.class │ │ │ ├── NotificationCompatJellybean$Builder.class │ │ │ ├── NotificationCompatJellybean.class │ │ │ ├── NotificationCompatKitKat$Builder.class │ │ │ ├── NotificationCompatKitKat.class │ │ │ ├── NotificationCompatSideChannelService$NotificationSideChannelStub.class │ │ │ ├── NotificationCompatSideChannelService.class │ │ │ ├── NotificationManagerCompat$CancelTask.class │ │ │ ├── NotificationManagerCompat$Impl.class │ │ │ ├── NotificationManagerCompat$ImplApi24.class │ │ │ ├── NotificationManagerCompat$ImplBase.class │ │ │ ├── NotificationManagerCompat$ImplIceCreamSandwich.class │ │ │ ├── NotificationManagerCompat$ImplKitKat.class │ │ │ ├── NotificationManagerCompat$NotifyTask.class │ │ │ ├── NotificationManagerCompat$ServiceConnectedEvent.class │ │ │ ├── NotificationManagerCompat$SideChannelManager$ListenerRecord.class │ │ │ ├── NotificationManagerCompat$SideChannelManager.class │ │ │ ├── NotificationManagerCompat$Task.class │ │ │ ├── NotificationManagerCompat.class │ │ │ ├── NotificationManagerCompatApi24.class │ │ │ ├── NotificationManagerCompatIceCreamSandwich.class │ │ │ ├── NotificationManagerCompatKitKat.class │ │ │ ├── RemoteInput$1.class │ │ │ ├── RemoteInput$Builder.class │ │ │ ├── RemoteInput$Impl.class │ │ │ ├── RemoteInput$ImplApi20.class │ │ │ ├── RemoteInput$ImplBase.class │ │ │ ├── RemoteInput$ImplJellybean.class │ │ │ ├── RemoteInput.class │ │ │ ├── RemoteInputCompatApi20.class │ │ │ ├── RemoteInputCompatBase$RemoteInput$Factory.class │ │ │ ├── RemoteInputCompatBase$RemoteInput.class │ │ │ ├── RemoteInputCompatBase.class │ │ │ ├── RemoteInputCompatJellybean.class │ │ │ ├── ServiceCompat$Api24ServiceCompatImpl.class │ │ │ ├── ServiceCompat$BaseServiceCompatImpl.class │ │ │ ├── ServiceCompat$ServiceCompatImpl.class │ │ │ ├── ServiceCompat$StopForegroundFlags.class │ │ │ ├── ServiceCompat.class │ │ │ ├── ServiceCompatApi24.class │ │ │ ├── ShareCompat$IntentBuilder.class │ │ │ ├── ShareCompat$IntentReader.class │ │ │ ├── ShareCompat$ShareCompatImpl.class │ │ │ ├── ShareCompat$ShareCompatImplBase.class │ │ │ ├── ShareCompat$ShareCompatImplICS.class │ │ │ ├── ShareCompat$ShareCompatImplJB.class │ │ │ ├── ShareCompat.class │ │ │ ├── ShareCompatICS.class │ │ │ ├── ShareCompatJB.class │ │ │ ├── SharedElementCallback$OnSharedElementsReadyListener.class │ │ │ ├── SharedElementCallback.class │ │ │ ├── SupportActivity$ExtraData.class │ │ │ └── SupportActivity.class │ │ │ ├── content │ │ │ ├── ContentResolverCompat$ContentResolverCompatImpl.class │ │ │ ├── ContentResolverCompat$ContentResolverCompatImplBase.class │ │ │ ├── ContentResolverCompat$ContentResolverCompatImplJB.class │ │ │ ├── ContentResolverCompat.class │ │ │ ├── ContentResolverCompatJellybean.class │ │ │ ├── ContextCompat.class │ │ │ ├── ContextCompatApi21.class │ │ │ ├── ContextCompatApi23.class │ │ │ ├── ContextCompatApi24.class │ │ │ ├── ContextCompatHoneycomb.class │ │ │ ├── ContextCompatJellybean.class │ │ │ ├── ContextCompatKitKat.class │ │ │ ├── ExecutorCompatHoneycomb.class │ │ │ ├── IntentCompat$IntentCompatImpl.class │ │ │ ├── IntentCompat$IntentCompatImplBase.class │ │ │ ├── IntentCompat$IntentCompatImplHC.class │ │ │ ├── IntentCompat$IntentCompatImplIcsMr1.class │ │ │ ├── IntentCompat.class │ │ │ ├── IntentCompatHoneycomb.class │ │ │ ├── IntentCompatIcsMr1.class │ │ │ ├── ModernAsyncTask$1.class │ │ │ ├── ModernAsyncTask$2.class │ │ │ ├── ModernAsyncTask$3.class │ │ │ ├── ModernAsyncTask$4.class │ │ │ ├── ModernAsyncTask$AsyncTaskResult.class │ │ │ ├── ModernAsyncTask$InternalHandler.class │ │ │ ├── ModernAsyncTask$Status.class │ │ │ ├── ModernAsyncTask$WorkerRunnable.class │ │ │ ├── ModernAsyncTask.class │ │ │ ├── ParallelExecutorCompat.class │ │ │ ├── SharedPreferencesCompat$EditorCompat$Helper.class │ │ │ ├── SharedPreferencesCompat$EditorCompat.class │ │ │ ├── SharedPreferencesCompat.class │ │ │ ├── pm │ │ │ │ └── ActivityInfoCompat.class │ │ │ └── res │ │ │ │ ├── ConfigurationHelper$ConfigurationHelperImpl.class │ │ │ │ ├── ConfigurationHelper$GingerbreadImpl.class │ │ │ │ ├── ConfigurationHelper$HoneycombMr2Impl.class │ │ │ │ ├── ConfigurationHelper$JellybeanMr1Impl.class │ │ │ │ ├── ConfigurationHelper.class │ │ │ │ ├── ConfigurationHelperGingerbread.class │ │ │ │ ├── ConfigurationHelperHoneycombMr2.class │ │ │ │ ├── ConfigurationHelperJellybeanMr1.class │ │ │ │ ├── ResourcesCompat.class │ │ │ │ ├── ResourcesCompatApi21.class │ │ │ │ ├── ResourcesCompatApi23.class │ │ │ │ └── ResourcesCompatIcsMr1.class │ │ │ ├── database │ │ │ └── DatabaseUtilsCompat.class │ │ │ ├── graphics │ │ │ ├── BitmapCompat$BaseBitmapImpl.class │ │ │ ├── BitmapCompat$BitmapImpl.class │ │ │ ├── BitmapCompat$HcMr1BitmapCompatImpl.class │ │ │ ├── BitmapCompat$JbMr2BitmapCompatImpl.class │ │ │ ├── BitmapCompat$KitKatBitmapCompatImpl.class │ │ │ ├── BitmapCompat.class │ │ │ ├── BitmapCompatHoneycombMr1.class │ │ │ ├── BitmapCompatJellybeanMR2.class │ │ │ ├── BitmapCompatKitKat.class │ │ │ ├── PaintCompat.class │ │ │ ├── PaintCompatApi23.class │ │ │ ├── PaintCompatGingerbread.class │ │ │ └── drawable │ │ │ │ ├── DrawableCompat$BaseDrawableImpl.class │ │ │ │ ├── DrawableCompat$DrawableImpl.class │ │ │ │ ├── DrawableCompat$HoneycombDrawableImpl.class │ │ │ │ ├── DrawableCompat$JellybeanMr1DrawableImpl.class │ │ │ │ ├── DrawableCompat$KitKatDrawableImpl.class │ │ │ │ ├── DrawableCompat$LollipopDrawableImpl.class │ │ │ │ ├── DrawableCompat$MDrawableImpl.class │ │ │ │ ├── DrawableCompat.class │ │ │ │ ├── DrawableCompatApi23.class │ │ │ │ ├── DrawableCompatBase.class │ │ │ │ ├── DrawableCompatHoneycomb.class │ │ │ │ ├── DrawableCompatJellybeanMr1.class │ │ │ │ ├── DrawableCompatKitKat.class │ │ │ │ ├── DrawableCompatLollipop.class │ │ │ │ ├── DrawableWrapper.class │ │ │ │ ├── DrawableWrapperGingerbread$DrawableWrapperState.class │ │ │ │ ├── DrawableWrapperGingerbread$DrawableWrapperStateBase.class │ │ │ │ ├── DrawableWrapperGingerbread.class │ │ │ │ ├── DrawableWrapperHoneycomb$DrawableWrapperStateHoneycomb.class │ │ │ │ ├── DrawableWrapperHoneycomb.class │ │ │ │ ├── DrawableWrapperKitKat$DrawableWrapperStateKitKat.class │ │ │ │ ├── DrawableWrapperKitKat.class │ │ │ │ ├── DrawableWrapperLollipop$DrawableWrapperStateLollipop.class │ │ │ │ ├── DrawableWrapperLollipop.class │ │ │ │ └── TintAwareDrawable.class │ │ │ ├── hardware │ │ │ ├── display │ │ │ │ ├── DisplayManagerCompat$JellybeanMr1Impl.class │ │ │ │ ├── DisplayManagerCompat$LegacyImpl.class │ │ │ │ ├── DisplayManagerCompat.class │ │ │ │ └── DisplayManagerJellybeanMr1.class │ │ │ └── fingerprint │ │ │ │ ├── FingerprintManagerCompat$Api23FingerprintManagerCompatImpl$1.class │ │ │ │ ├── FingerprintManagerCompat$Api23FingerprintManagerCompatImpl.class │ │ │ │ ├── FingerprintManagerCompat$AuthenticationCallback.class │ │ │ │ ├── FingerprintManagerCompat$AuthenticationResult.class │ │ │ │ ├── FingerprintManagerCompat$CryptoObject.class │ │ │ │ ├── FingerprintManagerCompat$FingerprintManagerCompatImpl.class │ │ │ │ ├── FingerprintManagerCompat$LegacyFingerprintManagerCompatImpl.class │ │ │ │ ├── FingerprintManagerCompat.class │ │ │ │ ├── FingerprintManagerCompatApi23$1.class │ │ │ │ ├── FingerprintManagerCompatApi23$AuthenticationCallback.class │ │ │ │ ├── FingerprintManagerCompatApi23$AuthenticationResultInternal.class │ │ │ │ ├── FingerprintManagerCompatApi23$CryptoObject.class │ │ │ │ └── FingerprintManagerCompatApi23.class │ │ │ ├── internal │ │ │ ├── package-info.class │ │ │ └── view │ │ │ │ ├── SupportMenu.class │ │ │ │ ├── SupportMenuItem.class │ │ │ │ └── SupportSubMenu.class │ │ │ ├── net │ │ │ ├── ConnectivityManagerCompat$Api24ConnectivityManagerCompatImpl.class │ │ │ ├── ConnectivityManagerCompat$BaseConnectivityManagerCompatImpl.class │ │ │ ├── ConnectivityManagerCompat$ConnectivityManagerCompatImpl.class │ │ │ ├── ConnectivityManagerCompat$HoneycombMR2ConnectivityManagerCompatImpl.class │ │ │ ├── ConnectivityManagerCompat$JellyBeanConnectivityManagerCompatImpl.class │ │ │ ├── ConnectivityManagerCompat$RestrictBackgroundStatus.class │ │ │ ├── ConnectivityManagerCompat.class │ │ │ ├── ConnectivityManagerCompatApi24.class │ │ │ ├── ConnectivityManagerCompatHoneycombMR2.class │ │ │ ├── ConnectivityManagerCompatJellyBean.class │ │ │ ├── DatagramSocketWrapper$DatagramSocketImplWrapper.class │ │ │ ├── DatagramSocketWrapper.class │ │ │ ├── TrafficStatsCompat$Api24TrafficStatsCompatImpl.class │ │ │ ├── TrafficStatsCompat$BaseTrafficStatsCompatImpl$1.class │ │ │ ├── TrafficStatsCompat$BaseTrafficStatsCompatImpl$SocketTags.class │ │ │ ├── TrafficStatsCompat$BaseTrafficStatsCompatImpl.class │ │ │ ├── TrafficStatsCompat$IcsTrafficStatsCompatImpl.class │ │ │ ├── TrafficStatsCompat$TrafficStatsCompatImpl.class │ │ │ ├── TrafficStatsCompat.class │ │ │ ├── TrafficStatsCompatApi24.class │ │ │ └── TrafficStatsCompatIcs.class │ │ │ ├── os │ │ │ ├── AsyncTaskCompat.class │ │ │ ├── AsyncTaskCompatHoneycomb.class │ │ │ ├── BuildCompat.class │ │ │ ├── CancellationSignal$OnCancelListener.class │ │ │ ├── CancellationSignal.class │ │ │ ├── CancellationSignalCompatJellybean.class │ │ │ ├── EnvironmentCompat.class │ │ │ ├── EnvironmentCompatKitKat.class │ │ │ ├── IResultReceiver$Stub$Proxy.class │ │ │ ├── IResultReceiver$Stub.class │ │ │ ├── IResultReceiver.class │ │ │ ├── OperationCanceledException.class │ │ │ ├── ParcelableCompat$CompatCreator.class │ │ │ ├── ParcelableCompat.class │ │ │ ├── ParcelableCompatCreatorCallbacks.class │ │ │ ├── ParcelableCompatCreatorHoneycombMR2.class │ │ │ ├── ParcelableCompatCreatorHoneycombMR2Stub.class │ │ │ ├── ResultReceiver$1.class │ │ │ ├── ResultReceiver$MyResultReceiver.class │ │ │ ├── ResultReceiver$MyRunnable.class │ │ │ ├── ResultReceiver.class │ │ │ ├── TraceCompat.class │ │ │ ├── TraceJellybeanMR2.class │ │ │ ├── UserManagerCompat.class │ │ │ └── UserManagerCompatApi24.class │ │ │ ├── text │ │ │ ├── ICUCompat$ICUCompatImpl.class │ │ │ ├── ICUCompat$ICUCompatImplBase.class │ │ │ ├── ICUCompat$ICUCompatImplIcs.class │ │ │ ├── ICUCompat$ICUCompatImplLollipop.class │ │ │ ├── ICUCompat.class │ │ │ ├── ICUCompatApi23.class │ │ │ ├── ICUCompatIcs.class │ │ │ ├── TextDirectionHeuristicCompat.class │ │ │ ├── TextDirectionHeuristicsCompat$AnyStrong.class │ │ │ ├── TextDirectionHeuristicsCompat$FirstStrong.class │ │ │ ├── TextDirectionHeuristicsCompat$TextDirectionAlgorithm.class │ │ │ ├── TextDirectionHeuristicsCompat$TextDirectionHeuristicImpl.class │ │ │ ├── TextDirectionHeuristicsCompat$TextDirectionHeuristicInternal.class │ │ │ ├── TextDirectionHeuristicsCompat$TextDirectionHeuristicLocale.class │ │ │ ├── TextDirectionHeuristicsCompat.class │ │ │ ├── TextUtilsCompat$TextUtilsCompatImpl.class │ │ │ ├── TextUtilsCompat$TextUtilsCompatJellybeanMr1Impl.class │ │ │ ├── TextUtilsCompat.class │ │ │ ├── TextUtilsCompatJellybeanMr1.class │ │ │ └── util │ │ │ │ ├── LinkifyCompat$1.class │ │ │ │ ├── LinkifyCompat$LinkSpec.class │ │ │ │ ├── LinkifyCompat$LinkifyMask.class │ │ │ │ └── LinkifyCompat.class │ │ │ ├── util │ │ │ ├── ArrayMap$1.class │ │ │ ├── ArrayMap.class │ │ │ ├── ArraySet$1.class │ │ │ ├── ArraySet.class │ │ │ ├── AtomicFile.class │ │ │ ├── CircularArray.class │ │ │ ├── CircularIntArray.class │ │ │ ├── ContainerHelpers.class │ │ │ ├── DebugUtils.class │ │ │ ├── LogWriter.class │ │ │ ├── LongSparseArray.class │ │ │ ├── LruCache.class │ │ │ ├── MapCollections$ArrayIterator.class │ │ │ ├── MapCollections$EntrySet.class │ │ │ ├── MapCollections$KeySet.class │ │ │ ├── MapCollections$MapIterator.class │ │ │ ├── MapCollections$ValuesCollection.class │ │ │ ├── MapCollections.class │ │ │ ├── Pair.class │ │ │ ├── PatternsCompat.class │ │ │ ├── Pools$Pool.class │ │ │ ├── Pools$SimplePool.class │ │ │ ├── Pools$SynchronizedPool.class │ │ │ ├── Pools.class │ │ │ ├── SimpleArrayMap.class │ │ │ ├── SparseArrayCompat.class │ │ │ └── TimeUtils.class │ │ │ ├── view │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateIcsImpl$1.class │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateIcsImpl.class │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateImpl.class │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateJellyBeanImpl$1.class │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateJellyBeanImpl.class │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateStubImpl.class │ │ │ ├── AccessibilityDelegateCompat.class │ │ │ ├── AccessibilityDelegateCompatIcs$1.class │ │ │ ├── AccessibilityDelegateCompatIcs$AccessibilityDelegateBridge.class │ │ │ ├── AccessibilityDelegateCompatIcs.class │ │ │ ├── AccessibilityDelegateCompatJellyBean$1.class │ │ │ ├── AccessibilityDelegateCompatJellyBean$AccessibilityDelegateBridgeJellyBean.class │ │ │ ├── AccessibilityDelegateCompatJellyBean.class │ │ │ ├── ActionProvider$SubUiVisibilityListener.class │ │ │ ├── ActionProvider$VisibilityListener.class │ │ │ ├── ActionProvider.class │ │ │ ├── GestureDetectorCompat$GestureDetectorCompatImpl.class │ │ │ ├── GestureDetectorCompat$GestureDetectorCompatImplBase$GestureHandler.class │ │ │ ├── GestureDetectorCompat$GestureDetectorCompatImplBase.class │ │ │ ├── GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2.class │ │ │ ├── GestureDetectorCompat.class │ │ │ ├── GravityCompat$GravityCompatImpl.class │ │ │ ├── GravityCompat$GravityCompatImplBase.class │ │ │ ├── GravityCompat$GravityCompatImplJellybeanMr1.class │ │ │ ├── GravityCompat.class │ │ │ ├── GravityCompatJellybeanMr1.class │ │ │ ├── InputDeviceCompat.class │ │ │ ├── KeyEventCompat$BaseKeyEventVersionImpl.class │ │ │ ├── KeyEventCompat$HoneycombKeyEventVersionImpl.class │ │ │ ├── KeyEventCompat$KeyEventVersionImpl.class │ │ │ ├── KeyEventCompat.class │ │ │ ├── KeyEventCompatHoneycomb.class │ │ │ ├── LayoutInflaterCompat$LayoutInflaterCompatImpl.class │ │ │ ├── LayoutInflaterCompat$LayoutInflaterCompatImplBase.class │ │ │ ├── LayoutInflaterCompat$LayoutInflaterCompatImplV11.class │ │ │ ├── LayoutInflaterCompat$LayoutInflaterCompatImplV21.class │ │ │ ├── LayoutInflaterCompat.class │ │ │ ├── LayoutInflaterCompatBase$FactoryWrapper.class │ │ │ ├── LayoutInflaterCompatBase.class │ │ │ ├── LayoutInflaterCompatHC$FactoryWrapperHC.class │ │ │ ├── LayoutInflaterCompatHC.class │ │ │ ├── LayoutInflaterCompatLollipop.class │ │ │ ├── LayoutInflaterFactory.class │ │ │ ├── MarginLayoutParamsCompat$MarginLayoutParamsCompatImpl.class │ │ │ ├── MarginLayoutParamsCompat$MarginLayoutParamsCompatImplBase.class │ │ │ ├── MarginLayoutParamsCompat$MarginLayoutParamsCompatImplJbMr1.class │ │ │ ├── MarginLayoutParamsCompat.class │ │ │ ├── MarginLayoutParamsCompatJellybeanMr1.class │ │ │ ├── MenuCompat.class │ │ │ ├── MenuItemCompat$BaseMenuVersionImpl.class │ │ │ ├── MenuItemCompat$HoneycombMenuVersionImpl.class │ │ │ ├── MenuItemCompat$IcsMenuVersionImpl$1.class │ │ │ ├── MenuItemCompat$IcsMenuVersionImpl.class │ │ │ ├── MenuItemCompat$MenuVersionImpl.class │ │ │ ├── MenuItemCompat$OnActionExpandListener.class │ │ │ ├── MenuItemCompat.class │ │ │ ├── MenuItemCompatHoneycomb.class │ │ │ ├── MenuItemCompatIcs$OnActionExpandListenerWrapper.class │ │ │ ├── MenuItemCompatIcs$SupportActionExpandProxy.class │ │ │ ├── MenuItemCompatIcs.class │ │ │ ├── MotionEventCompat$BaseMotionEventVersionImpl.class │ │ │ ├── MotionEventCompat$HoneycombMr1MotionEventVersionImpl.class │ │ │ ├── MotionEventCompat$ICSMotionEventVersionImpl.class │ │ │ ├── MotionEventCompat$MotionEventVersionImpl.class │ │ │ ├── MotionEventCompat.class │ │ │ ├── MotionEventCompatHoneycombMr1.class │ │ │ ├── MotionEventCompatICS.class │ │ │ ├── NestedScrollingChild.class │ │ │ ├── NestedScrollingParent.class │ │ │ ├── OnApplyWindowInsetsListener.class │ │ │ ├── PointerIconCompat$Api24PointerIconCompatImpl.class │ │ │ ├── PointerIconCompat$BasePointerIconCompatImpl.class │ │ │ ├── PointerIconCompat$PointerIconCompatImpl.class │ │ │ ├── PointerIconCompat.class │ │ │ ├── PointerIconCompatApi24.class │ │ │ ├── ScaleGestureDetectorCompat$BaseScaleGestureDetectorImpl.class │ │ │ ├── ScaleGestureDetectorCompat$ScaleGestureDetectorCompatKitKatImpl.class │ │ │ ├── ScaleGestureDetectorCompat$ScaleGestureDetectorImpl.class │ │ │ ├── ScaleGestureDetectorCompat.class │ │ │ ├── ScaleGestureDetectorCompatKitKat.class │ │ │ ├── ScrollingView.class │ │ │ ├── TintableBackgroundView.class │ │ │ ├── VelocityTrackerCompat$BaseVelocityTrackerVersionImpl.class │ │ │ ├── VelocityTrackerCompat$HoneycombVelocityTrackerVersionImpl.class │ │ │ ├── VelocityTrackerCompat$VelocityTrackerVersionImpl.class │ │ │ ├── VelocityTrackerCompat.class │ │ │ ├── VelocityTrackerCompatHoneycomb.class │ │ │ ├── ViewCompat$Api24ViewCompatImpl.class │ │ │ ├── ViewCompat$BaseViewCompatImpl.class │ │ │ ├── ViewCompat$FocusDirection.class │ │ │ ├── ViewCompat$FocusRealDirection.class │ │ │ ├── ViewCompat$FocusRelativeDirection.class │ │ │ ├── ViewCompat$HCViewCompatImpl.class │ │ │ ├── ViewCompat$ICSMr1ViewCompatImpl.class │ │ │ ├── ViewCompat$ICSViewCompatImpl.class │ │ │ ├── ViewCompat$JBViewCompatImpl.class │ │ │ ├── ViewCompat$JbMr1ViewCompatImpl.class │ │ │ ├── ViewCompat$JbMr2ViewCompatImpl.class │ │ │ ├── ViewCompat$KitKatViewCompatImpl.class │ │ │ ├── ViewCompat$LollipopViewCompatImpl$1.class │ │ │ ├── ViewCompat$LollipopViewCompatImpl.class │ │ │ ├── ViewCompat$MarshmallowViewCompatImpl.class │ │ │ ├── ViewCompat$ScrollIndicators.class │ │ │ ├── ViewCompat$ViewCompatImpl.class │ │ │ ├── ViewCompat.class │ │ │ ├── ViewCompatApi24.class │ │ │ ├── ViewCompatBase.class │ │ │ ├── ViewCompatHC.class │ │ │ ├── ViewCompatICS.class │ │ │ ├── ViewCompatICSMr1.class │ │ │ ├── ViewCompatJB.class │ │ │ ├── ViewCompatJellybeanMr1.class │ │ │ ├── ViewCompatJellybeanMr2.class │ │ │ ├── ViewCompatKitKat.class │ │ │ ├── ViewCompatLollipop$1.class │ │ │ ├── ViewCompatLollipop$OnApplyWindowInsetsListenerBridge.class │ │ │ ├── ViewCompatLollipop.class │ │ │ ├── ViewCompatMarshmallow.class │ │ │ ├── ViewConfigurationCompat$BaseViewConfigurationVersionImpl.class │ │ │ ├── ViewConfigurationCompat$HoneycombViewConfigurationVersionImpl.class │ │ │ ├── ViewConfigurationCompat$IcsViewConfigurationVersionImpl.class │ │ │ ├── ViewConfigurationCompat$ViewConfigurationVersionImpl.class │ │ │ ├── ViewConfigurationCompat.class │ │ │ ├── ViewConfigurationCompatICS.class │ │ │ ├── ViewGroupCompat$ViewGroupCompatHCImpl.class │ │ │ ├── ViewGroupCompat$ViewGroupCompatIcsImpl.class │ │ │ ├── ViewGroupCompat$ViewGroupCompatImpl.class │ │ │ ├── ViewGroupCompat$ViewGroupCompatJellybeanMR2Impl.class │ │ │ ├── ViewGroupCompat$ViewGroupCompatLollipopImpl.class │ │ │ ├── ViewGroupCompat$ViewGroupCompatStubImpl.class │ │ │ ├── ViewGroupCompat.class │ │ │ ├── ViewGroupCompatHC.class │ │ │ ├── ViewGroupCompatIcs.class │ │ │ ├── ViewGroupCompatJellybeanMR2.class │ │ │ ├── ViewGroupCompatLollipop.class │ │ │ ├── ViewParentCompat$ViewParentCompatICSImpl.class │ │ │ ├── ViewParentCompat$ViewParentCompatImpl.class │ │ │ ├── ViewParentCompat$ViewParentCompatKitKatImpl.class │ │ │ ├── ViewParentCompat$ViewParentCompatLollipopImpl.class │ │ │ ├── ViewParentCompat$ViewParentCompatStubImpl.class │ │ │ ├── ViewParentCompat.class │ │ │ ├── ViewParentCompatICS.class │ │ │ ├── ViewParentCompatKitKat.class │ │ │ ├── ViewParentCompatLollipop.class │ │ │ ├── ViewPropertyAnimatorCompat$BaseViewPropertyAnimatorCompatImpl$Starter.class │ │ │ ├── ViewPropertyAnimatorCompat$BaseViewPropertyAnimatorCompatImpl.class │ │ │ ├── ViewPropertyAnimatorCompat$ICSViewPropertyAnimatorCompatImpl$MyVpaListener.class │ │ │ ├── ViewPropertyAnimatorCompat$ICSViewPropertyAnimatorCompatImpl.class │ │ │ ├── ViewPropertyAnimatorCompat$JBMr2ViewPropertyAnimatorCompatImpl.class │ │ │ ├── ViewPropertyAnimatorCompat$JBViewPropertyAnimatorCompatImpl.class │ │ │ ├── ViewPropertyAnimatorCompat$KitKatViewPropertyAnimatorCompatImpl.class │ │ │ ├── ViewPropertyAnimatorCompat$LollipopViewPropertyAnimatorCompatImpl.class │ │ │ ├── ViewPropertyAnimatorCompat$ViewPropertyAnimatorCompatImpl.class │ │ │ ├── ViewPropertyAnimatorCompat.class │ │ │ ├── ViewPropertyAnimatorCompatICS$1.class │ │ │ ├── ViewPropertyAnimatorCompatICS.class │ │ │ ├── ViewPropertyAnimatorCompatJB$1.class │ │ │ ├── ViewPropertyAnimatorCompatJB.class │ │ │ ├── ViewPropertyAnimatorCompatJellybeanMr2.class │ │ │ ├── ViewPropertyAnimatorCompatKK$1.class │ │ │ ├── ViewPropertyAnimatorCompatKK.class │ │ │ ├── ViewPropertyAnimatorCompatLollipop.class │ │ │ ├── ViewPropertyAnimatorListener.class │ │ │ ├── ViewPropertyAnimatorListenerAdapter.class │ │ │ ├── ViewPropertyAnimatorUpdateListener.class │ │ │ ├── WindowCompat.class │ │ │ ├── WindowInsetsCompat$WindowInsetsCompatApi20Impl.class │ │ │ ├── WindowInsetsCompat$WindowInsetsCompatApi21Impl.class │ │ │ ├── WindowInsetsCompat$WindowInsetsCompatBaseImpl.class │ │ │ ├── WindowInsetsCompat$WindowInsetsCompatImpl.class │ │ │ ├── WindowInsetsCompat.class │ │ │ ├── WindowInsetsCompatApi20.class │ │ │ ├── WindowInsetsCompatApi21.class │ │ │ ├── accessibility │ │ │ │ ├── AccessibilityEventCompat$AccessibilityEventIcsImpl.class │ │ │ │ ├── AccessibilityEventCompat$AccessibilityEventJellyBeanImpl.class │ │ │ │ ├── AccessibilityEventCompat$AccessibilityEventKitKatImpl.class │ │ │ │ ├── AccessibilityEventCompat$AccessibilityEventStubImpl.class │ │ │ │ ├── AccessibilityEventCompat$AccessibilityEventVersionImpl.class │ │ │ │ ├── AccessibilityEventCompat.class │ │ │ │ ├── AccessibilityEventCompatIcs.class │ │ │ │ ├── AccessibilityEventCompatJellyBean.class │ │ │ │ ├── AccessibilityEventCompatKitKat.class │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityManagerIcsImpl$1.class │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityManagerIcsImpl.class │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityManagerKitKatImpl$1.class │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityManagerKitKatImpl.class │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityManagerStubImpl.class │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityManagerVersionImpl.class │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityStateChangeListener.class │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityStateChangeListenerCompat.class │ │ │ │ ├── AccessibilityManagerCompat$TouchExplorationStateChangeListener.class │ │ │ │ ├── AccessibilityManagerCompat.class │ │ │ │ ├── AccessibilityManagerCompatIcs$AccessibilityStateChangeListenerBridge.class │ │ │ │ ├── AccessibilityManagerCompatIcs$AccessibilityStateChangeListenerWrapper.class │ │ │ │ ├── AccessibilityManagerCompatIcs.class │ │ │ │ ├── AccessibilityManagerCompatKitKat$1.class │ │ │ │ ├── AccessibilityManagerCompatKitKat$TouchExplorationStateChangeListenerBridge.class │ │ │ │ ├── AccessibilityManagerCompatKitKat$TouchExplorationStateChangeListenerWrapper.class │ │ │ │ ├── AccessibilityManagerCompatKitKat.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityActionCompat.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoApi21Impl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoApi22Impl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoApi23Impl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoApi24Impl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoIcsImpl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoImpl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoJellybeanImpl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoJellybeanMr1Impl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoJellybeanMr2Impl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoKitKatImpl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityNodeInfoStubImpl.class │ │ │ │ ├── AccessibilityNodeInfoCompat$CollectionInfoCompat.class │ │ │ │ ├── AccessibilityNodeInfoCompat$CollectionItemInfoCompat.class │ │ │ │ ├── AccessibilityNodeInfoCompat$RangeInfoCompat.class │ │ │ │ ├── AccessibilityNodeInfoCompat.class │ │ │ │ ├── AccessibilityNodeInfoCompatApi21$CollectionInfo.class │ │ │ │ ├── AccessibilityNodeInfoCompatApi21$CollectionItemInfo.class │ │ │ │ ├── AccessibilityNodeInfoCompatApi21.class │ │ │ │ ├── AccessibilityNodeInfoCompatApi22.class │ │ │ │ ├── AccessibilityNodeInfoCompatApi23.class │ │ │ │ ├── AccessibilityNodeInfoCompatApi24.class │ │ │ │ ├── AccessibilityNodeInfoCompatIcs.class │ │ │ │ ├── AccessibilityNodeInfoCompatJellyBean.class │ │ │ │ ├── AccessibilityNodeInfoCompatJellybeanMr1.class │ │ │ │ ├── AccessibilityNodeInfoCompatJellybeanMr2.class │ │ │ │ ├── AccessibilityNodeInfoCompatKitKat$CollectionInfo.class │ │ │ │ ├── AccessibilityNodeInfoCompatKitKat$CollectionItemInfo.class │ │ │ │ ├── AccessibilityNodeInfoCompatKitKat$RangeInfo.class │ │ │ │ ├── AccessibilityNodeInfoCompatKitKat.class │ │ │ │ ├── AccessibilityNodeProviderCompat$AccessibilityNodeProviderImpl.class │ │ │ │ ├── AccessibilityNodeProviderCompat$AccessibilityNodeProviderJellyBeanImpl$1.class │ │ │ │ ├── AccessibilityNodeProviderCompat$AccessibilityNodeProviderJellyBeanImpl.class │ │ │ │ ├── AccessibilityNodeProviderCompat$AccessibilityNodeProviderKitKatImpl$1.class │ │ │ │ ├── AccessibilityNodeProviderCompat$AccessibilityNodeProviderKitKatImpl.class │ │ │ │ ├── AccessibilityNodeProviderCompat$AccessibilityNodeProviderStubImpl.class │ │ │ │ ├── AccessibilityNodeProviderCompat.class │ │ │ │ ├── AccessibilityNodeProviderCompatJellyBean$1.class │ │ │ │ ├── AccessibilityNodeProviderCompatJellyBean$AccessibilityNodeInfoBridge.class │ │ │ │ ├── AccessibilityNodeProviderCompatJellyBean.class │ │ │ │ ├── AccessibilityNodeProviderCompatKitKat$1.class │ │ │ │ ├── AccessibilityNodeProviderCompatKitKat$AccessibilityNodeInfoBridge.class │ │ │ │ ├── AccessibilityNodeProviderCompatKitKat.class │ │ │ │ ├── AccessibilityRecordCompat$AccessibilityRecordIcsImpl.class │ │ │ │ ├── AccessibilityRecordCompat$AccessibilityRecordIcsMr1Impl.class │ │ │ │ ├── AccessibilityRecordCompat$AccessibilityRecordImpl.class │ │ │ │ ├── AccessibilityRecordCompat$AccessibilityRecordJellyBeanImpl.class │ │ │ │ ├── AccessibilityRecordCompat$AccessibilityRecordStubImpl.class │ │ │ │ ├── AccessibilityRecordCompat.class │ │ │ │ ├── AccessibilityRecordCompatIcs.class │ │ │ │ ├── AccessibilityRecordCompatIcsMr1.class │ │ │ │ ├── AccessibilityRecordCompatJellyBean.class │ │ │ │ ├── AccessibilityWindowInfoCompat$AccessibilityWindowInfoApi21Impl.class │ │ │ │ ├── AccessibilityWindowInfoCompat$AccessibilityWindowInfoApi24Impl.class │ │ │ │ ├── AccessibilityWindowInfoCompat$AccessibilityWindowInfoImpl.class │ │ │ │ ├── AccessibilityWindowInfoCompat$AccessibilityWindowInfoStubImpl.class │ │ │ │ ├── AccessibilityWindowInfoCompat.class │ │ │ │ ├── AccessibilityWindowInfoCompatApi21.class │ │ │ │ └── AccessibilityWindowInfoCompatApi24.class │ │ │ └── animation │ │ │ │ ├── PathInterpolatorCompat.class │ │ │ │ ├── PathInterpolatorCompatApi21.class │ │ │ │ ├── PathInterpolatorCompatBase.class │ │ │ │ └── PathInterpolatorGingerbread.class │ │ │ └── widget │ │ │ ├── CompoundButtonCompat$Api23CompoundButtonImpl.class │ │ │ ├── CompoundButtonCompat$BaseCompoundButtonCompat.class │ │ │ ├── CompoundButtonCompat$CompoundButtonCompatImpl.class │ │ │ ├── CompoundButtonCompat$LollipopCompoundButtonImpl.class │ │ │ ├── CompoundButtonCompat.class │ │ │ ├── CompoundButtonCompatApi23.class │ │ │ ├── CompoundButtonCompatGingerbread.class │ │ │ ├── CompoundButtonCompatLollipop.class │ │ │ ├── EdgeEffectCompat$BaseEdgeEffectImpl.class │ │ │ ├── EdgeEffectCompat$EdgeEffectIcsImpl.class │ │ │ ├── EdgeEffectCompat$EdgeEffectImpl.class │ │ │ ├── EdgeEffectCompat$EdgeEffectLollipopImpl.class │ │ │ ├── EdgeEffectCompat.class │ │ │ ├── EdgeEffectCompatIcs.class │ │ │ ├── EdgeEffectCompatLollipop.class │ │ │ ├── ListPopupWindowCompat$BaseListPopupWindowImpl.class │ │ │ ├── ListPopupWindowCompat$KitKatListPopupWindowImpl.class │ │ │ ├── ListPopupWindowCompat$ListPopupWindowImpl.class │ │ │ ├── ListPopupWindowCompat.class │ │ │ ├── ListPopupWindowCompatKitKat.class │ │ │ ├── ListViewCompat.class │ │ │ ├── ListViewCompatGingerbread.class │ │ │ ├── ListViewCompatKitKat.class │ │ │ ├── PopupMenuCompat$BasePopupMenuImpl.class │ │ │ ├── PopupMenuCompat$KitKatPopupMenuImpl.class │ │ │ ├── PopupMenuCompat$PopupMenuImpl.class │ │ │ ├── PopupMenuCompat.class │ │ │ ├── PopupMenuCompatKitKat.class │ │ │ ├── PopupWindowCompat$Api21PopupWindowImpl.class │ │ │ ├── PopupWindowCompat$Api23PopupWindowImpl.class │ │ │ ├── PopupWindowCompat$BasePopupWindowImpl.class │ │ │ ├── PopupWindowCompat$KitKatPopupWindowImpl.class │ │ │ ├── PopupWindowCompat$PopupWindowImpl.class │ │ │ ├── PopupWindowCompat.class │ │ │ ├── PopupWindowCompatApi21.class │ │ │ ├── PopupWindowCompatApi23.class │ │ │ ├── PopupWindowCompatKitKat.class │ │ │ ├── ScrollerCompat.class │ │ │ ├── ScrollerCompatIcs.class │ │ │ ├── SearchViewCompat$OnCloseListener.class │ │ │ ├── SearchViewCompat$OnCloseListenerCompat.class │ │ │ ├── SearchViewCompat$OnQueryTextListener.class │ │ │ ├── SearchViewCompat$OnQueryTextListenerCompat.class │ │ │ ├── SearchViewCompat$SearchViewCompatHoneycombImpl$1.class │ │ │ ├── SearchViewCompat$SearchViewCompatHoneycombImpl$2.class │ │ │ ├── SearchViewCompat$SearchViewCompatHoneycombImpl.class │ │ │ ├── SearchViewCompat$SearchViewCompatIcsImpl.class │ │ │ ├── SearchViewCompat$SearchViewCompatImpl.class │ │ │ ├── SearchViewCompat$SearchViewCompatStubImpl.class │ │ │ ├── SearchViewCompat.class │ │ │ ├── SearchViewCompatHoneycomb$1.class │ │ │ ├── SearchViewCompatHoneycomb$2.class │ │ │ ├── SearchViewCompatHoneycomb$OnCloseListenerCompatBridge.class │ │ │ ├── SearchViewCompatHoneycomb$OnQueryTextListenerCompatBridge.class │ │ │ ├── SearchViewCompatHoneycomb.class │ │ │ ├── SearchViewCompatIcs$MySearchView.class │ │ │ ├── SearchViewCompatIcs.class │ │ │ ├── TextViewCompat$Api23TextViewCompatImpl.class │ │ │ ├── TextViewCompat$BaseTextViewCompatImpl.class │ │ │ ├── TextViewCompat$JbMr1TextViewCompatImpl.class │ │ │ ├── TextViewCompat$JbMr2TextViewCompatImpl.class │ │ │ ├── TextViewCompat$JbTextViewCompatImpl.class │ │ │ ├── TextViewCompat$TextViewCompatImpl.class │ │ │ ├── TextViewCompat.class │ │ │ ├── TextViewCompatApi23.class │ │ │ ├── TextViewCompatGingerbread.class │ │ │ ├── TextViewCompatJb.class │ │ │ ├── TextViewCompatJbMr1.class │ │ │ ├── TextViewCompatJbMr2.class │ │ │ └── TintableCompoundButton.class │ │ └── support-annotations-25.3.1.jar_2ynkgre7fcza0xxu8mt67p53u │ │ └── android │ │ └── support │ │ └── annotation │ │ ├── AnimRes.class │ │ ├── AnimatorRes.class │ │ ├── AnyRes.class │ │ ├── AnyThread.class │ │ ├── ArrayRes.class │ │ ├── AttrRes.class │ │ ├── BinderThread.class │ │ ├── BoolRes.class │ │ ├── CallSuper.class │ │ ├── CheckResult.class │ │ ├── ColorInt.class │ │ ├── ColorRes.class │ │ ├── DimenRes.class │ │ ├── Dimension.class │ │ ├── DrawableRes.class │ │ ├── FloatRange.class │ │ ├── FractionRes.class │ │ ├── IdRes.class │ │ ├── IntDef.class │ │ ├── IntRange.class │ │ ├── IntegerRes.class │ │ ├── InterpolatorRes.class │ │ ├── Keep.class │ │ ├── LayoutRes.class │ │ ├── MainThread.class │ │ ├── MenuRes.class │ │ ├── NonNull.class │ │ ├── Nullable.class │ │ ├── PluralsRes.class │ │ ├── Px.class │ │ ├── RawRes.class │ │ ├── RequiresApi.class │ │ ├── RequiresPermission$Read.class │ │ ├── RequiresPermission$Write.class │ │ ├── RequiresPermission.class │ │ ├── RestrictTo$Scope.class │ │ ├── RestrictTo.class │ │ ├── Size.class │ │ ├── StringDef.class │ │ ├── StringRes.class │ │ ├── StyleRes.class │ │ ├── StyleableRes.class │ │ ├── TransitionRes.class │ │ ├── UiThread.class │ │ ├── VisibleForTesting.class │ │ ├── WorkerThread.class │ │ └── XmlRes.class ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── javier │ │ └── app │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── javier │ │ │ └── app │ │ │ └── MainActivity.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── javier │ └── app │ └── ExampleUnitTest.java ├── filterview ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── javier │ │ └── filterview │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── javier │ │ │ └── filterview │ │ │ ├── FilterAdapter.java │ │ │ ├── FilterItem.java │ │ │ ├── FilterSection.java │ │ │ ├── FilterView.java │ │ │ ├── OnFilterCanceled.java │ │ │ ├── OnFilterViewResultListener.java │ │ │ ├── extra │ │ │ ├── ExtraOption.java │ │ │ ├── ExtraSection.java │ │ │ ├── ExtraSectionAdapter.java │ │ │ ├── OnExtraOptionListener.java │ │ │ ├── cboolean │ │ │ │ ├── ExtraBoolean.java │ │ │ │ └── OnBooleanCheckedChangeListener.java │ │ │ ├── ccurrencytext │ │ │ │ ├── CurrencyEditText.java │ │ │ │ └── ExtraCurrencyEditText.java │ │ │ ├── cdate │ │ │ │ └── ExtraDate.java │ │ │ ├── chms │ │ │ │ └── ExtraHMS.java │ │ │ ├── clist │ │ │ │ ├── ExtraList.java │ │ │ │ └── TypeList.java │ │ │ └── ctext │ │ │ │ ├── ExtraEditText.java │ │ │ │ └── TextType.java │ │ │ ├── single │ │ │ ├── OnSingleOptionListener.java │ │ │ ├── SingleOption.java │ │ │ ├── SingleSection.java │ │ │ └── SingleSectionAdapter.java │ │ │ ├── slider │ │ │ ├── OnSliderValueChangeListener.java │ │ │ ├── SliderOption.java │ │ │ ├── SliderSection.java │ │ │ ├── SliderSectionAdapter.java │ │ │ └── SliderType.java │ │ │ └── tag │ │ │ ├── OnTagListener.java │ │ │ ├── TagAdapter.java │ │ │ ├── TagGravity.java │ │ │ ├── TagMode.java │ │ │ └── TagSection.java │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_account_black_18dp.png │ │ ├── ic_account_black_24dp.png │ │ ├── ic_account_black_36dp.png │ │ ├── ic_account_black_48dp.png │ │ ├── ic_account_grey600_18dp.png │ │ ├── ic_account_grey600_24dp.png │ │ ├── ic_account_grey600_36dp.png │ │ ├── ic_account_grey600_48dp.png │ │ ├── ic_account_white_18dp.png │ │ ├── ic_account_white_24dp.png │ │ ├── ic_account_white_36dp.png │ │ ├── ic_account_white_48dp.png │ │ ├── ic_android_black_18dp.png │ │ ├── ic_android_black_24dp.png │ │ ├── ic_android_black_36dp.png │ │ ├── ic_android_black_48dp.png │ │ ├── ic_android_grey600_18dp.png │ │ ├── ic_android_grey600_24dp.png │ │ ├── ic_android_grey600_36dp.png │ │ ├── ic_android_grey600_48dp.png │ │ ├── ic_android_white_18dp.png │ │ ├── ic_android_white_24dp.png │ │ ├── ic_android_white_36dp.png │ │ ├── ic_android_white_48dp.png │ │ ├── ic_calendar_black_18dp.png │ │ ├── ic_calendar_black_24dp.png │ │ ├── ic_calendar_black_36dp.png │ │ ├── ic_calendar_black_48dp.png │ │ ├── ic_calendar_grey600_18dp.png │ │ ├── ic_calendar_grey600_24dp.png │ │ ├── ic_calendar_grey600_36dp.png │ │ ├── ic_calendar_grey600_48dp.png │ │ ├── ic_calendar_white_18dp.png │ │ ├── ic_calendar_white_24dp.png │ │ ├── ic_calendar_white_36dp.png │ │ ├── ic_calendar_white_48dp.png │ │ ├── ic_cash_usd_black_18dp.png │ │ ├── ic_cash_usd_black_24dp.png │ │ ├── ic_cash_usd_black_36dp.png │ │ ├── ic_cash_usd_black_48dp.png │ │ ├── ic_cash_usd_grey600_18dp.png │ │ ├── ic_cash_usd_grey600_24dp.png │ │ ├── ic_cash_usd_grey600_36dp.png │ │ ├── ic_cash_usd_grey600_48dp.png │ │ ├── ic_cash_usd_white_18dp.png │ │ ├── ic_cash_usd_white_24dp.png │ │ ├── ic_cash_usd_white_36dp.png │ │ ├── ic_cash_usd_white_48dp.png │ │ ├── ic_clock_black_18dp.png │ │ ├── ic_clock_black_24dp.png │ │ ├── ic_clock_black_36dp.png │ │ ├── ic_clock_black_48dp.png │ │ ├── ic_clock_grey600_18dp.png │ │ ├── ic_clock_grey600_24dp.png │ │ ├── ic_clock_grey600_36dp.png │ │ ├── ic_clock_grey600_48dp.png │ │ ├── ic_clock_white_18dp.png │ │ ├── ic_clock_white_24dp.png │ │ ├── ic_clock_white_36dp.png │ │ ├── ic_clock_white_48dp.png │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_layers_black_18dp.png │ │ ├── ic_layers_black_24dp.png │ │ ├── ic_layers_black_36dp.png │ │ ├── ic_layers_black_48dp.png │ │ ├── ic_layers_grey600_18dp.png │ │ ├── ic_layers_grey600_24dp.png │ │ ├── ic_layers_grey600_36dp.png │ │ ├── ic_layers_grey600_48dp.png │ │ ├── ic_layers_white_18dp.png │ │ ├── ic_layers_white_24dp.png │ │ ├── ic_layers_white_36dp.png │ │ ├── ic_layers_white_48dp.png │ │ ├── ic_window_close_black_18dp.png │ │ ├── ic_window_close_black_24dp.png │ │ ├── ic_window_close_black_36dp.png │ │ ├── ic_window_close_black_48dp.png │ │ ├── ic_window_close_grey600_18dp.png │ │ ├── ic_window_close_grey600_24dp.png │ │ ├── ic_window_close_grey600_36dp.png │ │ ├── ic_window_close_grey600_48dp.png │ │ ├── ic_window_close_white_18dp.png │ │ ├── ic_window_close_white_24dp.png │ │ ├── ic_window_close_white_36dp.png │ │ └── ic_window_close_white_48dp.png │ │ ├── drawable-mdpi │ │ ├── ic_account_black_18dp.png │ │ ├── ic_account_black_24dp.png │ │ ├── ic_account_black_36dp.png │ │ ├── ic_account_black_48dp.png │ │ ├── ic_account_grey600_18dp.png │ │ ├── ic_account_grey600_24dp.png │ │ ├── ic_account_grey600_36dp.png │ │ ├── ic_account_grey600_48dp.png │ │ ├── ic_account_white_18dp.png │ │ ├── ic_account_white_24dp.png │ │ ├── ic_account_white_36dp.png │ │ ├── ic_account_white_48dp.png │ │ ├── ic_android_black_18dp.png │ │ ├── ic_android_black_24dp.png │ │ ├── ic_android_black_36dp.png │ │ ├── ic_android_black_48dp.png │ │ ├── ic_android_grey600_18dp.png │ │ ├── ic_android_grey600_24dp.png │ │ ├── ic_android_grey600_36dp.png │ │ ├── ic_android_grey600_48dp.png │ │ ├── ic_android_white_18dp.png │ │ ├── ic_android_white_24dp.png │ │ ├── ic_android_white_36dp.png │ │ ├── ic_android_white_48dp.png │ │ ├── ic_calendar_black_18dp.png │ │ ├── ic_calendar_black_24dp.png │ │ ├── ic_calendar_black_36dp.png │ │ ├── ic_calendar_black_48dp.png │ │ ├── ic_calendar_grey600_18dp.png │ │ ├── ic_calendar_grey600_24dp.png │ │ ├── ic_calendar_grey600_36dp.png │ │ ├── ic_calendar_grey600_48dp.png │ │ ├── ic_calendar_white_18dp.png │ │ ├── ic_calendar_white_24dp.png │ │ ├── ic_calendar_white_36dp.png │ │ ├── ic_calendar_white_48dp.png │ │ ├── ic_cash_usd_black_18dp.png │ │ ├── ic_cash_usd_black_24dp.png │ │ ├── ic_cash_usd_black_36dp.png │ │ ├── ic_cash_usd_black_48dp.png │ │ ├── ic_cash_usd_grey600_18dp.png │ │ ├── ic_cash_usd_grey600_24dp.png │ │ ├── ic_cash_usd_grey600_36dp.png │ │ ├── ic_cash_usd_grey600_48dp.png │ │ ├── ic_cash_usd_white_18dp.png │ │ ├── ic_cash_usd_white_24dp.png │ │ ├── ic_cash_usd_white_36dp.png │ │ ├── ic_cash_usd_white_48dp.png │ │ ├── ic_clock_black_18dp.png │ │ ├── ic_clock_black_24dp.png │ │ ├── ic_clock_black_36dp.png │ │ ├── ic_clock_black_48dp.png │ │ ├── ic_clock_grey600_18dp.png │ │ ├── ic_clock_grey600_24dp.png │ │ ├── ic_clock_grey600_36dp.png │ │ ├── ic_clock_grey600_48dp.png │ │ ├── ic_clock_white_18dp.png │ │ ├── ic_clock_white_24dp.png │ │ ├── ic_clock_white_36dp.png │ │ ├── ic_clock_white_48dp.png │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_layers_black_18dp.png │ │ ├── ic_layers_black_24dp.png │ │ ├── ic_layers_black_36dp.png │ │ ├── ic_layers_black_48dp.png │ │ ├── ic_layers_grey600_18dp.png │ │ ├── ic_layers_grey600_24dp.png │ │ ├── ic_layers_grey600_36dp.png │ │ ├── ic_layers_grey600_48dp.png │ │ ├── ic_layers_white_18dp.png │ │ ├── ic_layers_white_24dp.png │ │ ├── ic_layers_white_36dp.png │ │ ├── ic_layers_white_48dp.png │ │ ├── ic_window_close_black_18dp.png │ │ ├── ic_window_close_black_24dp.png │ │ ├── ic_window_close_black_36dp.png │ │ ├── ic_window_close_black_48dp.png │ │ ├── ic_window_close_grey600_18dp.png │ │ ├── ic_window_close_grey600_24dp.png │ │ ├── ic_window_close_grey600_36dp.png │ │ ├── ic_window_close_grey600_48dp.png │ │ ├── ic_window_close_white_18dp.png │ │ ├── ic_window_close_white_24dp.png │ │ ├── ic_window_close_white_36dp.png │ │ └── ic_window_close_white_48dp.png │ │ ├── drawable-xhdpi │ │ ├── ic_account_black_18dp.png │ │ ├── ic_account_black_24dp.png │ │ ├── ic_account_black_36dp.png │ │ ├── ic_account_black_48dp.png │ │ ├── ic_account_grey600_18dp.png │ │ ├── ic_account_grey600_24dp.png │ │ ├── ic_account_grey600_36dp.png │ │ ├── ic_account_grey600_48dp.png │ │ ├── ic_account_white_18dp.png │ │ ├── ic_account_white_24dp.png │ │ ├── ic_account_white_36dp.png │ │ ├── ic_account_white_48dp.png │ │ ├── ic_android_black_18dp.png │ │ ├── ic_android_black_24dp.png │ │ ├── ic_android_black_36dp.png │ │ ├── ic_android_black_48dp.png │ │ ├── ic_android_grey600_18dp.png │ │ ├── ic_android_grey600_24dp.png │ │ ├── ic_android_grey600_36dp.png │ │ ├── ic_android_grey600_48dp.png │ │ ├── ic_android_white_18dp.png │ │ ├── ic_android_white_24dp.png │ │ ├── ic_android_white_36dp.png │ │ ├── ic_android_white_48dp.png │ │ ├── ic_calendar_black_18dp.png │ │ ├── ic_calendar_black_24dp.png │ │ ├── ic_calendar_black_36dp.png │ │ ├── ic_calendar_black_48dp.png │ │ ├── ic_calendar_grey600_18dp.png │ │ ├── ic_calendar_grey600_24dp.png │ │ ├── ic_calendar_grey600_36dp.png │ │ ├── ic_calendar_grey600_48dp.png │ │ ├── ic_calendar_white_18dp.png │ │ ├── ic_calendar_white_24dp.png │ │ ├── ic_calendar_white_36dp.png │ │ ├── ic_calendar_white_48dp.png │ │ ├── ic_cash_usd_black_18dp.png │ │ ├── ic_cash_usd_black_24dp.png │ │ ├── ic_cash_usd_black_36dp.png │ │ ├── ic_cash_usd_black_48dp.png │ │ ├── ic_cash_usd_grey600_18dp.png │ │ ├── ic_cash_usd_grey600_24dp.png │ │ ├── ic_cash_usd_grey600_36dp.png │ │ ├── ic_cash_usd_grey600_48dp.png │ │ ├── ic_cash_usd_white_18dp.png │ │ ├── ic_cash_usd_white_24dp.png │ │ ├── ic_cash_usd_white_36dp.png │ │ ├── ic_cash_usd_white_48dp.png │ │ ├── ic_clock_black_18dp.png │ │ ├── ic_clock_black_24dp.png │ │ ├── ic_clock_black_36dp.png │ │ ├── ic_clock_black_48dp.png │ │ ├── ic_clock_grey600_18dp.png │ │ ├── ic_clock_grey600_24dp.png │ │ ├── ic_clock_grey600_36dp.png │ │ ├── ic_clock_grey600_48dp.png │ │ ├── ic_clock_white_18dp.png │ │ ├── ic_clock_white_24dp.png │ │ ├── ic_clock_white_36dp.png │ │ ├── ic_clock_white_48dp.png │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_layers_black_18dp.png │ │ ├── ic_layers_black_24dp.png │ │ ├── ic_layers_black_36dp.png │ │ ├── ic_layers_black_48dp.png │ │ ├── ic_layers_grey600_18dp.png │ │ ├── ic_layers_grey600_24dp.png │ │ ├── ic_layers_grey600_36dp.png │ │ ├── ic_layers_grey600_48dp.png │ │ ├── ic_layers_white_18dp.png │ │ ├── ic_layers_white_24dp.png │ │ ├── ic_layers_white_36dp.png │ │ ├── ic_layers_white_48dp.png │ │ ├── ic_window_close_black_18dp.png │ │ ├── ic_window_close_black_24dp.png │ │ ├── ic_window_close_black_36dp.png │ │ ├── ic_window_close_black_48dp.png │ │ ├── ic_window_close_grey600_18dp.png │ │ ├── ic_window_close_grey600_24dp.png │ │ ├── ic_window_close_grey600_36dp.png │ │ ├── ic_window_close_grey600_48dp.png │ │ ├── ic_window_close_white_18dp.png │ │ ├── ic_window_close_white_24dp.png │ │ ├── ic_window_close_white_36dp.png │ │ └── ic_window_close_white_48dp.png │ │ ├── drawable-xxhdpi │ │ ├── ic_account_black_18dp.png │ │ ├── ic_account_black_24dp.png │ │ ├── ic_account_black_36dp.png │ │ ├── ic_account_black_48dp.png │ │ ├── ic_account_grey600_18dp.png │ │ ├── ic_account_grey600_24dp.png │ │ ├── ic_account_grey600_36dp.png │ │ ├── ic_account_grey600_48dp.png │ │ ├── ic_account_white_18dp.png │ │ ├── ic_account_white_24dp.png │ │ ├── ic_account_white_36dp.png │ │ ├── ic_account_white_48dp.png │ │ ├── ic_android_black_18dp.png │ │ ├── ic_android_black_24dp.png │ │ ├── ic_android_black_36dp.png │ │ ├── ic_android_black_48dp.png │ │ ├── ic_android_grey600_18dp.png │ │ ├── ic_android_grey600_24dp.png │ │ ├── ic_android_grey600_36dp.png │ │ ├── ic_android_grey600_48dp.png │ │ ├── ic_android_white_18dp.png │ │ ├── ic_android_white_24dp.png │ │ ├── ic_android_white_36dp.png │ │ ├── ic_android_white_48dp.png │ │ ├── ic_calendar_black_18dp.png │ │ ├── ic_calendar_black_24dp.png │ │ ├── ic_calendar_black_36dp.png │ │ ├── ic_calendar_black_48dp.png │ │ ├── ic_calendar_grey600_18dp.png │ │ ├── ic_calendar_grey600_24dp.png │ │ ├── ic_calendar_grey600_36dp.png │ │ ├── ic_calendar_grey600_48dp.png │ │ ├── ic_calendar_white_18dp.png │ │ ├── ic_calendar_white_24dp.png │ │ ├── ic_calendar_white_36dp.png │ │ ├── ic_calendar_white_48dp.png │ │ ├── ic_cash_usd_black_18dp.png │ │ ├── ic_cash_usd_black_24dp.png │ │ ├── ic_cash_usd_black_36dp.png │ │ ├── ic_cash_usd_black_48dp.png │ │ ├── ic_cash_usd_grey600_18dp.png │ │ ├── ic_cash_usd_grey600_24dp.png │ │ ├── ic_cash_usd_grey600_36dp.png │ │ ├── ic_cash_usd_grey600_48dp.png │ │ ├── ic_cash_usd_white_18dp.png │ │ ├── ic_cash_usd_white_24dp.png │ │ ├── ic_cash_usd_white_36dp.png │ │ ├── ic_cash_usd_white_48dp.png │ │ ├── ic_clock_black_18dp.png │ │ ├── ic_clock_black_24dp.png │ │ ├── ic_clock_black_36dp.png │ │ ├── ic_clock_black_48dp.png │ │ ├── ic_clock_grey600_18dp.png │ │ ├── ic_clock_grey600_24dp.png │ │ ├── ic_clock_grey600_36dp.png │ │ ├── ic_clock_grey600_48dp.png │ │ ├── ic_clock_white_18dp.png │ │ ├── ic_clock_white_24dp.png │ │ ├── ic_clock_white_36dp.png │ │ ├── ic_clock_white_48dp.png │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_layers_black_18dp.png │ │ ├── ic_layers_black_24dp.png │ │ ├── ic_layers_black_36dp.png │ │ ├── ic_layers_black_48dp.png │ │ ├── ic_layers_grey600_18dp.png │ │ ├── ic_layers_grey600_24dp.png │ │ ├── ic_layers_grey600_36dp.png │ │ ├── ic_layers_grey600_48dp.png │ │ ├── ic_layers_white_18dp.png │ │ ├── ic_layers_white_24dp.png │ │ ├── ic_layers_white_36dp.png │ │ ├── ic_layers_white_48dp.png │ │ ├── ic_window_close_black_18dp.png │ │ ├── ic_window_close_black_24dp.png │ │ ├── ic_window_close_black_36dp.png │ │ ├── ic_window_close_black_48dp.png │ │ ├── ic_window_close_grey600_18dp.png │ │ ├── ic_window_close_grey600_24dp.png │ │ ├── ic_window_close_grey600_36dp.png │ │ ├── ic_window_close_grey600_48dp.png │ │ ├── ic_window_close_white_18dp.png │ │ ├── ic_window_close_white_24dp.png │ │ ├── ic_window_close_white_36dp.png │ │ └── ic_window_close_white_48dp.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_account_black_18dp.png │ │ ├── ic_account_black_24dp.png │ │ ├── ic_account_black_36dp.png │ │ ├── ic_account_black_48dp.png │ │ ├── ic_account_grey600_18dp.png │ │ ├── ic_account_grey600_24dp.png │ │ ├── ic_account_grey600_36dp.png │ │ ├── ic_account_grey600_48dp.png │ │ ├── ic_account_white_18dp.png │ │ ├── ic_account_white_24dp.png │ │ ├── ic_account_white_36dp.png │ │ ├── ic_account_white_48dp.png │ │ ├── ic_android_black_18dp.png │ │ ├── ic_android_black_24dp.png │ │ ├── ic_android_black_36dp.png │ │ ├── ic_android_black_48dp.png │ │ ├── ic_android_grey600_18dp.png │ │ ├── ic_android_grey600_24dp.png │ │ ├── ic_android_grey600_36dp.png │ │ ├── ic_android_grey600_48dp.png │ │ ├── ic_android_white_18dp.png │ │ ├── ic_android_white_24dp.png │ │ ├── ic_android_white_36dp.png │ │ ├── ic_android_white_48dp.png │ │ ├── ic_calendar_black_18dp.png │ │ ├── ic_calendar_black_24dp.png │ │ ├── ic_calendar_black_36dp.png │ │ ├── ic_calendar_black_48dp.png │ │ ├── ic_calendar_grey600_18dp.png │ │ ├── ic_calendar_grey600_24dp.png │ │ ├── ic_calendar_grey600_36dp.png │ │ ├── ic_calendar_grey600_48dp.png │ │ ├── ic_calendar_white_18dp.png │ │ ├── ic_calendar_white_24dp.png │ │ ├── ic_calendar_white_36dp.png │ │ ├── ic_calendar_white_48dp.png │ │ ├── ic_cash_usd_black_18dp.png │ │ ├── ic_cash_usd_black_24dp.png │ │ ├── ic_cash_usd_black_36dp.png │ │ ├── ic_cash_usd_black_48dp.png │ │ ├── ic_cash_usd_grey600_18dp.png │ │ ├── ic_cash_usd_grey600_24dp.png │ │ ├── ic_cash_usd_grey600_36dp.png │ │ ├── ic_cash_usd_grey600_48dp.png │ │ ├── ic_cash_usd_white_18dp.png │ │ ├── ic_cash_usd_white_24dp.png │ │ ├── ic_cash_usd_white_36dp.png │ │ ├── ic_cash_usd_white_48dp.png │ │ ├── ic_clock_black_18dp.png │ │ ├── ic_clock_black_24dp.png │ │ ├── ic_clock_black_36dp.png │ │ ├── ic_clock_black_48dp.png │ │ ├── ic_clock_grey600_18dp.png │ │ ├── ic_clock_grey600_24dp.png │ │ ├── ic_clock_grey600_36dp.png │ │ ├── ic_clock_grey600_48dp.png │ │ ├── ic_clock_white_18dp.png │ │ ├── ic_clock_white_24dp.png │ │ ├── ic_clock_white_36dp.png │ │ ├── ic_clock_white_48dp.png │ │ ├── ic_format_list_bulleted_black_18dp.png │ │ ├── ic_format_list_bulleted_black_24dp.png │ │ ├── ic_format_list_bulleted_black_36dp.png │ │ ├── ic_format_list_bulleted_black_48dp.png │ │ ├── ic_format_list_bulleted_grey600_18dp.png │ │ ├── ic_format_list_bulleted_grey600_24dp.png │ │ ├── ic_format_list_bulleted_grey600_36dp.png │ │ ├── ic_format_list_bulleted_grey600_48dp.png │ │ ├── ic_format_list_bulleted_white_18dp.png │ │ ├── ic_format_list_bulleted_white_24dp.png │ │ ├── ic_format_list_bulleted_white_36dp.png │ │ ├── ic_format_list_bulleted_white_48dp.png │ │ ├── ic_layers_black_18dp.png │ │ ├── ic_layers_black_24dp.png │ │ ├── ic_layers_black_36dp.png │ │ ├── ic_layers_black_48dp.png │ │ ├── ic_layers_grey600_18dp.png │ │ ├── ic_layers_grey600_24dp.png │ │ ├── ic_layers_grey600_36dp.png │ │ ├── ic_layers_grey600_48dp.png │ │ ├── ic_layers_white_18dp.png │ │ ├── ic_layers_white_24dp.png │ │ ├── ic_layers_white_36dp.png │ │ ├── ic_layers_white_48dp.png │ │ ├── ic_window_close_black_18dp.png │ │ ├── ic_window_close_black_24dp.png │ │ ├── ic_window_close_black_36dp.png │ │ ├── ic_window_close_black_48dp.png │ │ ├── ic_window_close_grey600_18dp.png │ │ ├── ic_window_close_grey600_24dp.png │ │ ├── ic_window_close_grey600_36dp.png │ │ ├── ic_window_close_grey600_48dp.png │ │ ├── ic_window_close_white_18dp.png │ │ ├── ic_window_close_white_24dp.png │ │ ├── ic_window_close_white_36dp.png │ │ └── ic_window_close_white_48dp.png │ │ ├── layout │ │ ├── extra_option_item.xml │ │ ├── filter_section.xml │ │ ├── filter_view.xml │ │ ├── single_option_item.xml │ │ ├── slider_option_item.xml │ │ └── tag_option_item.xml │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── javier │ └── filterview │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot_2018-02-20-09-48-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/Screenshot_2018-02-20-09-48-41.png -------------------------------------------------------------------------------- /Screenshot_2018-02-20-09-49-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/Screenshot_2018-02-20-09-49-24.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/_config.yml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/android/support/compat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/android/support/compat/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/android/support/coreui/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/android/support/coreui/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/android/support/coreutils/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/android/support/coreutils/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/android/support/fragment/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/android/support/fragment/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/android/support/mediacompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/android/support/mediacompat/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/android/support/v4/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/android/support/v4/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/com/adroitandroid/chipcloud/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/com/adroitandroid/chipcloud/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/com/javier/app/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/com/javier/app/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/com/javier/filterview/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/com/javier/filterview/R.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/mehdi/sakout/fancybuttons/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/generated/source/r/debug/mehdi/sakout/fancybuttons/R.java -------------------------------------------------------------------------------- /app/build/intermediates/assets/debug/backward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/assets/debug/backward -------------------------------------------------------------------------------- /app/build/intermediates/assets/debug/fonts/AndroidClockMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/assets/debug/fonts/AndroidClockMono-Thin.ttf -------------------------------------------------------------------------------- /app/build/intermediates/assets/debug/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/assets/debug/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /app/build/intermediates/assets/debug/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/assets/debug/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /app/build/intermediates/assets/debug/fonts/fontawesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/assets/debug/fonts/fontawesome.ttf -------------------------------------------------------------------------------- /app/build/intermediates/assets/debug/fonts/robotoregular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/assets/debug/fonts/robotoregular.ttf -------------------------------------------------------------------------------- /app/build/intermediates/assets/debug/zone.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/assets/debug/zone.tab -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/androidTest/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/androidTest/debug/multi/values.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/color.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/layout.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-af.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-am.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ar.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-az-rAZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-az-rAZ.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-b+sr+Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-b+sr+Latn.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-be-rBY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-be-rBY.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-bg.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-bn-rBD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-bn-rBD.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-bs-rBA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-bs-rBA.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ca.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-cs.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-da.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-de.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-el.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-en-rAU.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-en-rGB.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-en-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-es-rUS.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-es.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-et-rEE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-et-rEE.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-eu-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-eu-rES.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-fa.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-fi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-fr-rCA.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-fr.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-gl-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-gl-rES.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-gu-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-gu-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-hi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-hr.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-hu.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-hy-rAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-hy-rAM.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-in.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-is-rIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-is-rIS.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-it.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-iw.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ja.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ka-rGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ka-rGE.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-km-rKH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-km-rKH.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-kn-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-kn-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ko.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ky-rKG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ky-rKG.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-land.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-large-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-large-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-lo-rLA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-lo-rLA.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-lt.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-lv.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-mdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-mk-rMK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-mk-rMK.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ml-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ml-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-mn-rMN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-mn-rMN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-mr-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-mr-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ms-rMY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ms-rMY.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-my-rMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-my-rMM.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-nb.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ne-rNP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ne-rNP.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-night-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-night-v8.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-nl.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-pa-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-pa-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-pl.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-port.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-pt-rBR.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-pt-rPT.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-pt.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ro.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ru.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-si-rLK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-si-rLK.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-sk.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-sl.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-sq-rAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-sq-rAL.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-sr.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-sv.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-sw.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-sw720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-sw720dp-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ta-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ta-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-te-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-te-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-th.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-tl.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-tr.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-uk.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-ur-rPK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-ur-rPK.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v11.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v12.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v14.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v16.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v17.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v18.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v22.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v23.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v24.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-v25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-v25.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-vi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-xhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-xhdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-xxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-xxhdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-xxxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-xxxhdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-zh-rCN.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-zh-rHK.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-zh.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values-zu.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/multi/values.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/anim.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/color-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/color-v11.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/color-v23.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/color.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-hdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-hdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-ldpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-ldpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-mdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-mdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-v23.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-xhdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-xhdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-xxhdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-xxhdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable-xxxhdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable-xxxhdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/drawable.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/layout-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/layout-land.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/layout-ldrtl-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/layout-ldrtl-v17.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/layout-sw600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/layout-sw600dp-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/layout-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/layout-v11.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/layout-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/layout-v14.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/layout-v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/layout-v16.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/layout-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/layout-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/layout.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/mipmap-hdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/mipmap-hdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/mipmap-mdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/mipmap-mdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/mipmap-xhdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/mipmap-xhdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/mipmap-xxhdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/mipmap-xxhdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/blame/res/debug/single/mipmap-xxxhdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/blame/res/debug/single/mipmap-xxxhdpi.json -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/android/support/compat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/android/support/compat/R.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/android/support/coreui/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/android/support/coreui/R.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/android/support/fragment/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/android/support/fragment/R.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/android/support/v4/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/android/support/v4/R.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/BuildConfig.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$anim.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$array.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$attr.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$bool.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$color.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$dimen.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$drawable.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$id.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$integer.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$layout.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$mipmap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$mipmap.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$plurals.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$plurals.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$string.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$style.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R$styleable.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/app/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/app/R.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/filterview/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/filterview/R$id.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/com/javier/filterview/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/classes/debug/com/javier/filterview/R.class -------------------------------------------------------------------------------- /app/build/intermediates/incremental-safeguard/debug/tag.txt: -------------------------------------------------------------------------------- 1 | incremental task execution -------------------------------------------------------------------------------- /app/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Tue May 09 10:25:37 CDT 2017 2 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/incremental/mergeDebugAssets/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/incremental/mergeDebugResources/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/incremental/mergeDebugShaders/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageDebug/dex-renamer-state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/incremental/packageDebug/dex-renamer-state.txt -------------------------------------------------------------------------------- /app/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/manifests/full/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/decelerate_cubic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/decelerate_cubic.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/popup_enter.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/anim/popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/anim/popup_exit.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/color/abc_tint_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/color/abc_tint_default.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/color/abc_tint_edittext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/color/abc_tint_edittext.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/color/abc_tint_seek_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/color/abc_tint_seek_thumb.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/color/abc_tint_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/color/abc_tint_spinner.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/color/done_text_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/color/done_text_color.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-v21/md_btn_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable-v21/md_btn_shape.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/abc_vector_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/abc_vector_test.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/chip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/chip.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/chip_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/chip_selected.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/ic_check_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/ic_check_dark.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/ic_check_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/ic_check_light.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/md_btn_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/md_btn_selected.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/md_btn_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/md_btn_selector.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/md_item_selected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/md_item_selected.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/md_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/md_selector.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/md_selector_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/md_selector_dark.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/md_transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/md_transparent.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable/notification_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/drawable/notification_bg.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/abc_search_view.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/activity_main.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/chip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/chip.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/filter_section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/filter_section.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/filter_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/filter_view.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/hms_picker_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/hms_picker_view.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/keyboard.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/keyboard_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/keyboard_text.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/md_dialog_basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/md_dialog_basic.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/md_dialog_input.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/md_dialog_input.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/md_dialog_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/md_dialog_list.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/md_listitem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/md_listitem.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/tag_option_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/tag_option_item.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/three_keys_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/three_keys_view.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/time_zone_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/layout/time_zone_item.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-af/values-af.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-am/values-am.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-ar/values-ar.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-bg/values-bg.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-ca/values-ca.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-cs/values-cs.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-da/values-da.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-de/values-de.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-el/values-el.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-es/values-es.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-fa/values-fa.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-fi/values-fi.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-fr/values-fr.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-hi/values-hi.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-hr/values-hr.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-hu/values-hu.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-in/values-in.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-it/values-it.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-iw/values-iw.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-ja/values-ja.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-ko/values-ko.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-lt/values-lt.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-lv/values-lv.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-nb/values-nb.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-nl/values-nl.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-pl/values-pl.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-pt/values-pt.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-ro/values-ro.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-ru/values-ru.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-sk/values-sk.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-sl/values-sl.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-sr/values-sr.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-sv/values-sv.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-sw/values-sw.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-th/values-th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-th/values-th.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-tl/values-tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-tl/values-tl.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-tr/values-tr.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-uk/values-uk.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v11/values-v11.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v12/values-v12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v12/values-v12.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v13/values-v13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v13/values-v13.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v14/values-v14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v14/values-v14.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v16/values-v16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v16/values-v16.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v17/values-v17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v17/values-v17.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v18/values-v18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v18/values-v18.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v21/values-v21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v21/values-v21.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v22/values-v22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v22/values-v22.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v23/values-v23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v23/values-v23.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v24/values-v24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v24/values-v24.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-v25/values-v25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-v25/values-v25.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-vi/values-vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-vi/values-vi.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-zh/values-zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-zh/values-zh.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values-zu/values-zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values-zu/values-zu.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/merged/debug/values/values.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /app/build/intermediates/res/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/res/resources-debug.ap_ -------------------------------------------------------------------------------- /app/build/intermediates/symbols/androidTest/debug/R.txt: -------------------------------------------------------------------------------- 1 | int string app_name 0x7f020000 2 | -------------------------------------------------------------------------------- /app/build/intermediates/symbols/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/intermediates/symbols/debug/R.txt -------------------------------------------------------------------------------- /app/build/outputs/apk/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/outputs/apk/app-debug.apk -------------------------------------------------------------------------------- /app/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/build/outputs/logs/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/javier/app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/java/com/javier/app/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/javier/app/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/app/src/test/java/com/javier/app/ExampleUnitTest.java -------------------------------------------------------------------------------- /filterview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /filterview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/build.gradle -------------------------------------------------------------------------------- /filterview/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/proguard-rules.pro -------------------------------------------------------------------------------- /filterview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /filterview/src/main/java/com/javier/filterview/FilterAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/java/com/javier/filterview/FilterAdapter.java -------------------------------------------------------------------------------- /filterview/src/main/java/com/javier/filterview/FilterItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/java/com/javier/filterview/FilterItem.java -------------------------------------------------------------------------------- /filterview/src/main/java/com/javier/filterview/FilterSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/java/com/javier/filterview/FilterSection.java -------------------------------------------------------------------------------- /filterview/src/main/java/com/javier/filterview/FilterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/java/com/javier/filterview/FilterView.java -------------------------------------------------------------------------------- /filterview/src/main/java/com/javier/filterview/tag/TagAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/java/com/javier/filterview/tag/TagAdapter.java -------------------------------------------------------------------------------- /filterview/src/main/java/com/javier/filterview/tag/TagGravity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/java/com/javier/filterview/tag/TagGravity.java -------------------------------------------------------------------------------- /filterview/src/main/java/com/javier/filterview/tag/TagMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/java/com/javier/filterview/tag/TagMode.java -------------------------------------------------------------------------------- /filterview/src/main/java/com/javier/filterview/tag/TagSection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/java/com/javier/filterview/tag/TagSection.java -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_account_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_account_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_android_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_android_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_calendar_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_calendar_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_cash_usd_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_cash_usd_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_clock_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_clock_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-hdpi/ic_layers_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-hdpi/ic_layers_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_account_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_account_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_android_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_android_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_calendar_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_calendar_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_cash_usd_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_cash_usd_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_clock_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_clock_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-mdpi/ic_layers_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-mdpi/ic_layers_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_account_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_account_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_android_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_android_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_calendar_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_calendar_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_cash_usd_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_cash_usd_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_clock_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_clock_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xhdpi/ic_layers_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xhdpi/ic_layers_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_account_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_account_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_android_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_android_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_calendar_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_calendar_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_calendar_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_calendar_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_calendar_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_calendar_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_calendar_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_calendar_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_calendar_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_calendar_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_calendar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_calendar_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_calendar_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_calendar_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_calendar_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_calendar_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_cash_usd_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_clock_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_clock_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxhdpi/ic_layers_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxhdpi/ic_layers_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_account_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_account_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_account_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_account_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_account_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_account_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_account_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_account_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_account_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_account_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_account_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_account_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_account_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_account_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_account_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_account_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_android_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_android_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_android_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_android_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_android_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_android_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_android_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_android_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_android_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_android_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_android_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_android_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_android_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_android_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_android_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_android_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_calendar_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_calendar_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_calendar_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_calendar_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_calendar_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_calendar_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_calendar_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_calendar_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_calendar_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_calendar_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_calendar_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_calendar_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_calendar_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_calendar_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_calendar_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_calendar_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_cash_usd_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_clock_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_clock_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_black_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_black_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_black_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_black_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_black_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_grey600_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_grey600_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_grey600_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_grey600_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_grey600_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_grey600_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_white_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_white_18dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_white_24dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_white_36dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/drawable-xxxhdpi/ic_layers_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/drawable-xxxhdpi/ic_layers_white_48dp.png -------------------------------------------------------------------------------- /filterview/src/main/res/layout/extra_option_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/layout/extra_option_item.xml -------------------------------------------------------------------------------- /filterview/src/main/res/layout/filter_section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/layout/filter_section.xml -------------------------------------------------------------------------------- /filterview/src/main/res/layout/filter_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/layout/filter_view.xml -------------------------------------------------------------------------------- /filterview/src/main/res/layout/single_option_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/layout/single_option_item.xml -------------------------------------------------------------------------------- /filterview/src/main/res/layout/slider_option_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/layout/slider_option_item.xml -------------------------------------------------------------------------------- /filterview/src/main/res/layout/tag_option_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/layout/tag_option_item.xml -------------------------------------------------------------------------------- /filterview/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /filterview/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /filterview/src/test/java/com/javier/filterview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/filterview/src/test/java/com/javier/filterview/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javierpe/Android-FilterView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':filterview' 2 | --------------------------------------------------------------------------------