实例介绍
Android代码 主要实现的是APP的更新功能,三种界面可以选择可以根据不同的需求来更改代码!
【实例截图】
【核心代码】
4744302542941197589.zip
└── CheckVersionLib
├── build
│ ├── generated
│ │ └── mockable-android-27.jar
│ └── intermediates
│ └── dex-cache
│ └── cache.xml
├── build.gradle
├── CheckVersionLib.iml
├── ForceUpdateDemo
│ ├── app
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ ├── androidTest
│ │ │ └── java
│ │ │ └── com
│ │ │ └── allenliu
│ │ │ └── forceupdatedemo
│ │ │ └── ExampleInstrumentedTest.java
│ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── allenliu
│ │ │ │ └── forceupdatedemo
│ │ │ │ ├── CustomDialogActivity.java
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── MyService.java
│ │ │ └── res
│ │ │ ├── layout
│ │ │ │ ├── activity_custom_dialog.xml
│ │ │ │ └── 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
│ │ └── allenliu
│ │ └── forceupdatedemo
│ │ └── ExampleUnitTest.java
│ ├── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradle.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── gif
│ ├── custom.gif
│ ├── main.jpg
│ ├── style1.png
│ ├── style2.png
│ ├── style3.png
│ ├── style4.png
│ └── versionparams.png
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── library
│ ├── build
│ │ ├── generated
│ │ │ ├── assets
│ │ │ │ └── shaders
│ │ │ │ ├── debug
│ │ │ │ └── release
│ │ │ ├── res
│ │ │ │ ├── resValues
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── debug
│ │ │ │ │ ├── debug
│ │ │ │ │ └── release
│ │ │ │ └── rs
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ ├── debug
│ │ │ │ └── release
│ │ │ └── source
│ │ │ ├── aidl
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ ├── debug
│ │ │ │ └── release
│ │ │ ├── apt
│ │ │ │ └── release
│ │ │ ├── buildConfig
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── allenliu
│ │ │ │ │ └── versionchecklib
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ ├── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── allenliu
│ │ │ │ │ └── versionchecklib
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ └── release
│ │ │ │ └── com
│ │ │ │ └── allenliu
│ │ │ │ └── versionchecklib
│ │ │ │ └── BuildConfig.java
│ │ │ ├── r
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── arch
│ │ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── constraint
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── coreui
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── drawable
│ │ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ └── appcompat
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── com
│ │ │ │ │ └── allenliu
│ │ │ │ │ └── versionchecklib
│ │ │ │ │ ├── R.java
│ │ │ │ │ └── test
│ │ │ │ │ └── R.java
│ │ │ │ ├── debug
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── arch
│ │ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── constraint
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── coreui
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── drawable
│ │ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ └── appcompat
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── com
│ │ │ │ │ └── allenliu
│ │ │ │ │ └── versionchecklib
│ │ │ │ │ └── R.java
│ │ │ │ └── release
│ │ │ │ ├── android
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── constraint
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── coreui
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── coreutils
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── fragment
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── v7
│ │ │ │ │ └── appcompat
│ │ │ │ │ └── R.java
│ │ │ │ └── com
│ │ │ │ └── allenliu
│ │ │ │ └── versionchecklib
│ │ │ │ └── R.java
│ │ │ └── rs
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ ├── debug
│ │ │ └── release
│ │ ├── intermediates
│ │ │ ├── annotations
│ │ │ │ └── release
│ │ │ ├── blame
│ │ │ │ └── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── multi
│ │ │ │ │ │ ├── values-af.json
│ │ │ │ │ │ ├── values-am.json
│ │ │ │ │ │ ├── values-ar.json
│ │ │ │ │ │ ├── values-az.json
│ │ │ │ │ │ ├── values-be.json
│ │ │ │ │ │ ├── values-bg.json
│ │ │ │ │ │ ├── values-bn.json
│ │ │ │ │ │ ├── values-bs.json
│ │ │ │ │ │ ├── values-b+sr+Latn.json
│ │ │ │ │ │ ├── values-ca.json
│ │ │ │ │ │ ├── values-cs.json
│ │ │ │ │ │ ├── values-da.json
│ │ │ │ │ │ ├── values-de.json
│ │ │ │ │ │ ├── values-el.json
│ │ │ │ │ │ ├── values-en.json
│ │ │ │ │ │ ├── values-en-rAU.json
│ │ │ │ │ │ ├── values-en-rCA.json
│ │ │ │ │ │ ├── values-en-rGB.json
│ │ │ │ │ │ ├── values-en-rIN.json
│ │ │ │ │ │ ├── values-en-rXC.json
│ │ │ │ │ │ ├── values-es.json
│ │ │ │ │ │ ├── values-es-rUS.json
│ │ │ │ │ │ ├── values-et.json
│ │ │ │ │ │ ├── values-eu.json
│ │ │ │ │ │ ├── values-fa.json
│ │ │ │ │ │ ├── values-fi.json
│ │ │ │ │ │ ├── values-fr.json
│ │ │ │ │ │ ├── values-fr-rCA.json
│ │ │ │ │ │ ├── values-gl.json
│ │ │ │ │ │ ├── values-gu.json
│ │ │ │ │ │ ├── values-h720dp-v13.json
│ │ │ │ │ │ ├── values-hdpi-v4.json
│ │ │ │ │ │ ├── values-hi.json
│ │ │ │ │ │ ├── values-hr.json
│ │ │ │ │ │ ├── values-hu.json
│ │ │ │ │ │ ├── values-hy.json
│ │ │ │ │ │ ├── values-in.json
│ │ │ │ │ │ ├── values-is.json
│ │ │ │ │ │ ├── values-it.json
│ │ │ │ │ │ ├── values-iw.json
│ │ │ │ │ │ ├── values-ja.json
│ │ │ │ │ │ ├── values.json
│ │ │ │ │ │ ├── values-ka.json
│ │ │ │ │ │ ├── values-kk.json
│ │ │ │ │ │ ├── values-km.json
│ │ │ │ │ │ ├── values-kn.json
│ │ │ │ │ │ ├── values-ko.json
│ │ │ │ │ │ ├── values-ky.json
│ │ │ │ │ │ ├── values-land.json
│ │ │ │ │ │ ├── values-large-v4.json
│ │ │ │ │ │ ├── values-ldltr-v21.json
│ │ │ │ │ │ ├── values-lo.json
│ │ │ │ │ │ ├── values-lt.json
│ │ │ │ │ │ ├── values-lv.json
│ │ │ │ │ │ ├── values-mk.json
│ │ │ │ │ │ ├── values-ml.json
│ │ │ │ │ │ ├── values-mn.json
│ │ │ │ │ │ ├── values-mr.json
│ │ │ │ │ │ ├── values-ms.json
│ │ │ │ │ │ ├── values-my.json
│ │ │ │ │ │ ├── values-nb.json
│ │ │ │ │ │ ├── values-ne.json
│ │ │ │ │ │ ├── values-night-v8.json
│ │ │ │ │ │ ├── values-nl.json
│ │ │ │ │ │ ├── values-pa.json
│ │ │ │ │ │ ├── values-pl.json
│ │ │ │ │ │ ├── values-port.json
│ │ │ │ │ │ ├── values-pt.json
│ │ │ │ │ │ ├── values-pt-rBR.json
│ │ │ │ │ │ ├── values-pt-rPT.json
│ │ │ │ │ │ ├── values-ro.json
│ │ │ │ │ │ ├── values-ru.json
│ │ │ │ │ │ ├── values-si.json
│ │ │ │ │ │ ├── values-sk.json
│ │ │ │ │ │ ├── values-sl.json
│ │ │ │ │ │ ├── values-sq.json
│ │ │ │ │ │ ├── values-sr.json
│ │ │ │ │ │ ├── values-sv.json
│ │ │ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ │ │ ├── values-sw.json
│ │ │ │ │ │ ├── values-ta.json
│ │ │ │ │ │ ├── values-te.json
│ │ │ │ │ │ ├── values-th.json
│ │ │ │ │ │ ├── values-tl.json
│ │ │ │ │ │ ├── values-tr.json
│ │ │ │ │ │ ├── values-uk.json
│ │ │ │ │ │ ├── values-ur.json
│ │ │ │ │ │ ├── values-uz.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-v26.json
│ │ │ │ │ │ ├── values-vi.json
│ │ │ │ │ │ ├── values-w820dp-v13.json
│ │ │ │ │ │ ├── values-xlarge-v4.json
│ │ │ │ │ │ ├── values-zh-rCN.json
│ │ │ │ │ │ ├── values-zh-rHK.json
│ │ │ │ │ │ ├── values-zh-rTW.json
│ │ │ │ │ │ └── values-zu.json
│ │ │ │ │ └── single
│ │ │ │ │ ├── anim.json
│ │ │ │ │ ├── color.json
│ │ │ │ │ ├── color-v11.json
│ │ │ │ │ ├── color-v23.json
│ │ │ │ │ ├── drawable-hdpi-v4.json
│ │ │ │ │ ├── drawable.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-v21.json
│ │ │ │ │ ├── drawable-v23.json
│ │ │ │ │ ├── drawable-xhdpi-v4.json
│ │ │ │ │ ├── drawable-xxhdpi-v4.json
│ │ │ │ │ ├── drawable-xxxhdpi-v4.json
│ │ │ │ │ ├── layout.json
│ │ │ │ │ ├── layout-v16.json
│ │ │ │ │ ├── layout-v21.json
│ │ │ │ │ ├── layout-v26.json
│ │ │ │ │ ├── mipmap-hdpi-v4.json
│ │ │ │ │ ├── mipmap-mdpi-v4.json
│ │ │ │ │ ├── mipmap-xhdpi-v4.json
│ │ │ │ │ ├── mipmap-xxhdpi-v4.json
│ │ │ │ │ ├── mipmap-xxxhdpi-v4.json
│ │ │ │ │ └── xml.json
│ │ │ │ ├── debug
│ │ │ │ │ ├── multi
│ │ │ │ │ │ ├── values-af.json
│ │ │ │ │ │ ├── values-am.json
│ │ │ │ │ │ ├── values-ar.json
│ │ │ │ │ │ ├── values-az.json
│ │ │ │ │ │ ├── values-be.json
│ │ │ │ │ │ ├── values-bg.json
│ │ │ │ │ │ ├── values-bn.json
│ │ │ │ │ │ ├── values-bs.json
│ │ │ │ │ │ ├── values-b+sr+Latn.json
│ │ │ │ │ │ ├── values-ca.json
│ │ │ │ │ │ ├── values-cs.json
│ │ │ │ │ │ ├── values-da.json
│ │ │ │ │ │ ├── values-de.json
│ │ │ │ │ │ ├── values-el.json
│ │ │ │ │ │ ├── values-en.json
│ │ │ │ │ │ ├── values-en-rAU.json
│ │ │ │ │ │ ├── values-en-rCA.json
│ │ │ │ │ │ ├── values-en-rGB.json
│ │ │ │ │ │ ├── values-en-rIN.json
│ │ │ │ │ │ ├── values-en-rXC.json
│ │ │ │ │ │ ├── values-es.json
│ │ │ │ │ │ ├── values-es-rUS.json
│ │ │ │ │ │ ├── values-et.json
│ │ │ │ │ │ ├── values-eu.json
│ │ │ │ │ │ ├── values-fa.json
│ │ │ │ │ │ ├── values-fi.json
│ │ │ │ │ │ ├── values-fr.json
│ │ │ │ │ │ ├── values-fr-rCA.json
│ │ │ │ │ │ ├── values-gl.json
│ │ │ │ │ │ ├── values-gu.json
│ │ │ │ │ │ ├── values-h720dp-v13.json
│ │ │ │ │ │ ├── values-hdpi-v4.json
│ │ │ │ │ │ ├── values-hi.json
│ │ │ │ │ │ ├── values-hr.json
│ │ │ │ │ │ ├── values-hu.json
│ │ │ │ │ │ ├── values-hy.json
│ │ │ │ │ │ ├── values-in.json
│ │ │ │ │ │ ├── values-is.json
│ │ │ │ │ │ ├── values-it.json
│ │ │ │ │ │ ├── values-iw.json
│ │ │ │ │ │ ├── values-ja.json
│ │ │ │ │ │ ├── values.json
│ │ │ │ │ │ ├── values-ka.json
│ │ │ │ │ │ ├── values-kk.json
│ │ │ │ │ │ ├── values-km.json
│ │ │ │ │ │ ├── values-kn.json
│ │ │ │ │ │ ├── values-ko.json
│ │ │ │ │ │ ├── values-ky.json
│ │ │ │ │ │ ├── values-land.json
│ │ │ │ │ │ ├── values-large-v4.json
│ │ │ │ │ │ ├── values-ldltr-v21.json
│ │ │ │ │ │ ├── values-lo.json
│ │ │ │ │ │ ├── values-lt.json
│ │ │ │ │ │ ├── values-lv.json
│ │ │ │ │ │ ├── values-mk.json
│ │ │ │ │ │ ├── values-ml.json
│ │ │ │ │ │ ├── values-mn.json
│ │ │ │ │ │ ├── values-mr.json
│ │ │ │ │ │ ├── values-ms.json
│ │ │ │ │ │ ├── values-my.json
│ │ │ │ │ │ ├── values-nb.json
│ │ │ │ │ │ ├── values-ne.json
│ │ │ │ │ │ ├── values-night-v8.json
│ │ │ │ │ │ ├── values-nl.json
│ │ │ │ │ │ ├── values-pa.json
│ │ │ │ │ │ ├── values-pl.json
│ │ │ │ │ │ ├── values-port.json
│ │ │ │ │ │ ├── values-pt.json
│ │ │ │ │ │ ├── values-pt-rBR.json
│ │ │ │ │ │ ├── values-pt-rPT.json
│ │ │ │ │ │ ├── values-ro.json
│ │ │ │ │ │ ├── values-ru.json
│ │ │ │ │ │ ├── values-si.json
│ │ │ │ │ │ ├── values-sk.json
│ │ │ │ │ │ ├── values-sl.json
│ │ │ │ │ │ ├── values-sq.json
│ │ │ │ │ │ ├── values-sr.json
│ │ │ │ │ │ ├── values-sv.json
│ │ │ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ │ │ ├── values-sw.json
│ │ │ │ │ │ ├── values-ta.json
│ │ │ │ │ │ ├── values-te.json
│ │ │ │ │ │ ├── values-th.json
│ │ │ │ │ │ ├── values-tl.json
│ │ │ │ │ │ ├── values-tr.json
│ │ │ │ │ │ ├── values-uk.json
│ │ │ │ │ │ ├── values-ur.json
│ │ │ │ │ │ ├── values-uz.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-v26.json
│ │ │ │ │ │ ├── values-vi.json
│ │ │ │ │ │ ├── values-w820dp-v13.json
│ │ │ │ │ │ ├── values-xlarge-v4.json
│ │ │ │ │ │ ├── values-zh-rCN.json
│ │ │ │ │ │ ├── values-zh-rHK.json
│ │ │ │ │ │ ├── values-zh-rTW.json
│ │ │ │ │ │ └── values-zu.json
│ │ │ │ │ └── single
│ │ │ │ │ ├── anim.json
│ │ │ │ │ ├── color.json
│ │ │ │ │ ├── color-v11.json
│ │ │ │ │ ├── color-v23.json
│ │ │ │ │ ├── drawable-hdpi-v4.json
│ │ │ │ │ ├── drawable.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-v21.json
│ │ │ │ │ ├── drawable-v23.json
│ │ │ │ │ ├── drawable-xhdpi-v4.json
│ │ │ │ │ ├── drawable-xxhdpi-v4.json
│ │ │ │ │ ├── drawable-xxxhdpi-v4.json
│ │ │ │ │ ├── layout.json
│ │ │ │ │ ├── layout-v16.json
│ │ │ │ │ ├── layout-v21.json
│ │ │ │ │ ├── layout-v26.json
│ │ │ │ │ ├── mipmap-hdpi-v4.json
│ │ │ │ │ ├── mipmap-mdpi-v4.json
│ │ │ │ │ ├── mipmap-xhdpi-v4.json
│ │ │ │ │ ├── mipmap-xxhdpi-v4.json
│ │ │ │ │ ├── mipmap-xxxhdpi-v4.json
│ │ │ │ │ └── xml.json
│ │ │ │ └── release
│ │ │ │ ├── multi
│ │ │ │ │ ├── values-af.json
│ │ │ │ │ ├── values-am.json
│ │ │ │ │ ├── values-ar.json
│ │ │ │ │ ├── values-az.json
│ │ │ │ │ ├── values-be.json
│ │ │ │ │ ├── values-bg.json
│ │ │ │ │ ├── values-bn.json
│ │ │ │ │ ├── values-bs.json
│ │ │ │ │ ├── values-b+sr+Latn.json
│ │ │ │ │ ├── values-ca.json
│ │ │ │ │ ├── values-cs.json
│ │ │ │ │ ├── values-da.json
│ │ │ │ │ ├── values-de.json
│ │ │ │ │ ├── values-el.json
│ │ │ │ │ ├── values-en.json
│ │ │ │ │ ├── values-en-rAU.json
│ │ │ │ │ ├── values-en-rCA.json
│ │ │ │ │ ├── values-en-rGB.json
│ │ │ │ │ ├── values-en-rIN.json
│ │ │ │ │ ├── values-en-rXC.json
│ │ │ │ │ ├── values-es.json
│ │ │ │ │ ├── values-es-rUS.json
│ │ │ │ │ ├── values-et.json
│ │ │ │ │ ├── values-eu.json
│ │ │ │ │ ├── values-fa.json
│ │ │ │ │ ├── values-fi.json
│ │ │ │ │ ├── values-fr.json
│ │ │ │ │ ├── values-fr-rCA.json
│ │ │ │ │ ├── values-gl.json
│ │ │ │ │ ├── values-gu.json
│ │ │ │ │ ├── values-h720dp-v13.json
│ │ │ │ │ ├── values-hdpi-v4.json
│ │ │ │ │ ├── values-hi.json
│ │ │ │ │ ├── values-hr.json
│ │ │ │ │ ├── values-hu.json
│ │ │ │ │ ├── values-hy.json
│ │ │ │ │ ├── values-in.json
│ │ │ │ │ ├── values-is.json
│ │ │ │ │ ├── values-it.json
│ │ │ │ │ ├── values-iw.json
│ │ │ │ │ ├── values-ja.json
│ │ │ │ │ ├── values.json
│ │ │ │ │ ├── values-ka.json
│ │ │ │ │ ├── values-kk.json
│ │ │ │ │ ├── values-km.json
│ │ │ │ │ ├── values-kn.json
│ │ │ │ │ ├── values-ko.json
│ │ │ │ │ ├── values-ky.json
│ │ │ │ │ ├── values-land.json
│ │ │ │ │ ├── values-large-v4.json
│ │ │ │ │ ├── values-ldltr-v21.json
│ │ │ │ │ ├── values-lo.json
│ │ │ │ │ ├── values-lt.json
│ │ │ │ │ ├── values-lv.json
│ │ │ │ │ ├── values-mk.json
│ │ │ │ │ ├── values-ml.json
│ │ │ │ │ ├── values-mn.json
│ │ │ │ │ ├── values-mr.json
│ │ │ │ │ ├── values-ms.json
│ │ │ │ │ ├── values-my.json
│ │ │ │ │ ├── values-nb.json
│ │ │ │ │ ├── values-ne.json
│ │ │ │ │ ├── values-night-v8.json
│ │ │ │ │ ├── values-nl.json
│ │ │ │ │ ├── values-pa.json
│ │ │ │ │ ├── values-pl.json
│ │ │ │ │ ├── values-port.json
│ │ │ │ │ ├── values-pt.json
│ │ │ │ │ ├── values-pt-rBR.json
│ │ │ │ │ ├── values-pt-rPT.json
│ │ │ │ │ ├── values-ro.json
│ │ │ │ │ ├── values-ru.json
│ │ │ │ │ ├── values-si.json
│ │ │ │ │ ├── values-sk.json
│ │ │ │ │ ├── values-sl.json
│ │ │ │ │ ├── values-sq.json
│ │ │ │ │ ├── values-sr.json
│ │ │ │ │ ├── values-sv.json
│ │ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ │ ├── values-sw.json
│ │ │ │ │ ├── values-ta.json
│ │ │ │ │ ├── values-te.json
│ │ │ │ │ ├── values-th.json
│ │ │ │ │ ├── values-tl.json
│ │ │ │ │ ├── values-tr.json
│ │ │ │ │ ├── values-uk.json
│ │ │ │ │ ├── values-ur.json
│ │ │ │ │ ├── values-uz.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-v26.json
│ │ │ │ │ ├── values-vi.json
│ │ │ │ │ ├── values-w820dp-v13.json
│ │ │ │ │ ├── values-xlarge-v4.json
│ │ │ │ │ ├── values-zh-rCN.json
│ │ │ │ │ ├── values-zh-rHK.json
│ │ │ │ │ ├── values-zh-rTW.json
│ │ │ │ │ └── values-zu.json
│ │ │ │ └── single
│ │ │ │ ├── anim.json
│ │ │ │ ├── color.json
│ │ │ │ ├── color-v11.json
│ │ │ │ ├── color-v23.json
│ │ │ │ ├── drawable-hdpi-v4.json
│ │ │ │ ├── drawable.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-v21.json
│ │ │ │ ├── drawable-v23.json
│ │ │ │ ├── drawable-xhdpi-v4.json
│ │ │ │ ├── drawable-xxhdpi-v4.json
│ │ │ │ ├── drawable-xxxhdpi-v4.json
│ │ │ │ ├── layout.json
│ │ │ │ ├── layout-v16.json
│ │ │ │ ├── layout-v21.json
│ │ │ │ ├── layout-v26.json
│ │ │ │ ├── mipmap-hdpi-v4.json
│ │ │ │ ├── mipmap-mdpi-v4.json
│ │ │ │ ├── mipmap-xhdpi-v4.json
│ │ │ │ ├── mipmap-xxhdpi-v4.json
│ │ │ │ ├── mipmap-xxxhdpi-v4.json
│ │ │ │ └── xml.json
│ │ │ ├── bundles
│ │ │ │ ├── debug
│ │ │ │ │ ├── aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── assets
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── drawable
│ │ │ │ │ │ │ └── progressbar_horizontal.xml
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── activity_version_dialog.xml
│ │ │ │ │ │ │ └── downloading_layout.xml
│ │ │ │ │ │ ├── mipmap-hdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-mdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xxhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xxxhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-en
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ │ └── xml
│ │ │ │ │ │ └── versionchecklib_file_paths.xml
│ │ │ │ │ └── R.txt
│ │ │ │ └── release
│ │ │ │ ├── aidl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── assets
│ │ │ │ ├── classes.jar
│ │ │ │ ├── jni
│ │ │ │ ├── libs
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ └── progressbar_horizontal.xml
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── activity_version_dialog.xml
│ │ │ │ │ │ └── downloading_layout.xml
│ │ │ │ │ ├── mipmap-hdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-mdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xhdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxhdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxxhdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-en
│ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ └── xml
│ │ │ │ │ └── versionchecklib_file_paths.xml
│ │ │ │ └── R.txt
│ │ │ ├── classes
│ │ │ │ └── release
│ │ │ │ ├── android
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreui
│ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreutils
│ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── fragment
│ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── 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$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── allenliu
│ │ │ │ └── versionchecklib
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── callback
│ │ │ │ │ ├── APKDownloadListener.class
│ │ │ │ │ ├── CommitClickListener.class
│ │ │ │ │ ├── DialogDismissListener.class
│ │ │ │ │ └── DownloadListener.class
│ │ │ │ ├── core
│ │ │ │ │ ├── AllenChecker.class
│ │ │ │ │ ├── AVersionService$1$1.class
│ │ │ │ │ ├── AVersionService$1.class
│ │ │ │ │ ├── AVersionService$2.class
│ │ │ │ │ ├── AVersionService$3.class
│ │ │ │ │ ├── AVersionService$VersionBroadCastReceiver.class
│ │ │ │ │ ├── AVersionService.class
│ │ │ │ │ ├── DownloadManager$1.class
│ │ │ │ │ ├── DownloadManager$2.class
│ │ │ │ │ ├── DownloadManager.class
│ │ │ │ │ ├── http
│ │ │ │ │ │ ├── AllenHttp$1.class
│ │ │ │ │ │ ├── AllenHttp$TrustAllCerts.class
│ │ │ │ │ │ ├── AllenHttp$TrustAllHostnameVerifier.class
│ │ │ │ │ │ ├── AllenHttp.class
│ │ │ │ │ │ ├── FileCallBack$1.class
│ │ │ │ │ │ ├── FileCallBack$2.class
│ │ │ │ │ │ ├── FileCallBack$3.class
│ │ │ │ │ │ ├── FileCallBack$4.class
│ │ │ │ │ │ ├── FileCallBack.class
│ │ │ │ │ │ ├── HttpHeaders.class
│ │ │ │ │ │ ├── HttpParams.class
│ │ │ │ │ │ └── HttpRequestMethod.class
│ │ │ │ │ ├── MyService.class
│ │ │ │ │ ├── PermissionDialogActivity.class
│ │ │ │ │ ├── VersionDialogActivity$1.class
│ │ │ │ │ ├── VersionDialogActivity$2.class
│ │ │ │ │ ├── VersionDialogActivity$3.class
│ │ │ │ │ ├── VersionDialogActivity$4.class
│ │ │ │ │ ├── VersionDialogActivity.class
│ │ │ │ │ ├── VersionFileProvider.class
│ │ │ │ │ ├── VersionParams$1.class
│ │ │ │ │ ├── VersionParams$Builder.class
│ │ │ │ │ └── VersionParams.class
│ │ │ │ ├── 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$mipmap.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R$xml.class
│ │ │ │ ├── R.class
│ │ │ │ └── utils
│ │ │ │ ├── ALog.class
│ │ │ │ ├── AppUtils.class
│ │ │ │ └── FileHelper.class
│ │ │ ├── dependency-cache
│ │ │ │ └── release
│ │ │ ├── exploded-aar
│ │ │ │ ├── android.arch.lifecycle
│ │ │ │ │ └── runtime
│ │ │ │ │ └── 1.0.0
│ │ │ │ │ ├── aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── assets
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── jni
│ │ │ │ │ ├── libs
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── res
│ │ │ │ │ └── R.txt
│ │ │ │ ├── com.android.support
│ │ │ │ │ ├── animated-vector-drawable
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── appcompat-v7
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── public.txt
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ │ ├── tooltip_enter.xml
│ │ │ │ │ │ │ │ └── tooltip_exit.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_track.xml
│ │ │ │ │ │ │ │ ├── switch_thumb_material_dark.xml
│ │ │ │ │ │ │ │ └── switch_thumb_material_light.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_track.xml
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ │ ├── tooltip_frame_dark.xml
│ │ │ │ │ │ │ │ └── tooltip_frame_light.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_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
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml
│ │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ │ │ └── abc_edit_text_material.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_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
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ │ ├── abc_action_bar_title_item.xml
│ │ │ │ │ │ │ │ ├── abc_action_bar_up_container.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_list_item.xml
│ │ │ │ │ │ │ │ ├── abc_activity_chooser_view.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_overlay_action_mode.xml
│ │ │ │ │ │ │ │ ├── abc_screen_simple.xml
│ │ │ │ │ │ │ │ ├── abc_screen_toolbar.xml
│ │ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ │ │ │ │ │ │ ├── abc_search_view.xml
│ │ │ │ │ │ │ │ ├── abc_select_dialog_material.xml
│ │ │ │ │ │ │ │ ├── select_dialog_item_material.xml
│ │ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml
│ │ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml
│ │ │ │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml
│ │ │ │ │ │ │ │ └── tooltip.xml
│ │ │ │ │ │ │ ├── layout-v26
│ │ │ │ │ │ │ │ └── abc_screen_toolbar.xml
│ │ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ │ └── values-b+sr+Latn.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-rCA
│ │ │ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ │ └── values-zu
│ │ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── support-compat
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ │ └── android
│ │ │ │ │ │ │ └── support
│ │ │ │ │ │ │ └── v4
│ │ │ │ │ │ │ └── os
│ │ │ │ │ │ │ └── ResultReceiver.aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── public.txt
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ │ ├── drawable
│ │ │ │ │ │ │ │ ├── notification_bg_low.xml
│ │ │ │ │ │ │ │ ├── notification_bg.xml
│ │ │ │ │ │ │ │ ├── notification_icon_background.xml
│ │ │ │ │ │ │ │ └── notification_tile_bg.xml
│ │ │ │ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ │ │ └── notification_action_background.xml
│ │ │ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml
│ │ │ │ │ │ │ │ └── notification_template_part_time.xml
│ │ │ │ │ │ │ ├── layout-v16
│ │ │ │ │ │ │ │ └── notification_template_custom_big.xml
│ │ │ │ │ │ │ ├── layout-v21
│ │ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ │ └── notification_template_icon_group.xml
│ │ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ │ └── values-gu.xml
│ │ │ │ │ │ │ ├── values-hi
│ │ │ │ │ │ │ │ └── values-hi.xml
│ │ │ │ │ │ │ ├── values-hr
│ │ │ │ │ │ │ │ └── values-hr.xml
│ │ │ │ │ │ │ ├── values-hu
│ │ │ │ │ │ │ │ └── values-hu.xml
│ │ │ │ │ │ │ ├── values-hy
│ │ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ │ └── values-uz.xml
│ │ │ │ │ │ │ ├── values-v16
│ │ │ │ │ │ │ │ └── values-v16.xml
│ │ │ │ │ │ │ ├── values-v21
│ │ │ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ │ └── values-zu
│ │ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── support-core-ui
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── support-core-utils
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── support-fragment
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ └── support-vector-drawable
│ │ │ │ │ └── 27.0.0
│ │ │ │ │ ├── aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── assets
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── jni
│ │ │ │ │ ├── libs
│ │ │ │ │ ├── res
│ │ │ │ │ └── R.txt
│ │ │ │ └── com.android.support.constraint
│ │ │ │ └── constraint-layout
│ │ │ │ └── 1.0.2
│ │ │ │ ├── aidl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── assets
│ │ │ │ ├── jars
│ │ │ │ │ └── classes.jar
│ │ │ │ ├── jni
│ │ │ │ ├── libs
│ │ │ │ ├── res
│ │ │ │ │ └── values
│ │ │ │ │ └── values.xml
│ │ │ │ └── R.txt
│ │ │ ├── incremental
│ │ │ │ ├── compileDebugAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileReleaseAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ │ ├── aapt-temp
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ │ ├── values-en-rCA
│ │ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ └── values-zu
│ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugResources
│ │ │ │ │ ├── aapt-temp
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ │ ├── values-en-rCA
│ │ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ └── values-zu
│ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseResources
│ │ │ │ │ ├── aapt-temp
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ │ ├── values-en-rCA
│ │ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ └── values-zu
│ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── packageDebugAndroidTest
│ │ │ │ │ └── zip-cache
│ │ │ │ ├── packageDebugResources
│ │ │ │ │ ├── aapt-temp
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-en
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ └── values-w820dp-v13
│ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── packageReleaseResources
│ │ │ │ │ ├── aapt-temp
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-en
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ └── values-w820dp-v13
│ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── processDebugAndroidTestResources
│ │ │ │ │ └── aapt-temp
│ │ │ │ ├── processDebugResources
│ │ │ │ │ └── aapt-temp
│ │ │ │ └── processReleaseResources
│ │ │ │ └── aapt-temp
│ │ │ ├── incremental-safeguard
│ │ │ │ └── release
│ │ │ │ └── tag.txt
│ │ │ ├── jniLibs
│ │ │ │ └── release
│ │ │ ├── lint
│ │ │ ├── manifest
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── tmp
│ │ │ ├── manifests
│ │ │ │ └── aapt
│ │ │ │ ├── debug
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── release
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── res
│ │ │ │ ├── merged
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── 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
│ │ │ │ │ │ │ ├── tooltip_enter.xml
│ │ │ │ │ │ │ └── tooltip_exit.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_track.xml
│ │ │ │ │ │ │ ├── switch_thumb_material_dark.xml
│ │ │ │ │ │ │ └── switch_thumb_material_light.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_track.xml
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── notification_bg_low.xml
│ │ │ │ │ │ │ ├── notification_bg.xml
│ │ │ │ │ │ │ ├── notification_icon_background.xml
│ │ │ │ │ │ │ ├── notification_tile_bg.xml
│ │ │ │ │ │ │ ├── progressbar_horizontal.xml
│ │ │ │ │ │ │ ├── tooltip_frame_dark.xml
│ │ │ │ │ │ │ └── tooltip_frame_light.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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml
│ │ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ │ ├── abc_edit_text_material.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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── abc_action_bar_title_item.xml
│ │ │ │ │ │ │ ├── abc_action_bar_up_container.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_list_item.xml
│ │ │ │ │ │ │ ├── abc_activity_chooser_view.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_overlay_action_mode.xml
│ │ │ │ │ │ │ ├── abc_screen_simple.xml
│ │ │ │ │ │ │ ├── abc_screen_toolbar.xml
│ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ │ │ │ │ │ ├── abc_search_view.xml
│ │ │ │ │ │ │ ├── abc_select_dialog_material.xml
│ │ │ │ │ │ │ ├── activity_version_dialog.xml
│ │ │ │ │ │ │ ├── downloading_layout.xml
│ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml
│ │ │ │ │ │ │ ├── notification_template_part_time.xml
│ │ │ │ │ │ │ ├── select_dialog_item_material.xml
│ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml
│ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml
│ │ │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml
│ │ │ │ │ │ │ └── tooltip.xml
│ │ │ │ │ │ ├── layout-v16
│ │ │ │ │ │ │ └── notification_template_custom_big.xml
│ │ │ │ │ │ ├── layout-v21
│ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ └── notification_template_icon_group.xml
│ │ │ │ │ │ ├── layout-v26
│ │ │ │ │ │ │ └── abc_screen_toolbar.xml
│ │ │ │ │ │ ├── mipmap-hdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-mdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xxhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xxxhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ │ ├── values-en-rCA
│ │ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ ├── values-zu
│ │ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ │ └── xml
│ │ │ │ │ │ └── versionchecklib_file_paths.xml
│ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── tooltip_enter.xml
│ │ │ │ │ │ │ └── tooltip_exit.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_track.xml
│ │ │ │ │ │ │ ├── switch_thumb_material_dark.xml
│ │ │ │ │ │ │ └── switch_thumb_material_light.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_track.xml
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── notification_bg_low.xml
│ │ │ │ │ │ │ ├── notification_bg.xml
│ │ │ │ │ │ │ ├── notification_icon_background.xml
│ │ │ │ │ │ │ ├── notification_tile_bg.xml
│ │ │ │ │ │ │ ├── progressbar_horizontal.xml
│ │ │ │ │ │ │ ├── tooltip_frame_dark.xml
│ │ │ │ │ │ │ └── tooltip_frame_light.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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml
│ │ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ │ ├── abc_edit_text_material.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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── abc_action_bar_title_item.xml
│ │ │ │ │ │ │ ├── abc_action_bar_up_container.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_list_item.xml
│ │ │ │ │ │ │ ├── abc_activity_chooser_view.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_overlay_action_mode.xml
│ │ │ │ │ │ │ ├── abc_screen_simple.xml
│ │ │ │ │ │ │ ├── abc_screen_toolbar.xml
│ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ │ │ │ │ │ ├── abc_search_view.xml
│ │ │ │ │ │ │ ├── abc_select_dialog_material.xml
│ │ │ │ │ │ │ ├── activity_version_dialog.xml
│ │ │ │ │ │ │ ├── downloading_layout.xml
│ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml
│ │ │ │ │ │ │ ├── notification_template_part_time.xml
│ │ │ │ │ │ │ ├── select_dialog_item_material.xml
│ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml
│ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml
│ │ │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml
│ │ │ │ │ │ │ └── tooltip.xml
│ │ │ │ │ │ ├── layout-v16
│ │ │ │ │ │ │ └── notification_template_custom_big.xml
│ │ │ │ │ │ ├── layout-v21
│ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ └── notification_template_icon_group.xml
│ │ │ │ │ │ ├── layout-v26
│ │ │ │ │ │ │ └── abc_screen_toolbar.xml
│ │ │ │ │ │ ├── mipmap-hdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-mdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xxhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xxxhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ │ ├── values-en-rCA
│ │ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ ├── values-zu
│ │ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ │ └── xml
│ │ │ │ │ │ └── versionchecklib_file_paths.xml
│ │ │ │ │ └── release
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── tooltip_enter.xml
│ │ │ │ │ │ └── tooltip_exit.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_track.xml
│ │ │ │ │ │ ├── switch_thumb_material_dark.xml
│ │ │ │ │ │ └── switch_thumb_material_light.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_track.xml
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── notification_bg_low.xml
│ │ │ │ │ │ ├── notification_bg.xml
│ │ │ │ │ │ ├── notification_icon_background.xml
│ │ │ │ │ │ ├── notification_tile_bg.xml
│ │ │ │ │ │ ├── progressbar_horizontal.xml
│ │ │ │ │ │ ├── tooltip_frame_dark.xml
│ │ │ │ │ │ └── tooltip_frame_light.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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml
│ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ ├── abc_edit_text_material.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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── abc_action_bar_title_item.xml
│ │ │ │ │ │ ├── abc_action_bar_up_container.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_list_item.xml
│ │ │ │ │ │ ├── abc_activity_chooser_view.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_overlay_action_mode.xml
│ │ │ │ │ │ ├── abc_screen_simple.xml
│ │ │ │ │ │ ├── abc_screen_toolbar.xml
│ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ │ │ │ │ ├── abc_search_view.xml
│ │ │ │ │ │ ├── abc_select_dialog_material.xml
│ │ │ │ │ │ ├── activity_version_dialog.xml
│ │ │ │ │ │ ├── downloading_layout.xml
│ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ │ ├── notification_template_part_chronometer.xml
│ │ │ │ │ │ ├── notification_template_part_time.xml
│ │ │ │ │ │ ├── select_dialog_item_material.xml
│ │ │ │ │ │ ├── select_dialog_multichoice_material.xml
│ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml
│ │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml
│ │ │ │ │ │ └── tooltip.xml
│ │ │ │ │ ├── layout-v16
│ │ │ │ │ │ └── notification_template_custom_big.xml
│ │ │ │ │ ├── layout-v21
│ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ └── notification_template_icon_group.xml
│ │ │ │ │ ├── layout-v26
│ │ │ │ │ │ └── abc_screen_toolbar.xml
│ │ │ │ │ ├── mipmap-hdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-mdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xhdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxhdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxxhdpi-v4
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-af
│ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ ├── values-am
│ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ ├── values-ar
│ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ ├── values-az
│ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ ├── values-be
│ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ ├── values-bg
│ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ ├── values-bn
│ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ ├── values-bs
│ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ ├── values-en-rCA
│ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ ├── values-es
│ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ ├── values-et
│ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ ├── values-eu
│ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ ├── values-fa
│ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ ├── values-fi
│ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ ├── values-fr
│ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ ├── values-gl
│ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ ├── values-gu
│ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ ├── values-in
│ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ ├── values-is
│ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ ├── values-it
│ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ ├── values-iw
│ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ ├── values-ja
│ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ ├── values-ka
│ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ ├── values-kk
│ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ ├── values-km
│ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ ├── values-kn
│ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ ├── values-ko
│ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ ├── values-ky
│ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ ├── values-land
│ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ ├── values-lo
│ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ ├── values-lt
│ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ ├── values-lv
│ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ ├── values-mk
│ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ ├── values-ml
│ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ ├── values-mn
│ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ ├── values-mr
│ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ ├── values-ms
│ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ ├── values-my
│ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ ├── values-nb
│ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ ├── values-ne
│ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ ├── values-nl
│ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ ├── values-pa
│ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ ├── values-pl
│ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ ├── values-port
│ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ ├── values-pt
│ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ ├── values-ro
│ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ ├── values-ru
│ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ ├── values-si
│ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ ├── values-sk
│ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ ├── values-sl
│ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ ├── values-sq
│ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ ├── values-sr
│ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ ├── values-sv
│ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ ├── values-sw
│ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ ├── values-ta
│ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ ├── values-te
│ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ ├── values-th
│ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ ├── values-tl
│ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ ├── values-tr
│ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ ├── values-uk
│ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ ├── values-ur
│ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ ├── values-uz
│ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ ├── values-vi
│ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ ├── values-zu
│ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ └── xml
│ │ │ │ │ └── versionchecklib_file_paths.xml
│ │ │ │ └── resources-debug-androidTest.ap_
│ │ │ ├── rs
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── lib
│ │ │ │ │ └── obj
│ │ │ │ ├── debug
│ │ │ │ │ ├── lib
│ │ │ │ │ └── obj
│ │ │ │ └── release
│ │ │ │ ├── lib
│ │ │ │ └── obj
│ │ │ ├── shaders
│ │ │ │ ├── debug
│ │ │ │ └── release
│ │ │ ├── symbols
│ │ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ └── R.txt
│ │ │ ├── transforms
│ │ │ │ ├── mergeJavaRes
│ │ │ │ │ └── release
│ │ │ │ └── mergeJniLibs
│ │ │ │ └── release
│ │ │ └── typedefs.txt
│ │ ├── outputs
│ │ │ └── aar
│ │ │ ├── library-debug.aar
│ │ │ └── library-release.aar
│ │ └── tmp
│ │ ├── compileReleaseJavaWithJavac
│ │ │ └── emptySourcePathRef
│ │ └── expandedArchives
│ │ ├── classes.jar_2ihw3spkknsiv4q3wu0zm32vq
│ │ │ └── android
│ │ │ └── support
│ │ │ └── graphics
│ │ │ └── drawable
│ │ │ ├── Animatable2Compat$AnimationCallback$1.class
│ │ │ ├── Animatable2Compat$AnimationCallback.class
│ │ │ ├── Animatable2Compat.class
│ │ │ ├── animated
│ │ │ │ └── BuildConfig.class
│ │ │ ├── AnimatedVectorDrawableCompat$1.class
│ │ │ ├── AnimatedVectorDrawableCompat$2.class
│ │ │ ├── AnimatedVectorDrawableCompat$AnimatedVectorDrawableCompatState.class
│ │ │ ├── AnimatedVectorDrawableCompat$AnimatedVectorDrawableDelegateState.class
│ │ │ ├── AnimatedVectorDrawableCompat.class
│ │ │ ├── AnimationUtilsCompat.class
│ │ │ ├── AnimatorInflaterCompat$1.class
│ │ │ ├── AnimatorInflaterCompat$PathDataEvaluator.class
│ │ │ ├── AnimatorInflaterCompat.class
│ │ │ ├── ArgbEvaluator.class
│ │ │ └── PathInterpolatorCompat.class
│ │ ├── classes.jar_39svg45zureexvugwg7rgv87u
│ │ │ └── android
│ │ │ └── support
│ │ │ └── graphics
│ │ │ └── drawable
│ │ │ ├── AndroidResources.class
│ │ │ ├── BuildConfig.class
│ │ │ ├── VectorDrawableCommon.class
│ │ │ ├── VectorDrawableCompat$VClipPath.class
│ │ │ ├── VectorDrawableCompat$VectorDrawableCompatState.class
│ │ │ ├── VectorDrawableCompat$VectorDrawableDelegateState.class
│ │ │ ├── VectorDrawableCompat$VFullPath.class
│ │ │ ├── VectorDrawableCompat$VGroup.class
│ │ │ ├── VectorDrawableCompat$VPath.class
│ │ │ ├── VectorDrawableCompat$VPathRenderer.class
│ │ │ └── VectorDrawableCompat.class
│ │ ├── classes.jar_3htu29ul4c3dcug5qm6s3nuq0
│ │ │ └── android
│ │ │ └── support
│ │ │ ├── coreui
│ │ │ │ └── BuildConfig.class
│ │ │ └── v4
│ │ │ ├── app
│ │ │ │ ├── ActionBarDrawerToggle$Delegate.class
│ │ │ │ ├── ActionBarDrawerToggle$DelegateProvider.class
│ │ │ │ ├── ActionBarDrawerToggle$SetIndicatorInfo.class
│ │ │ │ ├── ActionBarDrawerToggle$SlideDrawable.class
│ │ │ │ └── ActionBarDrawerToggle.class
│ │ │ ├── view
│ │ │ │ ├── AbsSavedState$1.class
│ │ │ │ ├── AbsSavedState$2.class
│ │ │ │ ├── AbsSavedState.class
│ │ │ │ ├── animation
│ │ │ │ │ ├── FastOutLinearInInterpolator.class
│ │ │ │ │ ├── FastOutSlowInInterpolator.class
│ │ │ │ │ ├── LinearOutSlowInInterpolator.class
│ │ │ │ │ └── LookupTableInterpolator.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$SingleLineAllCapsTransform.class
│ │ │ │ ├── PagerTitleStrip.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$PagerObserver.class
│ │ │ │ ├── ViewPager$PageTransformer.class
│ │ │ │ ├── ViewPager$SavedState$1.class
│ │ │ │ ├── ViewPager$SavedState.class
│ │ │ │ ├── ViewPager$SimpleOnPageChangeListener.class
│ │ │ │ ├── ViewPager$ViewPositionComparator.class
│ │ │ │ └── ViewPager.class
│ │ │ └── widget
│ │ │ ├── AutoScrollHelper$ClampedScroller.class
│ │ │ ├── AutoScrollHelper$ScrollAnimationRunnable.class
│ │ │ ├── AutoScrollHelper.class
│ │ │ ├── CircleImageView$OvalShadow.class
│ │ │ ├── CircleImageView.class
│ │ │ ├── CircularProgressDrawable$1.class
│ │ │ ├── CircularProgressDrawable$2.class
│ │ │ ├── CircularProgressDrawable$ProgressDrawableSize.class
│ │ │ ├── CircularProgressDrawable$Ring.class
│ │ │ ├── CircularProgressDrawable.class
│ │ │ ├── ContentLoadingProgressBar$1.class
│ │ │ ├── ContentLoadingProgressBar$2.class
│ │ │ ├── ContentLoadingProgressBar.class
│ │ │ ├── CursorAdapter$ChangeObserver.class
│ │ │ ├── CursorAdapter$MyDataSetObserver.class
│ │ │ ├── CursorAdapter.class
│ │ │ ├── CursorFilter$CursorFilterClient.class
│ │ │ ├── CursorFilter.class
│ │ │ ├── DrawerLayout$1.class
│ │ │ ├── DrawerLayout$AccessibilityDelegate.class
│ │ │ ├── DrawerLayout$ChildAccessibilityDelegate.class
│ │ │ ├── DrawerLayout$DrawerListener.class
│ │ │ ├── DrawerLayout$EdgeGravity.class
│ │ │ ├── DrawerLayout$LayoutParams.class
│ │ │ ├── DrawerLayout$LockMode.class
│ │ │ ├── DrawerLayout$SavedState$1.class
│ │ │ ├── DrawerLayout$SavedState.class
│ │ │ ├── DrawerLayout$SimpleDrawerListener.class
│ │ │ ├── DrawerLayout$State.class
│ │ │ ├── DrawerLayout$ViewDragCallback$1.class
│ │ │ ├── DrawerLayout$ViewDragCallback.class
│ │ │ ├── DrawerLayout.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
│ │ │ ├── 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$SlidingPanelLayoutImplBase.class
│ │ │ ├── SlidingPaneLayout$SlidingPanelLayoutImpl.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_406p1v803un3ngkhayz0gxlzx
│ │ │ └── android
│ │ │ └── arch
│ │ │ └── lifecycle
│ │ │ ├── BuildConfig.class
│ │ │ ├── LifecycleRegistry$1.class
│ │ │ ├── LifecycleRegistry$ObserverWithState.class
│ │ │ ├── LifecycleRegistry.class
│ │ │ ├── LifecycleRegistryOwner.class
│ │ │ ├── ReportFragment$ActivityInitializationListener.class
│ │ │ └── ReportFragment.class
│ │ ├── classes.jar_4nu0f5a5t8mwpb5le424lxbwi
│ │ │ └── android
│ │ │ └── support
│ │ │ └── constraint
│ │ │ ├── BuildConfig.class
│ │ │ ├── ConstraintLayout$LayoutParams.class
│ │ │ ├── ConstraintLayout.class
│ │ │ ├── ConstraintSet$1.class
│ │ │ ├── ConstraintSet$Constraint.class
│ │ │ ├── ConstraintSet.class
│ │ │ └── Guideline.class
│ │ ├── classes.jar_9q1ivi70lmb4jmafx6uv2leu1
│ │ │ └── android
│ │ │ └── support
│ │ │ ├── coreutils
│ │ │ │ └── BuildConfig.class
│ │ │ └── v4
│ │ │ ├── app
│ │ │ │ ├── AppLaunchChecker.class
│ │ │ │ ├── FrameMetricsAggregator$1.class
│ │ │ │ ├── FrameMetricsAggregator$FrameMetricsApi24Impl$1.class
│ │ │ │ ├── FrameMetricsAggregator$FrameMetricsApi24Impl.class
│ │ │ │ ├── FrameMetricsAggregator$FrameMetricsBaseImpl.class
│ │ │ │ ├── FrameMetricsAggregator$MetricType.class
│ │ │ │ ├── FrameMetricsAggregator.class
│ │ │ │ ├── NavUtils.class
│ │ │ │ ├── TaskStackBuilder$SupportParentable.class
│ │ │ │ ├── TaskStackBuilder$TaskStackBuilderApi16Impl.class
│ │ │ │ ├── TaskStackBuilder$TaskStackBuilderBaseImpl.class
│ │ │ │ └── TaskStackBuilder.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
│ │ │ │ ├── MimeTypeFilter.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
│ │ │ │ ├── PermissionChecker$PermissionResult.class
│ │ │ │ ├── PermissionChecker.class
│ │ │ │ └── WakefulBroadcastReceiver.class
│ │ │ ├── graphics
│ │ │ │ ├── ColorUtils.class
│ │ │ │ └── drawable
│ │ │ │ ├── RoundedBitmapDrawable21.class
│ │ │ │ ├── RoundedBitmapDrawable.class
│ │ │ │ ├── RoundedBitmapDrawableFactory$DefaultRoundedBitmapDrawable.class
│ │ │ │ └── RoundedBitmapDrawableFactory.class
│ │ │ ├── math
│ │ │ │ └── MathUtils.class
│ │ │ │ ├── PrintHelper$1.class
│ │ │ │ ├── PrintHelper$ColorMode.class
│ │ │ │ ├── PrintHelper$OnPrintFinishCallback.class
│ │ │ │ ├── PrintHelper$Orientation.class
│ │ │ │ ├── PrintHelper$PrintHelperApi19$1.class
│ │ │ │ ├── PrintHelper$PrintHelperApi19$2.class
│ │ │ │ ├── PrintHelper$PrintHelperApi19$3$1$1.class
│ │ │ │ ├── PrintHelper$PrintHelperApi19$3$1.class
│ │ │ │ ├── PrintHelper$PrintHelperApi19$3.class
│ │ │ │ ├── PrintHelper$PrintHelperApi19.class
│ │ │ │ ├── PrintHelper$PrintHelperApi20.class
│ │ │ │ ├── PrintHelper$PrintHelperApi23.class
│ │ │ │ ├── PrintHelper$PrintHelperApi24.class
│ │ │ │ ├── PrintHelper$PrintHelperStub.class
│ │ │ │ ├── PrintHelper$PrintHelperVersionImpl.class
│ │ │ │ ├── PrintHelper$ScaleMode.class
│ │ │ │ └── PrintHelper.class
│ │ │ └── provider
│ │ │ ├── DocumentFile.class
│ │ │ ├── DocumentsContractApi19.class
│ │ │ ├── RawDocumentFile.class
│ │ │ ├── SingleDocumentFile.class
│ │ │ └── TreeDocumentFile.class
│ │ ├── classes.jar_afmxyaxi0cfgxa8q98bly2so1
│ │ │ └── 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
│ │ │ │ ├── ActionBarDrawerToggle$1.class
│ │ │ │ ├── ActionBarDrawerToggle$Delegate.class
│ │ │ │ ├── ActionBarDrawerToggle$DelegateProvider.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$ApplyableNightMode.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
│ │ │ │ ├── ResourcesFlusher.class
│ │ │ │ ├── ToolbarActionBar$1.class
│ │ │ │ ├── ToolbarActionBar$2.class
│ │ │ │ ├── ToolbarActionBar$ActionMenuPresenterCallback.class
│ │ │ │ ├── ToolbarActionBar$MenuBuilderCallback.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
│ │ │ ├── view
│ │ │ │ ├── ActionBarPolicy.class
│ │ │ │ ├── ActionMode$Callback.class
│ │ │ │ ├── ActionMode.class
│ │ │ │ ├── CollapsibleActionView.class
│ │ │ │ ├── ContextThemeWrapper.class
│ │ │ │ ├── menu
│ │ │ │ │ ├── ActionMenuItem.class
│ │ │ │ │ ├── ActionMenuItemView$ActionMenuItemForwardingListener.class
│ │ │ │ │ ├── ActionMenuItemView$PopupCallback.class
│ │ │ │ │ ├── ActionMenuItemView.class
│ │ │ │ │ ├── BaseMenuPresenter.class
│ │ │ │ │ ├── BaseMenuWrapper.class
│ │ │ │ │ ├── BaseWrapper.class
│ │ │ │ │ ├── CascadingMenuPopup$1.class
│ │ │ │ │ ├── CascadingMenuPopup$2.class
│ │ │ │ │ ├── CascadingMenuPopup$3$1.class
│ │ │ │ │ ├── CascadingMenuPopup$3.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$2.class
│ │ │ │ │ ├── StandardMenuPopup.class
│ │ │ │ │ ├── SubMenuBuilder.class
│ │ │ │ │ └── SubMenuWrapperICS.class
│ │ │ │ ├── StandaloneActionMode.class
│ │ │ │ ├── SupportActionModeWrapper$CallbackWrapper.class
│ │ │ │ ├── SupportActionModeWrapper.class
│ │ │ │ ├── SupportMenuInflater$InflatedOnMenuItemClickListener.class
│ │ │ │ ├── SupportMenuInflater$MenuState.class
│ │ │ │ ├── SupportMenuInflater.class
│ │ │ │ ├── ViewPropertyAnimatorCompatSet$1.class
│ │ │ │ ├── ViewPropertyAnimatorCompatSet.class
│ │ │ │ └── WindowCallbackWrapper.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$5.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.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$1.class
│ │ │ ├── AppCompatTextHelper.class
│ │ │ ├── AppCompatTextHelperV17.class
│ │ │ ├── AppCompatTextViewAutoSizeHelper.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$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$10.class
│ │ │ ├── SearchView$1.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$1.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.class
│ │ │ ├── ThemedSpinnerAdapter$Helper.class
│ │ │ ├── ThemedSpinnerAdapter.class
│ │ │ ├── ThemeUtils.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
│ │ │ ├── TooltipCompat$1.class
│ │ │ ├── TooltipCompat$Api26ViewCompatImpl.class
│ │ │ ├── TooltipCompat$BaseViewCompatImpl.class
│ │ │ ├── TooltipCompat$ViewCompatImpl.class
│ │ │ ├── TooltipCompat.class
│ │ │ ├── TooltipCompatHandler$1.class
│ │ │ ├── TooltipCompatHandler$2.class
│ │ │ ├── TooltipCompatHandler.class
│ │ │ ├── TooltipPopup.class
│ │ │ ├── VectorEnabledTintResources.class
│ │ │ ├── ViewStubCompat$OnInflateListener.class
│ │ │ ├── ViewStubCompat.class
│ │ │ └── ViewUtils.class
│ │ ├── classes.jar_d2j1kan9sl9r59aacald4dwdh
│ │ │ └── android
│ │ │ └── support
│ │ │ ├── compat
│ │ │ │ └── BuildConfig.class
│ │ │ └── v4
│ │ │ ├── accessibilityservice
│ │ │ │ └── AccessibilityServiceInfoCompat.class
│ │ │ ├── app
│ │ │ │ ├── ActivityCompat$1.class
│ │ │ │ ├── ActivityCompat$OnRequestPermissionsResultCallback.class
│ │ │ │ ├── ActivityCompat$PermissionCompatDelegate.class
│ │ │ │ ├── ActivityCompat$RequestPermissionsRequestCodeValidator.class
│ │ │ │ ├── ActivityCompat$SharedElementCallback21Impl.class
│ │ │ │ ├── ActivityCompat$SharedElementCallback23Impl$1.class
│ │ │ │ ├── ActivityCompat$SharedElementCallback23Impl.class
│ │ │ │ ├── ActivityCompat.class
│ │ │ │ ├── ActivityManagerCompat.class
│ │ │ │ ├── ActivityOptionsCompat$ActivityOptionsCompatApi16Impl.class
│ │ │ │ ├── ActivityOptionsCompat$ActivityOptionsCompatApi23Impl.class
│ │ │ │ ├── ActivityOptionsCompat$ActivityOptionsCompatApi24Impl.class
│ │ │ │ ├── ActivityOptionsCompat.class
│ │ │ │ ├── AlarmManagerCompat.class
│ │ │ │ ├── AppOpsManagerCompat.class
│ │ │ │ ├── BundleCompat$BundleCompatBaseImpl.class
│ │ │ │ ├── BundleCompat.class
│ │ │ │ ├── INotificationSideChannel$Stub$Proxy.class
│ │ │ │ ├── INotificationSideChannel$Stub.class
│ │ │ │ ├── INotificationSideChannel.class
│ │ │ │ ├── JobIntentService$CommandProcessor.class
│ │ │ │ ├── JobIntentService$CompatJobEngine.class
│ │ │ │ ├── JobIntentService$CompatWorkEnqueuer.class
│ │ │ │ ├── JobIntentService$CompatWorkItem.class
│ │ │ │ ├── JobIntentService$GenericWorkItem.class
│ │ │ │ ├── JobIntentService$JobServiceEngineImpl$WrapperWorkItem.class
│ │ │ │ ├── JobIntentService$JobServiceEngineImpl.class
│ │ │ │ ├── JobIntentService$JobWorkEnqueuer.class
│ │ │ │ ├── JobIntentService$WorkEnqueuer.class
│ │ │ │ ├── JobIntentService.class
│ │ │ │ ├── NotificationBuilderWithBuilderAccessor.class
│ │ │ │ ├── NotificationCompat$Action$Builder.class
│ │ │ │ ├── NotificationCompat$Action$Extender.class
│ │ │ │ ├── NotificationCompat$Action$WearableExtender.class
│ │ │ │ ├── NotificationCompat$Action.class
│ │ │ │ ├── NotificationCompat$BadgeIconType.class
│ │ │ │ ├── NotificationCompat$BigPictureStyle.class
│ │ │ │ ├── NotificationCompat$BigTextStyle.class
│ │ │ │ ├── NotificationCompat$Builder.class
│ │ │ │ ├── NotificationCompat$CarExtender$UnreadConversation$Builder.class
│ │ │ │ ├── NotificationCompat$CarExtender$UnreadConversation.class
│ │ │ │ ├── NotificationCompat$CarExtender.class
│ │ │ │ ├── NotificationCompat$DecoratedCustomViewStyle.class
│ │ │ │ ├── NotificationCompat$Extender.class
│ │ │ │ ├── NotificationCompat$GroupAlertBehavior.class
│ │ │ │ ├── NotificationCompat$InboxStyle.class
│ │ │ │ ├── NotificationCompat$MessagingStyle$Message.class
│ │ │ │ ├── NotificationCompat$MessagingStyle.class
│ │ │ │ ├── NotificationCompat$NotificationVisibility.class
│ │ │ │ ├── NotificationCompat$Style.class
│ │ │ │ ├── NotificationCompat$WearableExtender.class
│ │ │ │ ├── NotificationCompatBuilder.class
│ │ │ │ ├── NotificationCompat.class
│ │ │ │ ├── NotificationCompatExtras.class
│ │ │ │ ├── NotificationCompatJellybean.class
│ │ │ │ ├── NotificationCompatSideChannelService$NotificationSideChannelStub.class
│ │ │ │ ├── NotificationCompatSideChannelService.class
│ │ │ │ ├── NotificationManagerCompat$CancelTask.class
│ │ │ │ ├── NotificationManagerCompat$NotifyTask.class
│ │ │ │ ├── NotificationManagerCompat$ServiceConnectedEvent.class
│ │ │ │ ├── NotificationManagerCompat$SideChannelManager$ListenerRecord.class
│ │ │ │ ├── NotificationManagerCompat$SideChannelManager.class
│ │ │ │ ├── NotificationManagerCompat$Task.class
│ │ │ │ ├── NotificationManagerCompat.class
│ │ │ │ ├── RemoteInput$Builder.class
│ │ │ │ ├── RemoteInput.class
│ │ │ │ ├── RemoteInputCompatBase$RemoteInput$Factory.class
│ │ │ │ ├── RemoteInputCompatBase$RemoteInput.class
│ │ │ │ ├── RemoteInputCompatBase.class
│ │ │ │ ├── ServiceCompat$StopForegroundFlags.class
│ │ │ │ ├── ServiceCompat.class
│ │ │ │ ├── ShareCompat$IntentBuilder.class
│ │ │ │ ├── ShareCompat$IntentReader.class
│ │ │ │ ├── ShareCompat.class
│ │ │ │ ├── SharedElementCallback$OnSharedElementsReadyListener.class
│ │ │ │ ├── SharedElementCallback.class
│ │ │ │ ├── SupportActivity$ExtraData.class
│ │ │ │ └── SupportActivity.class
│ │ │ ├── content
│ │ │ │ ├── ContentResolverCompat.class
│ │ │ │ ├── ContextCompat.class
│ │ │ │ ├── IntentCompat.class
│ │ │ │ ├── pm
│ │ │ │ │ ├── ActivityInfoCompat.class
│ │ │ │ │ ├── ShortcutInfoCompat$1.class
│ │ │ │ │ ├── ShortcutInfoCompat$Builder.class
│ │ │ │ │ ├── ShortcutInfoCompat.class
│ │ │ │ │ ├── ShortcutManagerCompat$1.class
│ │ │ │ │ └── ShortcutManagerCompat.class
│ │ │ │ ├── res
│ │ │ │ │ ├── ConfigurationHelper.class
│ │ │ │ │ ├── FontResourcesParserCompat$FamilyResourceEntry.class
│ │ │ │ │ ├── FontResourcesParserCompat$FetchStrategy.class
│ │ │ │ │ ├── FontResourcesParserCompat$FontFamilyFilesResourceEntry.class
│ │ │ │ │ ├── FontResourcesParserCompat$FontFileResourceEntry.class
│ │ │ │ │ ├── FontResourcesParserCompat$ProviderResourceEntry.class
│ │ │ │ │ ├── FontResourcesParserCompat.class
│ │ │ │ │ ├── ResourcesCompat$FontCallback$1.class
│ │ │ │ │ ├── ResourcesCompat$FontCallback$2.class
│ │ │ │ │ ├── ResourcesCompat$FontCallback.class
│ │ │ │ │ ├── ResourcesCompat.class
│ │ │ │ │ └── TypedArrayUtils.class
│ │ │ │ ├── SharedPreferencesCompat$EditorCompat$Helper.class
│ │ │ │ ├── SharedPreferencesCompat$EditorCompat.class
│ │ │ │ └── SharedPreferencesCompat.class
│ │ │ ├── database
│ │ │ │ └── DatabaseUtilsCompat.class
│ │ │ ├── graphics
│ │ │ │ ├── BitmapCompat$BitmapCompatApi18Impl.class
│ │ │ │ ├── BitmapCompat$BitmapCompatApi19Impl.class
│ │ │ │ ├── BitmapCompat$BitmapCompatBaseImpl.class
│ │ │ │ ├── BitmapCompat.class
│ │ │ │ ├── drawable
│ │ │ │ │ ├── DrawableCompat.class
│ │ │ │ │ ├── DrawableWrapperApi14$DrawableWrapperStateBase.class
│ │ │ │ │ ├── DrawableWrapperApi14$DrawableWrapperState.class
│ │ │ │ │ ├── DrawableWrapperApi14.class
│ │ │ │ │ ├── DrawableWrapperApi19$DrawableWrapperStateKitKat.class
│ │ │ │ │ ├── DrawableWrapperApi19.class
│ │ │ │ │ ├── DrawableWrapperApi21$DrawableWrapperStateLollipop.class
│ │ │ │ │ ├── DrawableWrapperApi21.class
│ │ │ │ │ ├── DrawableWrapper.class
│ │ │ │ │ ├── IconCompat.class
│ │ │ │ │ └── TintAwareDrawable.class
│ │ │ │ ├── PaintCompat.class
│ │ │ │ ├── PathParser$ExtractFloatResult.class
│ │ │ │ ├── PathParser$PathDataNode.class
│ │ │ │ ├── PathParser.class
│ │ │ │ ├── TypefaceCompat$TypefaceCompatImpl.class
│ │ │ │ ├── TypefaceCompatApi21Impl.class
│ │ │ │ ├── TypefaceCompatApi24Impl.class
│ │ │ │ ├── TypefaceCompatApi26Impl.class
│ │ │ │ ├── TypefaceCompatBaseImpl$1.class
│ │ │ │ ├── TypefaceCompatBaseImpl$2.class
│ │ │ │ ├── TypefaceCompatBaseImpl$StyleExtractor.class
│ │ │ │ ├── TypefaceCompatBaseImpl.class
│ │ │ │ ├── TypefaceCompat.class
│ │ │ │ └── TypefaceCompatUtil.class
│ │ │ ├── hardware
│ │ │ │ ├── display
│ │ │ │ │ ├── DisplayManagerCompat$DisplayManagerCompatApi14Impl.class
│ │ │ │ │ ├── DisplayManagerCompat$DisplayManagerCompatApi17Impl.class
│ │ │ │ │ └── DisplayManagerCompat.class
│ │ │ │ └── fingerprint
│ │ │ │ ├── FingerprintManagerCompat$1.class
│ │ │ │ ├── FingerprintManagerCompat$AuthenticationCallback.class
│ │ │ │ ├── FingerprintManagerCompat$AuthenticationResult.class
│ │ │ │ ├── FingerprintManagerCompat$CryptoObject.class
│ │ │ │ └── FingerprintManagerCompat.class
│ │ │ ├── internal
│ │ │ │ ├── package-info.class
│ │ │ │ └── view
│ │ │ │ ├── SupportMenu.class
│ │ │ │ ├── SupportMenuItem.class
│ │ │ │ └── SupportSubMenu.class
│ │ │ ├── net
│ │ │ │ ├── ConnectivityManagerCompat$RestrictBackgroundStatus.class
│ │ │ │ ├── ConnectivityManagerCompat.class
│ │ │ │ ├── DatagramSocketWrapper$DatagramSocketImplWrapper.class
│ │ │ │ ├── DatagramSocketWrapper.class
│ │ │ │ └── TrafficStatsCompat.class
│ │ │ ├── os
│ │ │ │ ├── BuildCompat.class
│ │ │ │ ├── CancellationSignal$OnCancelListener.class
│ │ │ │ ├── CancellationSignal.class
│ │ │ │ ├── ConfigurationCompat.class
│ │ │ │ ├── EnvironmentCompat.class
│ │ │ │ ├── IResultReceiver$Stub$Proxy.class
│ │ │ │ ├── IResultReceiver$Stub.class
│ │ │ │ ├── IResultReceiver.class
│ │ │ │ ├── LocaleHelper.class
│ │ │ │ ├── LocaleListCompat$LocaleListCompatApi24Impl.class
│ │ │ │ ├── LocaleListCompat$LocaleListCompatBaseImpl.class
│ │ │ │ ├── LocaleListCompat.class
│ │ │ │ ├── LocaleListHelper.class
│ │ │ │ ├── LocaleListInterface.class
│ │ │ │ ├── OperationCanceledException.class
│ │ │ │ ├── ParcelableCompat$ParcelableCompatCreatorHoneycombMR2.class
│ │ │ │ ├── ParcelableCompat.class
│ │ │ │ ├── ParcelableCompatCreatorCallbacks.class
│ │ │ │ ├── ResultReceiver$1.class
│ │ │ │ ├── ResultReceiver$MyResultReceiver.class
│ │ │ │ ├── ResultReceiver$MyRunnable.class
│ │ │ │ ├── ResultReceiver.class
│ │ │ │ ├── TraceCompat.class
│ │ │ │ └── UserManagerCompat.class
│ │ │ ├── provider
│ │ │ │ ├── FontRequest.class
│ │ │ │ ├── FontsContractCompat$1.class
│ │ │ │ ├── FontsContractCompat$2.class
│ │ │ │ ├── FontsContractCompat$3.class
│ │ │ │ ├── FontsContractCompat$4$1.class
│ │ │ │ ├── FontsContractCompat$4$2.class
│ │ │ │ ├── FontsContractCompat$4$3.class
│ │ │ │ ├── FontsContractCompat$4$4.class
│ │ │ │ ├── FontsContractCompat$4$5.class
│ │ │ │ ├── FontsContractCompat$4$6.class
│ │ │ │ ├── FontsContractCompat$4$7.class
│ │ │ │ ├── FontsContractCompat$4$8.class
│ │ │ │ ├── FontsContractCompat$4$9.class
│ │ │ │ ├── FontsContractCompat$4.class
│ │ │ │ ├── FontsContractCompat$5.class
│ │ │ │ ├── FontsContractCompat$Columns.class
│ │ │ │ ├── FontsContractCompat$FontFamilyResult$FontResultStatus.class
│ │ │ │ ├── FontsContractCompat$FontFamilyResult.class
│ │ │ │ ├── FontsContractCompat$FontInfo.class
│ │ │ │ ├── FontsContractCompat$FontRequestCallback$FontRequestFailReason.class
│ │ │ │ ├── FontsContractCompat$FontRequestCallback.class
│ │ │ │ ├── FontsContractCompat$TypefaceResult.class
│ │ │ │ ├── FontsContractCompat.class
│ │ │ │ ├── SelfDestructiveThread$1.class
│ │ │ │ ├── SelfDestructiveThread$2$1.class
│ │ │ │ ├── SelfDestructiveThread$2.class
│ │ │ │ ├── SelfDestructiveThread$3.class
│ │ │ │ ├── SelfDestructiveThread$ReplyCallback.class
│ │ │ │ └── SelfDestructiveThread.class
│ │ │ ├── text
│ │ │ │ ├── BidiFormatter$1.class
│ │ │ │ ├── BidiFormatter$Builder.class
│ │ │ │ ├── BidiFormatter$DirectionalityEstimator.class
│ │ │ │ ├── BidiFormatter.class
│ │ │ │ ├── ICUCompat.class
│ │ │ │ ├── TextDirectionHeuristicCompat.class
│ │ │ │ ├── TextDirectionHeuristicsCompat$AnyStrong.class
│ │ │ │ ├── TextDirectionHeuristicsCompat$FirstStrong.class
│ │ │ │ ├── TextDirectionHeuristicsCompat$TextDirectionAlgorithm.class
│ │ │ │ ├── TextDirectionHeuristicsCompat$TextDirectionHeuristicImpl.class
│ │ │ │ ├── TextDirectionHeuristicsCompat$TextDirectionHeuristicInternal.class
│ │ │ │ ├── TextDirectionHeuristicsCompat$TextDirectionHeuristicLocale.class
│ │ │ │ ├── TextDirectionHeuristicsCompat.class
│ │ │ │ ├── TextUtilsCompat.class
│ │ │ │ └── util
│ │ │ │ ├── LinkifyCompat$1.class
│ │ │ │ ├── LinkifyCompat$LinkifyMask.class
│ │ │ │ ├── LinkifyCompat$LinkSpec.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
│ │ │ │ ├── ObjectsCompat.class
│ │ │ │ ├── Pair.class
│ │ │ │ ├── PatternsCompat.class
│ │ │ │ ├── Pools$Pool.class
│ │ │ │ ├── Pools$SimplePool.class
│ │ │ │ ├── Pools$SynchronizedPool.class
│ │ │ │ ├── Pools.class
│ │ │ │ ├── Preconditions.class
│ │ │ │ ├── SimpleArrayMap.class
│ │ │ │ ├── SparseArrayCompat.class
│ │ │ │ └── TimeUtils.class
│ │ │ ├── view
│ │ │ │ ├── accessibility
│ │ │ │ │ ├── AccessibilityEventCompat.class
│ │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityStateChangeListener.class
│ │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityStateChangeListenerCompat.class
│ │ │ │ │ ├── AccessibilityManagerCompat$AccessibilityStateChangeListenerWrapper.class
│ │ │ │ │ ├── AccessibilityManagerCompat$TouchExplorationStateChangeListener.class
│ │ │ │ │ ├── AccessibilityManagerCompat$TouchExplorationStateChangeListenerWrapper.class
│ │ │ │ │ ├── AccessibilityManagerCompat.class
│ │ │ │ │ ├── AccessibilityNodeInfoCompat$AccessibilityActionCompat.class
│ │ │ │ │ ├── AccessibilityNodeInfoCompat$CollectionInfoCompat.class
│ │ │ │ │ ├── AccessibilityNodeInfoCompat$CollectionItemInfoCompat.class
│ │ │ │ │ ├── AccessibilityNodeInfoCompat$RangeInfoCompat.class
│ │ │ │ │ ├── AccessibilityNodeInfoCompat.class
│ │ │ │ │ ├── AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi16.class
│ │ │ │ │ ├── AccessibilityNodeProviderCompat$AccessibilityNodeProviderApi19.class
│ │ │ │ │ ├── AccessibilityNodeProviderCompat.class
│ │ │ │ │ ├── AccessibilityRecordCompat.class
│ │ │ │ │ └── AccessibilityWindowInfoCompat.class
│ │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateApi16Impl$1.class
│ │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateApi16Impl.class
│ │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateBaseImpl$1.class
│ │ │ │ ├── AccessibilityDelegateCompat$AccessibilityDelegateBaseImpl.class
│ │ │ │ ├── AccessibilityDelegateCompat.class
│ │ │ │ ├── ActionProvider$SubUiVisibilityListener.class
│ │ │ │ ├── ActionProvider$VisibilityListener.class
│ │ │ │ ├── ActionProvider.class
│ │ │ │ ├── animation
│ │ │ │ │ ├── PathInterpolatorApi14.class
│ │ │ │ │ └── PathInterpolatorCompat.class
│ │ │ │ ├── GestureDetectorCompat$GestureDetectorCompatImplBase$GestureHandler.class
│ │ │ │ ├── GestureDetectorCompat$GestureDetectorCompatImplBase.class
│ │ │ │ ├── GestureDetectorCompat$GestureDetectorCompatImpl.class
│ │ │ │ ├── GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2.class
│ │ │ │ ├── GestureDetectorCompat.class
│ │ │ │ ├── GravityCompat.class
│ │ │ │ ├── InputDeviceCompat.class
│ │ │ │ ├── LayoutInflaterCompat$Factory2Wrapper.class
│ │ │ │ ├── LayoutInflaterCompat$LayoutInflaterCompatApi21Impl.class
│ │ │ │ ├── LayoutInflaterCompat$LayoutInflaterCompatBaseImpl.class
│ │ │ │ ├── LayoutInflaterCompat.class
│ │ │ │ ├── LayoutInflaterFactory.class
│ │ │ │ ├── MarginLayoutParamsCompat.class
│ │ │ │ ├── MenuCompat.class
│ │ │ │ ├── MenuItemCompat$1.class
│ │ │ │ ├── MenuItemCompat$MenuItemCompatApi26Impl.class
│ │ │ │ ├── MenuItemCompat$MenuItemCompatBaseImpl.class
│ │ │ │ ├── MenuItemCompat$MenuVersionImpl.class
│ │ │ │ ├── MenuItemCompat$OnActionExpandListener.class
│ │ │ │ ├── MenuItemCompat.class
│ │ │ │ ├── MotionEventCompat.class
│ │ │ │ ├── NestedScrollingChild2.class
│ │ │ │ ├── NestedScrollingChild.class
│ │ │ │ ├── NestedScrollingParent2.class
│ │ │ │ ├── NestedScrollingParent.class
│ │ │ │ ├── OnApplyWindowInsetsListener.class
│ │ │ │ ├── PointerIconCompat.class
│ │ │ │ ├── ScaleGestureDetectorCompat.class
│ │ │ │ ├── ScrollingView.class
│ │ │ │ ├── TintableBackgroundView.class
│ │ │ │ ├── VelocityTrackerCompat.class
│ │ │ │ ├── ViewCompat$AccessibilityLiveRegion.class
│ │ │ │ ├── ViewCompat$AutofillImportance.class
│ │ │ │ ├── ViewCompat$FocusDirection.class
│ │ │ │ ├── ViewCompat$FocusRealDirection.class
│ │ │ │ ├── ViewCompat$FocusRelativeDirection.class
│ │ │ │ ├── ViewCompat$ImportantForAccessibility.class
│ │ │ │ ├── ViewCompat$LayerType.class
│ │ │ │ ├── ViewCompat$LayoutDirectionMode.class
│ │ │ │ ├── ViewCompat$NestedScrollType.class
│ │ │ │ ├── ViewCompat$OverScroll.class
│ │ │ │ ├── ViewCompat$ResolvedLayoutDirectionMode.class
│ │ │ │ ├── ViewCompat$ScrollAxis.class
│ │ │ │ ├── ViewCompat$ScrollIndicators.class
│ │ │ │ ├── ViewCompat$ViewCompatApi15Impl.class
│ │ │ │ ├── ViewCompat$ViewCompatApi16Impl.class
│ │ │ │ ├── ViewCompat$ViewCompatApi17Impl.class
│ │ │ │ ├── ViewCompat$ViewCompatApi18Impl.class
│ │ │ │ ├── ViewCompat$ViewCompatApi19Impl.class
│ │ │ │ ├── ViewCompat$ViewCompatApi21Impl$1.class
│ │ │ │ ├── ViewCompat$ViewCompatApi21Impl.class
│ │ │ │ ├── ViewCompat$ViewCompatApi23Impl.class
│ │ │ │ ├── ViewCompat$ViewCompatApi24Impl.class
│ │ │ │ ├── ViewCompat$ViewCompatApi26Impl.class
│ │ │ │ ├── ViewCompat$ViewCompatBaseImpl.class
│ │ │ │ ├── ViewCompat.class
│ │ │ │ ├── ViewConfigurationCompat.class
│ │ │ │ ├── ViewGroupCompat$ViewGroupCompatApi18Impl.class
│ │ │ │ ├── ViewGroupCompat$ViewGroupCompatApi21Impl.class
│ │ │ │ ├── ViewGroupCompat$ViewGroupCompatBaseImpl.class
│ │ │ │ ├── ViewGroupCompat.class
│ │ │ │ ├── ViewParentCompat$ViewParentCompatApi19Impl.class
│ │ │ │ ├── ViewParentCompat$ViewParentCompatApi21Impl.class
│ │ │ │ ├── ViewParentCompat$ViewParentCompatBaseImpl.class
│ │ │ │ ├── ViewParentCompat.class
│ │ │ │ ├── ViewPropertyAnimatorCompat$1.class
│ │ │ │ ├── ViewPropertyAnimatorCompat$2.class
│ │ │ │ ├── ViewPropertyAnimatorCompat$ViewPropertyAnimatorListenerApi14.class
│ │ │ │ ├── ViewPropertyAnimatorCompat.class
│ │ │ │ ├── ViewPropertyAnimatorListenerAdapter.class
│ │ │ │ ├── ViewPropertyAnimatorListener.class
│ │ │ │ ├── ViewPropertyAnimatorUpdateListener.class
│ │ │ │ ├── WindowCompat.class
│ │ │ │ └── WindowInsetsCompat.class
│ │ │ └── widget
│ │ │ ├── AutoSizeableTextView.class
│ │ │ ├── CompoundButtonCompat$CompoundButtonCompatApi21Impl.class
│ │ │ ├── CompoundButtonCompat$CompoundButtonCompatApi23Impl.class
│ │ │ ├── CompoundButtonCompat$CompoundButtonCompatBaseImpl.class
│ │ │ ├── CompoundButtonCompat.class
│ │ │ ├── EdgeEffectCompat$EdgeEffectApi21Impl.class
│ │ │ ├── EdgeEffectCompat$EdgeEffectBaseImpl.class
│ │ │ ├── EdgeEffectCompat.class
│ │ │ ├── ImageViewCompat$BaseViewCompatImpl.class
│ │ │ ├── ImageViewCompat$ImageViewCompatImpl.class
│ │ │ ├── ImageViewCompat$LollipopViewCompatImpl.class
│ │ │ ├── ImageViewCompat.class
│ │ │ ├── ListPopupWindowCompat.class
│ │ │ ├── ListViewCompat.class
│ │ │ ├── PopupMenuCompat.class
│ │ │ ├── PopupWindowCompat$PopupWindowCompatApi19Impl.class
│ │ │ ├── PopupWindowCompat$PopupWindowCompatApi21Impl.class
│ │ │ ├── PopupWindowCompat$PopupWindowCompatApi23Impl.class
│ │ │ ├── PopupWindowCompat$PopupWindowCompatBaseImpl.class
│ │ │ ├── PopupWindowCompat.class
│ │ │ ├── ScrollerCompat.class
│ │ │ ├── TextViewCompat$AutoSizeTextType.class
│ │ │ ├── TextViewCompat$TextViewCompatApi16Impl.class
│ │ │ ├── TextViewCompat$TextViewCompatApi17Impl.class
│ │ │ ├── TextViewCompat$TextViewCompatApi18Impl.class
│ │ │ ├── TextViewCompat$TextViewCompatApi23Impl.class
│ │ │ ├── TextViewCompat$TextViewCompatApi27Impl.class
│ │ │ ├── TextViewCompat$TextViewCompatBaseImpl.class
│ │ │ ├── TextViewCompat.class
│ │ │ ├── TintableCompoundButton.class
│ │ │ └── TintableImageSourceView.class
│ │ ├── classes.jar_u9pzvtqplrdagrpxh1gt1zql
│ │ │ └── android
│ │ │ └── support
│ │ │ ├── fragment
│ │ │ │ └── BuildConfig.class
│ │ │ └── v4
│ │ │ └── app
│ │ │ ├── BackStackRecord$Op.class
│ │ │ ├── BackStackRecord.class
│ │ │ ├── BackStackState$1.class
│ │ │ ├── BackStackState.class
│ │ │ ├── BaseFragmentActivityApi14.class
│ │ │ ├── BaseFragmentActivityApi16.class
│ │ │ ├── DialogFragment$DialogStyle.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
│ │ │ ├── FragmentActivity$1.class
│ │ │ ├── FragmentActivity$HostCallbacks.class
│ │ │ ├── FragmentActivity$NonConfigurationInstances.class
│ │ │ ├── FragmentActivity.class
│ │ │ ├── Fragment.class
│ │ │ ├── FragmentContainer.class
│ │ │ ├── FragmentController.class
│ │ │ ├── FragmentHostCallback.class
│ │ │ ├── FragmentManager$BackStackEntry.class
│ │ │ ├── FragmentManager$FragmentLifecycleCallbacks.class
│ │ │ ├── FragmentManager$OnBackStackChangedListener.class
│ │ │ ├── FragmentManager.class
│ │ │ ├── FragmentManagerImpl$1.class
│ │ │ ├── FragmentManagerImpl$2$1.class
│ │ │ ├── FragmentManagerImpl$2.class
│ │ │ ├── FragmentManagerImpl$3.class
│ │ │ ├── FragmentManagerImpl$4.class
│ │ │ ├── FragmentManagerImpl$AnimateOnHWLayerIfNeededListener$1.class
│ │ │ ├── FragmentManagerImpl$AnimateOnHWLayerIfNeededListener.class
│ │ │ ├── FragmentManagerImpl$AnimationListenerWrapper.class
│ │ │ ├── FragmentManagerImpl$AnimationOrAnimator.class
│ │ │ ├── FragmentManagerImpl$AnimatorOnHWLayerIfNeededListener.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$Transit.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.class
│ │ │ ├── FragmentTransitionImpl$1.class
│ │ │ ├── FragmentTransitionImpl$2.class
│ │ │ ├── FragmentTransitionImpl$3.class
│ │ │ ├── FragmentTransitionImpl.class
│ │ │ ├── ListFragment$1.class
│ │ │ ├── ListFragment$2.class
│ │ │ ├── ListFragment.class
│ │ │ ├── LoaderManager$LoaderCallbacks.class
│ │ │ ├── LoaderManager.class
│ │ │ ├── LoaderManagerImpl$LoaderInfo.class
│ │ │ ├── LoaderManagerImpl.class
│ │ │ ├── OneShotPreDrawListener.class
│ │ │ └── SuperNotCalledException.class
│ │ ├── common-1.0.0.jar_6p4ye0klol6v5okk5uo9l2m9l
│ │ │ └── android
│ │ │ └── arch
│ │ │ └── core
│ │ │ └── internal
│ │ │ ├── FastSafeIterableMap.class
│ │ │ ├── SafeIterableMap$1.class
│ │ │ ├── SafeIterableMap$AscendingIterator.class
│ │ │ ├── SafeIterableMap$DescendingIterator.class
│ │ │ ├── SafeIterableMap$Entry.class
│ │ │ ├── SafeIterableMap$IteratorWithAdditions.class
│ │ │ ├── SafeIterableMap$ListIterator.class
│ │ │ ├── SafeIterableMap$SupportRemove.class
│ │ │ └── SafeIterableMap.class
│ │ ├── common-1.0.0.jar_7r0st2wgylcbi4h0n0177lo0m
│ │ │ └── android
│ │ │ └── arch
│ │ │ └── lifecycle
│ │ │ ├── GenericLifecycleObserver.class
│ │ │ ├── Lifecycle$Event.class
│ │ │ ├── Lifecycle$State.class
│ │ │ ├── Lifecycle.class
│ │ │ ├── LifecycleObserver.class
│ │ │ ├── LifecycleOwner.class
│ │ │ ├── Lifecycling.class
│ │ │ ├── OnLifecycleEvent.class
│ │ │ ├── ReflectiveGenericLifecycleObserver$CallbackInfo.class
│ │ │ ├── ReflectiveGenericLifecycleObserver$MethodReference.class
│ │ │ └── ReflectiveGenericLifecycleObserver.class
│ │ ├── constraint-layout-solver-1.0.2.jar_3jdcwkg5wrjy2p2vphgnhl3t3
│ │ │ └── android
│ │ │ └── support
│ │ │ └── constraint
│ │ │ └── solver
│ │ │ ├── ArrayLinkedVariables.class
│ │ │ ├── ArrayRow.class
│ │ │ ├── Cache.class
│ │ │ ├── Goal.class
│ │ │ ├── LinearSystem.class
│ │ │ ├── Pools$Pool.class
│ │ │ ├── Pools$SimplePool.class
│ │ │ ├── Pools.class
│ │ │ ├── SolverVariable$1.class
│ │ │ ├── SolverVariable$Type.class
│ │ │ ├── SolverVariable.class
│ │ │ └── widgets
│ │ │ ├── ConstraintAnchor$1.class
│ │ │ ├── ConstraintAnchor$ConnectionType.class
│ │ │ ├── ConstraintAnchor$Strength.class
│ │ │ ├── ConstraintAnchor$Type.class
│ │ │ ├── ConstraintAnchor.class
│ │ │ ├── ConstraintHorizontalLayout$ContentAlignment.class
│ │ │ ├── ConstraintHorizontalLayout.class
│ │ │ ├── ConstraintTableLayout$HorizontalSlice.class
│ │ │ ├── ConstraintTableLayout$VerticalSlice.class
│ │ │ ├── ConstraintTableLayout.class
│ │ │ ├── ConstraintWidget$1.class
│ │ │ ├── ConstraintWidget$ContentAlignment.class
│ │ │ ├── ConstraintWidget$DimensionBehaviour.class
│ │ │ ├── ConstraintWidget.class
│ │ │ ├── ConstraintWidgetContainer$2.class
│ │ │ ├── ConstraintWidgetContainer.class
│ │ │ ├── Guideline$1.class
│ │ │ ├── Guideline.class
│ │ │ ├── Optimizer.class
│ │ │ ├── Rectangle.class
│ │ │ ├── Snapshot$Connection.class
│ │ │ ├── Snapshot.class
│ │ │ └── WidgetContainer.class
│ │ ├── okhttp-3.8.1.jar_5cwdbkknlr36plmloajq6p5lk
│ │ │ └── okhttp3
│ │ │ ├── Address.class
│ │ │ ├── Authenticator$1.class
│ │ │ ├── Authenticator.class
│ │ │ ├── Cache$1.class
│ │ │ ├── Cache$2.class
│ │ │ ├── Cache$CacheRequestImpl$1.class
│ │ │ ├── Cache$CacheRequestImpl.class
│ │ │ ├── Cache$CacheResponseBody$1.class
│ │ │ ├── Cache$CacheResponseBody.class
│ │ │ ├── Cache$Entry.class
│ │ │ ├── Cache.class
│ │ │ ├── CacheControl$Builder.class
│ │ │ ├── CacheControl.class
│ │ │ ├── Call$Factory.class
│ │ │ ├── Callback.class
│ │ │ ├── Call.class
│ │ │ ├── CertificatePinner$Builder.class
│ │ │ ├── CertificatePinner$Pin.class
│ │ │ ├── CertificatePinner.class
│ │ │ ├── Challenge.class
│ │ │ ├── CipherSuite$1.class
│ │ │ ├── CipherSuite.class
│ │ │ ├── Connection.class
│ │ │ ├── ConnectionPool$1.class
│ │ │ ├── ConnectionPool.class
│ │ │ ├── ConnectionSpec$Builder.class
│ │ │ ├── ConnectionSpec.class
│ │ │ ├── Cookie$Builder.class
│ │ │ ├── Cookie.class
│ │ │ ├── CookieJar$1.class
│ │ │ ├── CookieJar.class
│ │ │ ├── Credentials.class
│ │ │ ├── Dispatcher.class
│ │ │ ├── Dns$1.class
│ │ │ ├── Dns.class
│ │ │ ├── EventListener$1.class
│ │ │ ├── EventListener$2.class
│ │ │ ├── EventListener$Factory.class
│ │ │ ├── EventListener.class
│ │ │ ├── FormBody$Builder.class
│ │ │ ├── FormBody.class
│ │ │ ├── Handshake.class
│ │ │ ├── Headers$Builder.class
│ │ │ ├── Headers.class
│ │ │ ├── HttpUrl$1.class
│ │ │ ├── HttpUrl$Builder$ParseResult.class
│ │ │ ├── HttpUrl$Builder.class
│ │ │ ├── HttpUrl.class
│ │ │ ├── Interceptor$Chain.class
│ │ │ ├── Interceptor.class
│ │ │ ├── internal
│ │ │ │ ├── cache
│ │ │ │ │ ├── CacheInterceptor$1.class
│ │ │ │ │ ├── CacheInterceptor.class
│ │ │ │ │ ├── CacheRequest.class
│ │ │ │ │ ├── CacheStrategy$Factory.class
│ │ │ │ │ ├── CacheStrategy.class
│ │ │ │ │ ├── DiskLruCache$1.class
│ │ │ │ │ ├── DiskLruCache$2.class
│ │ │ │ │ ├── DiskLruCache$3.class
│ │ │ │ │ ├── DiskLruCache$Editor$1.class
│ │ │ │ │ ├── DiskLruCache$Editor.class
│ │ │ │ │ ├── DiskLruCache$Entry.class
│ │ │ │ │ ├── DiskLruCache$Snapshot.class
│ │ │ │ │ ├── DiskLruCache.class
│ │ │ │ │ ├── FaultHidingSink.class
│ │ │ │ │ └── InternalCache.class
│ │ │ │ ├── cache2
│ │ │ │ │ ├── FileOperator.class
│ │ │ │ │ ├── Relay$RelaySource.class
│ │ │ │ │ └── Relay.class
│ │ │ │ ├── connection
│ │ │ │ │ ├── ConnectInterceptor.class
│ │ │ │ │ ├── ConnectionSpecSelector.class
│ │ │ │ │ ├── RealConnection$1.class
│ │ │ │ │ ├── RealConnection.class
│ │ │ │ │ ├── RouteDatabase.class
│ │ │ │ │ ├── RouteException.class
│ │ │ │ │ ├── RouteSelector.class
│ │ │ │ │ ├── StreamAllocation$StreamAllocationReference.class
│ │ │ │ │ └── StreamAllocation.class
│ │ │ │ ├── http
│ │ │ │ │ ├── BridgeInterceptor.class
│ │ │ │ │ ├── CallServerInterceptor.class
│ │ │ │ │ ├── HttpCodec.class
│ │ │ │ │ ├── HttpDate$1.class
│ │ │ │ │ ├── HttpDate.class
│ │ │ │ │ ├── HttpHeaders.class
│ │ │ │ │ ├── HttpMethod.class
│ │ │ │ │ ├── RealInterceptorChain.class
│ │ │ │ │ ├── RealResponseBody.class
│ │ │ │ │ ├── RequestLine.class
│ │ │ │ │ ├── RetryAndFollowUpInterceptor.class
│ │ │ │ │ ├── StatusLine.class
│ │ │ │ │ └── UnrepeatableRequestBody.class
│ │ │ │ ├── http1
│ │ │ │ │ ├── Http1Codec$1.class
│ │ │ │ │ ├── Http1Codec$AbstractSource.class
│ │ │ │ │ ├── Http1Codec$ChunkedSink.class
│ │ │ │ │ ├── Http1Codec$ChunkedSource.class
│ │ │ │ │ ├── Http1Codec$FixedLengthSink.class
│ │ │ │ │ ├── Http1Codec$FixedLengthSource.class
│ │ │ │ │ ├── Http1Codec$UnknownLengthSource.class
│ │ │ │ │ └── Http1Codec.class
│ │ │ │ ├── http2
│ │ │ │ │ ├── ConnectionShutdownException.class
│ │ │ │ │ ├── ErrorCode.class
│ │ │ │ │ ├── Header.class
│ │ │ │ │ ├── Hpack$Reader.class
│ │ │ │ │ ├── Hpack$Writer.class
│ │ │ │ │ ├── Hpack.class
│ │ │ │ │ ├── Http2.class
│ │ │ │ │ ├── Http2Codec$StreamFinishingSource.class
│ │ │ │ │ ├── Http2Codec.class
│ │ │ │ │ ├── Http2Connection$1.class
│ │ │ │ │ ├── Http2Connection$2.class
│ │ │ │ │ ├── Http2Connection$3.class
│ │ │ │ │ ├── Http2Connection$4.class
│ │ │ │ │ ├── Http2Connection$5.class
│ │ │ │ │ ├── Http2Connection$6.class
│ │ │ │ │ ├── Http2Connection$7.class
│ │ │ │ │ ├── Http2Connection$Builder.class
│ │ │ │ │ ├── Http2Connection$Listener$1.class
│ │ │ │ │ ├── Http2Connection$Listener.class
│ │ │ │ │ ├── Http2Connection$ReaderRunnable$1.class
│ │ │ │ │ ├── Http2Connection$ReaderRunnable$2.class
│ │ │ │ │ ├── Http2Connection$ReaderRunnable$3.class
│ │ │ │ │ ├── Http2Connection$ReaderRunnable.class
│ │ │ │ │ ├── Http2Connection.class
│ │ │ │ │ ├── Http2Reader$ContinuationSource.class
│ │ │ │ │ ├── Http2Reader$Handler.class
│ │ │ │ │ ├── Http2Reader.class
│ │ │ │ │ ├── Http2Stream$FramingSink.class
│ │ │ │ │ ├── Http2Stream$FramingSource.class
│ │ │ │ │ ├── Http2Stream$StreamTimeout.class
│ │ │ │ │ ├── Http2Stream.class
│ │ │ │ │ ├── Http2Writer.class
│ │ │ │ │ ├── Huffman$Node.class
│ │ │ │ │ ├── Huffman.class
│ │ │ │ │ ├── Ping.class
│ │ │ │ │ ├── PushObserver$1.class
│ │ │ │ │ ├── PushObserver.class
│ │ │ │ │ ├── Settings.class
│ │ │ │ │ └── StreamResetException.class
│ │ │ │ ├── Internal.class
│ │ │ │ ├── io
│ │ │ │ │ ├── FileSystem$1.class
│ │ │ │ │ └── FileSystem.class
│ │ │ │ ├── NamedRunnable.class
│ │ │ │ ├── platform
│ │ │ │ │ ├── AndroidPlatform$AndroidCertificateChainCleaner.class
│ │ │ │ │ ├── AndroidPlatform$CloseGuard.class
│ │ │ │ │ ├── AndroidPlatform.class
│ │ │ │ │ ├── Jdk9Platform.class
│ │ │ │ │ ├── JdkWithJettyBootPlatform$JettyNegoProvider.class
│ │ │ │ │ ├── JdkWithJettyBootPlatform.class
│ │ │ │ │ ├── OptionalMethod.class
│ │ │ │ │ └── Platform.class
│ │ │ │ ├── publicsuffix
│ │ │ │ │ └── PublicSuffixDatabase.class
│ │ │ │ ├── tls
│ │ │ │ │ ├── BasicCertificateChainCleaner.class
│ │ │ │ │ ├── CertificateChainCleaner.class
│ │ │ │ │ ├── DistinguishedNameParser.class
│ │ │ │ │ ├── OkHostnameVerifier.class
│ │ │ │ │ ├── TrustRootIndex$AndroidTrustRootIndex.class
│ │ │ │ │ ├── TrustRootIndex$BasicTrustRootIndex.class
│ │ │ │ │ └── TrustRootIndex.class
│ │ │ │ ├── Util$1.class
│ │ │ │ ├── Util$2.class
│ │ │ │ ├── Util.class
│ │ │ │ ├── Version.class
│ │ │ │ └── ws
│ │ │ │ ├── RealWebSocket$1.class
│ │ │ │ ├── RealWebSocket$2.class
│ │ │ │ ├── RealWebSocket$CancelRunnable.class
│ │ │ │ ├── RealWebSocket$Close.class
│ │ │ │ ├── RealWebSocket$Message.class
│ │ │ │ ├── RealWebSocket$PingRunnable.class
│ │ │ │ ├── RealWebSocket$Streams.class
│ │ │ │ ├── RealWebSocket.class
│ │ │ │ ├── WebSocketProtocol.class
│ │ │ │ ├── WebSocketReader$FrameCallback.class
│ │ │ │ ├── WebSocketReader.class
│ │ │ │ ├── WebSocketWriter$FrameSink.class
│ │ │ │ └── WebSocketWriter.class
│ │ │ ├── MediaType.class
│ │ │ ├── MultipartBody$Builder.class
│ │ │ ├── MultipartBody$Part.class
│ │ │ ├── MultipartBody.class
│ │ │ ├── OkHttpClient$1.class
│ │ │ ├── OkHttpClient$Builder.class
│ │ │ ├── OkHttpClient.class
│ │ │ ├── package-info.class
│ │ │ ├── Protocol.class
│ │ │ ├── RealCall$AsyncCall.class
│ │ │ ├── RealCall.class
│ │ │ ├── Request$Builder.class
│ │ │ ├── RequestBody$1.class
│ │ │ ├── RequestBody$2.class
│ │ │ ├── RequestBody$3.class
│ │ │ ├── RequestBody.class
│ │ │ ├── Request.class
│ │ │ ├── Response$Builder.class
│ │ │ ├── ResponseBody$1.class
│ │ │ ├── ResponseBody$BomAwareReader.class
│ │ │ ├── ResponseBody.class
│ │ │ ├── Response.class
│ │ │ ├── Route.class
│ │ │ ├── TlsVersion.class
│ │ │ ├── WebSocket$Factory.class
│ │ │ ├── WebSocket.class
│ │ │ └── WebSocketListener.class
│ │ ├── okio-1.13.0.jar_1rwkz8eyylt6w59mvfvqv97zy
│ │ │ └── okio
│ │ │ ├── AsyncTimeout$1.class
│ │ │ ├── AsyncTimeout$2.class
│ │ │ ├── AsyncTimeout$Watchdog.class
│ │ │ ├── AsyncTimeout.class
│ │ │ ├── Base64.class
│ │ │ ├── Buffer$1.class
│ │ │ ├── Buffer$2.class
│ │ │ ├── Buffer.class
│ │ │ ├── BufferedSink.class
│ │ │ ├── BufferedSource.class
│ │ │ ├── ByteString.class
│ │ │ ├── DeflaterSink.class
│ │ │ ├── ForwardingSink.class
│ │ │ ├── ForwardingSource.class
│ │ │ ├── ForwardingTimeout.class
│ │ │ ├── GzipSink.class
│ │ │ ├── GzipSource.class
│ │ │ ├── HashingSink.class
│ │ │ ├── HashingSource.class
│ │ │ ├── InflaterSource.class
│ │ │ ├── Okio$1.class
│ │ │ ├── Okio$2.class
│ │ │ ├── Okio$3.class
│ │ │ ├── Okio$4.class
│ │ │ ├── Okio.class
│ │ │ ├── Options.class
│ │ │ ├── package-info.class
│ │ │ ├── Pipe$PipeSink.class
│ │ │ ├── Pipe$PipeSource.class
│ │ │ ├── Pipe.class
│ │ │ ├── RealBufferedSink$1.class
│ │ │ ├── RealBufferedSink.class
│ │ │ ├── RealBufferedSource$1.class
│ │ │ ├── RealBufferedSource.class
│ │ │ ├── Segment.class
│ │ │ ├── SegmentedByteString.class
│ │ │ ├── SegmentPool.class
│ │ │ ├── Sink.class
│ │ │ ├── Source.class
│ │ │ ├── Timeout$1.class
│ │ │ ├── Timeout.class
│ │ │ ├── Utf8.class
│ │ │ └── Util.class
│ │ └── support-annotations-27.0.0.jar_4cbyls4joya0fl516de9a5uwx
│ │ └── android
│ │ └── support
│ │ └── annotation
│ │ ├── AnimatorRes.class
│ │ ├── AnimRes.class
│ │ ├── AnyRes.class
│ │ ├── AnyThread.class
│ │ ├── ArrayRes.class
│ │ ├── AttrRes.class
│ │ ├── BinderThread.class
│ │ ├── BoolRes.class
│ │ ├── CallSuper.class
│ │ ├── CheckResult.class
│ │ ├── ColorInt.class
│ │ ├── ColorLong.class
│ │ ├── ColorRes.class
│ │ ├── DimenRes.class
│ │ ├── Dimension.class
│ │ ├── DrawableRes.class
│ │ ├── FloatRange.class
│ │ ├── FontRes.class
│ │ ├── FractionRes.class
│ │ ├── GuardedBy.class
│ │ ├── HalfFloat.class
│ │ ├── IdRes.class
│ │ ├── IntDef.class
│ │ ├── IntegerRes.class
│ │ ├── InterpolatorRes.class
│ │ ├── IntRange.class
│ │ ├── Keep.class
│ │ ├── LayoutRes.class
│ │ ├── MainThread.class
│ │ ├── MenuRes.class
│ │ ├── NavigationRes.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
│ │ ├── StyleableRes.class
│ │ ├── StyleRes.class
│ │ ├── TransitionRes.class
│ │ ├── UiThread.class
│ │ ├── VisibleForTesting.class
│ │ ├── WorkerThread.class
│ │ └── XmlRes.class
│ ├── build.gradle
│ ├── gradle
│ │ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── library.iml
│ ├── local.properties
│ ├── proguard-rules.pro
│ └── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── com
│ │ └── allenliu
│ │ └── versionchecklib
│ │ ├── callback
│ │ │ ├── APKDownloadListener.java
│ │ │ ├── CommitClickListener.java
│ │ │ ├── DialogDismissListener.java
│ │ │ └── DownloadListener.java
│ │ ├── core
│ │ │ ├── AllenChecker.java
│ │ │ ├── AVersionService.java
│ │ │ ├── DownloadManager.java
│ │ │ ├── http
│ │ │ │ ├── AllenHttp.java
│ │ │ │ ├── FileCallBack.java
│ │ │ │ ├── HttpHeaders.java
│ │ │ │ ├── HttpParams.java
│ │ │ │ └── HttpRequestMethod.java
│ │ │ ├── MyService.java
│ │ │ ├── PermissionDialogActivity.java
│ │ │ ├── VersionDialogActivity.java
│ │ │ ├── VersionFileProvider.java
│ │ │ └── VersionParams.java
│ │ └── utils
│ │ ├── ALog.java
│ │ ├── AppUtils.java
│ │ └── FileHelper.java
│ └── res
│ ├── drawable
│ │ └── progressbar_horizontal.xml
│ ├── layout
│ │ ├── activity_version_dialog.xml
│ │ └── downloading_layout.xml
│ ├── mipmap-hdpi
│ │ └── ic_launcher.png
│ ├── mipmap-mdpi
│ │ └── ic_launcher.png
│ ├── mipmap-xhdpi
│ │ └── ic_launcher.png
│ ├── mipmap-xxhdpi
│ │ └── ic_launcher.png
│ ├── mipmap-xxxhdpi
│ │ └── ic_launcher.png
│ ├── values
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── values-en
│ │ └── strings.xml
│ ├── values-w820dp
│ │ └── dimens.xml
│ └── xml
│ └── versionchecklib_file_paths.xml
├── library.jar
├── local.properties
├── README_EN.md
├── README.md
├── README_V1.1.md
├── sample
│ ├── 1_1.apk
│ ├── build
│ │ ├── generated
│ │ │ ├── assets
│ │ │ │ └── shaders
│ │ │ │ └── debug
│ │ │ ├── res
│ │ │ │ ├── resValues
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── debug
│ │ │ │ │ └── debug
│ │ │ │ └── rs
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ └── debug
│ │ │ └── source
│ │ │ ├── aidl
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ └── debug
│ │ │ ├── apt
│ │ │ │ └── debug
│ │ │ ├── buildConfig
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── allenliu
│ │ │ │ │ └── sample
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── allenliu
│ │ │ │ └── sample
│ │ │ │ └── BuildConfig.java
│ │ │ ├── r
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── constraint
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── coreui
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── coreutils
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── fragment
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── v7
│ │ │ │ │ └── appcompat
│ │ │ │ │ └── R.java
│ │ │ │ └── com
│ │ │ │ └── allenliu
│ │ │ │ ├── sample
│ │ │ │ │ └── R.java
│ │ │ │ └── versionchecklib
│ │ │ │ └── R.java
│ │ │ └── rs
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ └── debug
│ │ ├── intermediates
│ │ │ ├── assets
│ │ │ │ └── debug
│ │ │ ├── blame
│ │ │ │ └── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ └── debug
│ │ │ │ ├── multi
│ │ │ │ │ ├── values-af.json
│ │ │ │ │ ├── values-am.json
│ │ │ │ │ ├── values-ar.json
│ │ │ │ │ ├── values-az.json
│ │ │ │ │ ├── values-be.json
│ │ │ │ │ ├── values-bg.json
│ │ │ │ │ ├── values-bn.json
│ │ │ │ │ ├── values-bs.json
│ │ │ │ │ ├── values-b+sr+Latn.json
│ │ │ │ │ ├── values-ca.json
│ │ │ │ │ ├── values-cs.json
│ │ │ │ │ ├── values-da.json
│ │ │ │ │ ├── values-de.json
│ │ │ │ │ ├── values-el.json
│ │ │ │ │ ├── values-en.json
│ │ │ │ │ ├── values-en-rAU.json
│ │ │ │ │ ├── values-en-rCA.json
│ │ │ │ │ ├── values-en-rGB.json
│ │ │ │ │ ├── values-en-rIN.json
│ │ │ │ │ ├── values-en-rXC.json
│ │ │ │ │ ├── values-es.json
│ │ │ │ │ ├── values-es-rUS.json
│ │ │ │ │ ├── values-et.json
│ │ │ │ │ ├── values-eu.json
│ │ │ │ │ ├── values-fa.json
│ │ │ │ │ ├── values-fi.json
│ │ │ │ │ ├── values-fr.json
│ │ │ │ │ ├── values-fr-rCA.json
│ │ │ │ │ ├── values-gl.json
│ │ │ │ │ ├── values-gu.json
│ │ │ │ │ ├── values-h720dp-v13.json
│ │ │ │ │ ├── values-hdpi-v4.json
│ │ │ │ │ ├── values-hi.json
│ │ │ │ │ ├── values-hr.json
│ │ │ │ │ ├── values-hu.json
│ │ │ │ │ ├── values-hy.json
│ │ │ │ │ ├── values-in.json
│ │ │ │ │ ├── values-is.json
│ │ │ │ │ ├── values-it.json
│ │ │ │ │ ├── values-iw.json
│ │ │ │ │ ├── values-ja.json
│ │ │ │ │ ├── values.json
│ │ │ │ │ ├── values-ka.json
│ │ │ │ │ ├── values-kk.json
│ │ │ │ │ ├── values-km.json
│ │ │ │ │ ├── values-kn.json
│ │ │ │ │ ├── values-ko.json
│ │ │ │ │ ├── values-ky.json
│ │ │ │ │ ├── values-land.json
│ │ │ │ │ ├── values-large-v4.json
│ │ │ │ │ ├── values-ldltr-v21.json
│ │ │ │ │ ├── values-lo.json
│ │ │ │ │ ├── values-lt.json
│ │ │ │ │ ├── values-lv.json
│ │ │ │ │ ├── values-mk.json
│ │ │ │ │ ├── values-ml.json
│ │ │ │ │ ├── values-mn.json
│ │ │ │ │ ├── values-mr.json
│ │ │ │ │ ├── values-ms.json
│ │ │ │ │ ├── values-my.json
│ │ │ │ │ ├── values-nb.json
│ │ │ │ │ ├── values-ne.json
│ │ │ │ │ ├── values-night-v8.json
│ │ │ │ │ ├── values-nl.json
│ │ │ │ │ ├── values-pa.json
│ │ │ │ │ ├── values-pl.json
│ │ │ │ │ ├── values-port.json
│ │ │ │ │ ├── values-pt.json
│ │ │ │ │ ├── values-pt-rBR.json
│ │ │ │ │ ├── values-pt-rPT.json
│ │ │ │ │ ├── values-ro.json
│ │ │ │ │ ├── values-ru.json
│ │ │ │ │ ├── values-si.json
│ │ │ │ │ ├── values-sk.json
│ │ │ │ │ ├── values-sl.json
│ │ │ │ │ ├── values-sq.json
│ │ │ │ │ ├── values-sr.json
│ │ │ │ │ ├── values-sv.json
│ │ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ │ ├── values-sw.json
│ │ │ │ │ ├── values-ta.json
│ │ │ │ │ ├── values-te.json
│ │ │ │ │ ├── values-th.json
│ │ │ │ │ ├── values-tl.json
│ │ │ │ │ ├── values-tr.json
│ │ │ │ │ ├── values-uk.json
│ │ │ │ │ ├── values-ur.json
│ │ │ │ │ ├── values-uz.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-v26.json
│ │ │ │ │ ├── values-vi.json
│ │ │ │ │ ├── values-w820dp-v13.json
│ │ │ │ │ ├── values-xlarge-v4.json
│ │ │ │ │ ├── values-zh-rCN.json
│ │ │ │ │ ├── values-zh-rHK.json
│ │ │ │ │ ├── values-zh-rTW.json
│ │ │ │ │ └── values-zu.json
│ │ │ │ └── single
│ │ │ │ ├── anim.json
│ │ │ │ ├── color.json
│ │ │ │ ├── color-v11.json
│ │ │ │ ├── color-v23.json
│ │ │ │ ├── drawable-hdpi-v4.json
│ │ │ │ ├── drawable.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-v21.json
│ │ │ │ ├── drawable-v23.json
│ │ │ │ ├── drawable-xhdpi-v4.json
│ │ │ │ ├── drawable-xxhdpi-v4.json
│ │ │ │ ├── drawable-xxxhdpi-v4.json
│ │ │ │ ├── layout.json
│ │ │ │ ├── layout-v16.json
│ │ │ │ ├── layout-v21.json
│ │ │ │ ├── layout-v26.json
│ │ │ │ ├── mipmap-hdpi.json
│ │ │ │ ├── mipmap-mdpi.json
│ │ │ │ ├── mipmap-xhdpi.json
│ │ │ │ ├── mipmap-xhdpi-v4.json
│ │ │ │ ├── mipmap-xxhdpi.json
│ │ │ │ ├── mipmap-xxxhdpi.json
│ │ │ │ └── xml.json
│ │ │ ├── classes
│ │ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreui
│ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreutils
│ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── fragment
│ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ ├── 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$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.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$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── 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$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── allenliu
│ │ │ │ ├── sample
│ │ │ │ │ ├── BaseDialog.class
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── CustomVersionDialogActivity$1.class
│ │ │ │ │ ├── CustomVersionDialogActivity$2.class
│ │ │ │ │ ├── CustomVersionDialogActivity$3.class
│ │ │ │ │ ├── CustomVersionDialogActivity$4.class
│ │ │ │ │ ├── CustomVersionDialogActivity.class
│ │ │ │ │ ├── DemoService.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── 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$mipmap.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R$xml.class
│ │ │ │ │ └── R.class
│ │ │ │ └── versionchecklib
│ │ │ │ ├── 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$mipmap.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R$xml.class
│ │ │ │ └── R.class
│ │ │ ├── dependency-cache
│ │ │ │ └── debug
│ │ │ ├── exploded-aar
│ │ │ │ ├── android.arch.lifecycle
│ │ │ │ │ └── runtime
│ │ │ │ │ └── 1.0.0
│ │ │ │ │ ├── aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── assets
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── jni
│ │ │ │ │ ├── libs
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── res
│ │ │ │ │ └── R.txt
│ │ │ │ ├── com.allenliu.versionchecklib
│ │ │ │ │ └── library
│ │ │ │ │ └── 1.8.6
│ │ │ │ │ ├── aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── assets
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── jni
│ │ │ │ │ ├── libs
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── drawable
│ │ │ │ │ │ │ └── progressbar_horizontal.xml
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── activity_version_dialog.xml
│ │ │ │ │ │ │ └── downloading_layout.xml
│ │ │ │ │ │ ├── mipmap-hdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-mdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xxhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── mipmap-xxxhdpi-v4
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-en
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ │ └── xml
│ │ │ │ │ │ └── versionchecklib_file_paths.xml
│ │ │ │ │ └── R.txt
│ │ │ │ ├── com.android.support
│ │ │ │ │ ├── animated-vector-drawable
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── appcompat-v7
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── public.txt
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ │ ├── tooltip_enter.xml
│ │ │ │ │ │ │ │ └── tooltip_exit.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_track.xml
│ │ │ │ │ │ │ │ ├── switch_thumb_material_dark.xml
│ │ │ │ │ │ │ │ └── switch_thumb_material_light.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_track.xml
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ │ ├── tooltip_frame_dark.xml
│ │ │ │ │ │ │ │ └── tooltip_frame_light.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_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
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml
│ │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ │ │ └── abc_edit_text_material.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_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
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ │ ├── abc_action_bar_title_item.xml
│ │ │ │ │ │ │ │ ├── abc_action_bar_up_container.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_list_item.xml
│ │ │ │ │ │ │ │ ├── abc_activity_chooser_view.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_overlay_action_mode.xml
│ │ │ │ │ │ │ │ ├── abc_screen_simple.xml
│ │ │ │ │ │ │ │ ├── abc_screen_toolbar.xml
│ │ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ │ │ │ │ │ │ ├── abc_search_view.xml
│ │ │ │ │ │ │ │ ├── abc_select_dialog_material.xml
│ │ │ │ │ │ │ │ ├── select_dialog_item_material.xml
│ │ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml
│ │ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml
│ │ │ │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml
│ │ │ │ │ │ │ │ └── tooltip.xml
│ │ │ │ │ │ │ ├── layout-v26
│ │ │ │ │ │ │ │ └── abc_screen_toolbar.xml
│ │ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ │ └── values-b+sr+Latn.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-rCA
│ │ │ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ │ └── values-zu
│ │ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── support-compat
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ │ └── android
│ │ │ │ │ │ │ └── support
│ │ │ │ │ │ │ └── v4
│ │ │ │ │ │ │ └── os
│ │ │ │ │ │ │ └── ResultReceiver.aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── public.txt
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ │ ├── drawable
│ │ │ │ │ │ │ │ ├── notification_bg_low.xml
│ │ │ │ │ │ │ │ ├── notification_bg.xml
│ │ │ │ │ │ │ │ ├── notification_icon_background.xml
│ │ │ │ │ │ │ │ └── notification_tile_bg.xml
│ │ │ │ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ │ │ └── notification_action_background.xml
│ │ │ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml
│ │ │ │ │ │ │ │ └── notification_template_part_time.xml
│ │ │ │ │ │ │ ├── layout-v16
│ │ │ │ │ │ │ │ └── notification_template_custom_big.xml
│ │ │ │ │ │ │ ├── layout-v21
│ │ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ │ └── notification_template_icon_group.xml
│ │ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ │ └── values-gu.xml
│ │ │ │ │ │ │ ├── values-hi
│ │ │ │ │ │ │ │ └── values-hi.xml
│ │ │ │ │ │ │ ├── values-hr
│ │ │ │ │ │ │ │ └── values-hr.xml
│ │ │ │ │ │ │ ├── values-hu
│ │ │ │ │ │ │ │ └── values-hu.xml
│ │ │ │ │ │ │ ├── values-hy
│ │ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ │ └── values-uz.xml
│ │ │ │ │ │ │ ├── values-v16
│ │ │ │ │ │ │ │ └── values-v16.xml
│ │ │ │ │ │ │ ├── values-v21
│ │ │ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ │ └── values-zu
│ │ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── support-core-ui
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── support-core-utils
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── support-fragment
│ │ │ │ │ │ └── 27.0.0
│ │ │ │ │ │ ├── aidl
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── jars
│ │ │ │ │ │ │ └── classes.jar
│ │ │ │ │ │ ├── jni
│ │ │ │ │ │ ├── libs
│ │ │ │ │ │ ├── res
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ └── support-vector-drawable
│ │ │ │ │ └── 27.0.0
│ │ │ │ │ ├── aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── assets
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── jni
│ │ │ │ │ ├── libs
│ │ │ │ │ ├── res
│ │ │ │ │ └── R.txt
│ │ │ │ └── com.android.support.constraint
│ │ │ │ └── constraint-layout
│ │ │ │ └── 1.0.2
│ │ │ │ ├── aidl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── assets
│ │ │ │ ├── jars
│ │ │ │ │ └── classes.jar
│ │ │ │ ├── jni
│ │ │ │ ├── libs
│ │ │ │ ├── res
│ │ │ │ │ └── values
│ │ │ │ │ └── values.xml
│ │ │ │ └── R.txt
│ │ │ ├── incremental
│ │ │ │ ├── compileDebugAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ │ ├── aapt-temp
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugResources
│ │ │ │ │ ├── aapt-temp
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ │ ├── values-en-rCA
│ │ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ └── values-zu
│ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── packageDebug
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ ├── file-input-save-data.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── iuGGYtszRUqjxQZHMwfEZr10uh8=
│ │ │ │ │ └── QGIFgz6h4634+y9tEJQYs4g2KQQ=
│ │ │ │ ├── packageDebugAndroidTest
│ │ │ │ │ └── zip-cache
│ │ │ │ ├── packageRelease
│ │ │ │ │ └── zip-cache
│ │ │ │ ├── processDebugAndroidTestResources
│ │ │ │ │ └── aapt-temp
│ │ │ │ └── processDebugResources
│ │ │ │ └── aapt-temp
│ │ │ ├── incremental-safeguard
│ │ │ │ └── debug
│ │ │ │ └── tag.txt
│ │ │ ├── jniLibs
│ │ │ │ └── debug
│ │ │ ├── manifest
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── tmp
│ │ │ ├── manifests
│ │ │ │ ├── full
│ │ │ │ │ └── debug
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── instant-run
│ │ │ │ └── debug
│ │ │ ├── pre-dexed
│ │ │ │ └── debug
│ │ │ │ ├── android.arch.lifecycle-runtime-1.0.0_91f2aec500c033889c44190cf497aff6a975cfba.jar
│ │ │ │ ├── com.allenliu.versionchecklib-library-1.8.6_927f67d593013968192aa96bd137c65360cfb635.jar
│ │ │ │ ├── com.android.support-animated-vector-drawable-27.0.0_396995999a727f94cd0d2ddc95a1be97662fa8c1.jar
│ │ │ │ ├── com.android.support-appcompat-v7-27.0.0_090591c0856da2540af17a77bb5a2e668f180c59.jar
│ │ │ │ ├── com.android.support.constraint-constraint-layout-1.0.2_8e9e007016793e09693ceefbdf15fc6e6aea52e0.jar
│ │ │ │ ├── com.android.support-support-compat-27.0.0_407274e259317fcd8bdb80ec1612c335abc52035.jar
│ │ │ │ ├── com.android.support-support-core-ui-27.0.0_70cdadb8f107e556d03e8636371fc930a2b80591.jar
│ │ │ │ ├── com.android.support-support-core-utils-27.0.0_3f0cd0ec6a8a359edf3534b61ed65aa136baea75.jar
│ │ │ │ ├── com.android.support-support-fragment-27.0.0_53949392cffa8fcbdee81da7159b752ffd1faf45.jar
│ │ │ │ ├── com.android.support-support-vector-drawable-27.0.0_678ebbc9db034884c3a6e5667c494806cc58d768.jar
│ │ │ │ ├── common-1.0.0_5187986293579113bd5764d9b2ecfca7a0411064.jar
│ │ │ │ ├── common-1.0.0_9b59878ad0079cbca4fb8a1e82d18541afbaba9a.jar
│ │ │ │ ├── constraint-layout-solver-1.0.2_9e44265d646ad7b43c49eba513f1ac96e59c627c.jar
│ │ │ │ ├── debug_e4183432420d7f0e4f93c9c6093dc1e3a62e4816.jar
│ │ │ │ ├── okhttp-3.8.1_b4e517e4360316611095111c8d8864a5f4b5f87f.jar
│ │ │ │ ├── okio-1.13.0_0807f0b9ba3d56746be48b58bd0fa403e8cddd8a.jar
│ │ │ │ └── support-annotations-27.0.0_b268ee18dfacee83650cd027873ac11487b4dd14.jar
│ │ │ ├── res
│ │ │ │ ├── merged
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── debug
│ │ │ │ │ └── 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
│ │ │ │ │ │ ├── tooltip_enter.xml
│ │ │ │ │ │ └── tooltip_exit.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_track.xml
│ │ │ │ │ │ ├── switch_thumb_material_dark.xml
│ │ │ │ │ │ └── switch_thumb_material_light.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_track.xml
│ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── custom_bg.png
│ │ │ │ │ │ ├── notification_bg_low.xml
│ │ │ │ │ │ ├── notification_bg.xml
│ │ │ │ │ │ ├── notification_icon_background.xml
│ │ │ │ │ │ ├── notification_tile_bg.xml
│ │ │ │ │ │ ├── progressbar_horizontal.xml
│ │ │ │ │ │ ├── shape_corner.xml
│ │ │ │ │ │ ├── tooltip_frame_dark.xml
│ │ │ │ │ │ └── tooltip_frame_light.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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml
│ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ ├── abc_edit_text_material.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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── abc_action_bar_title_item.xml
│ │ │ │ │ │ ├── abc_action_bar_up_container.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_list_item.xml
│ │ │ │ │ │ ├── abc_activity_chooser_view.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_overlay_action_mode.xml
│ │ │ │ │ │ ├── abc_screen_simple.xml
│ │ │ │ │ │ ├── abc_screen_toolbar.xml
│ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ │ │ │ │ ├── abc_search_view.xml
│ │ │ │ │ │ ├── abc_select_dialog_material.xml
│ │ │ │ │ │ ├── activity_custom_version_dialog_two.xml
│ │ │ │ │ │ ├── activity_custom_version_dialog.xml
│ │ │ │ │ │ ├── activity_main.xml
│ │ │ │ │ │ ├── activity_version_dialog.xml
│ │ │ │ │ │ ├── custom_dialog_one_layout.xml
│ │ │ │ │ │ ├── custom_dialog_two_layout.xml
│ │ │ │ │ │ ├── custom_download_layout.xml
│ │ │ │ │ │ ├── downloading_layout.xml
│ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ │ ├── notification_template_part_chronometer.xml
│ │ │ │ │ │ ├── notification_template_part_time.xml
│ │ │ │ │ │ ├── select_dialog_item_material.xml
│ │ │ │ │ │ ├── select_dialog_multichoice_material.xml
│ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml
│ │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml
│ │ │ │ │ │ └── tooltip.xml
│ │ │ │ │ ├── layout-v16
│ │ │ │ │ │ └── notification_template_custom_big.xml
│ │ │ │ │ ├── layout-v21
│ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ └── notification_template_icon_group.xml
│ │ │ │ │ ├── layout-v26
│ │ │ │ │ │ └── abc_screen_toolbar.xml
│ │ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xhdpi-v4
│ │ │ │ │ │ ├── dialog1.jpg
│ │ │ │ │ │ ├── dialog2.jpg
│ │ │ │ │ │ ├── dialog3.jpg
│ │ │ │ │ │ ├── dialog4.jpg
│ │ │ │ │ │ └── dialog5.jpg
│ │ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── mipmap-xxxhdpi
│ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-af
│ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ ├── values-am
│ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ ├── values-ar
│ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ ├── values-az
│ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ ├── values-be
│ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ ├── values-bg
│ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ ├── values-bn
│ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ ├── values-bs
│ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ └── values-en.xml
│ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ ├── values-en-rCA
│ │ │ │ │ │ └── values-en-rCA.xml
│ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ ├── values-en-rXC
│ │ │ │ │ │ └── values-en-rXC.xml
│ │ │ │ │ ├── values-es
│ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ ├── values-et
│ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ ├── values-eu
│ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ ├── values-fa
│ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ ├── values-fi
│ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ ├── values-fr
│ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ ├── values-gl
│ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ ├── values-gu
│ │ │ │ │ │ └── values-gu.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
│ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ ├── values-in
│ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ ├── values-is
│ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ ├── values-it
│ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ ├── values-iw
│ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ ├── values-ja
│ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ ├── values-ka
│ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ ├── values-kk
│ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ ├── values-km
│ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ ├── values-kn
│ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ ├── values-ko
│ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ ├── values-ky
│ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ ├── values-land
│ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ ├── values-lo
│ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ ├── values-lt
│ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ ├── values-lv
│ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ ├── values-mk
│ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ ├── values-ml
│ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ ├── values-mn
│ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ ├── values-mr
│ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ ├── values-ms
│ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ ├── values-my
│ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ ├── values-nb
│ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ ├── values-ne
│ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ ├── values-nl
│ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ ├── values-pa
│ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ ├── values-pl
│ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ ├── values-port
│ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ ├── values-pt
│ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ ├── values-ro
│ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ ├── values-ru
│ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ ├── values-si
│ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ ├── values-sk
│ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ ├── values-sl
│ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ ├── values-sq
│ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ ├── values-sr
│ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ ├── values-sv
│ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ ├── values-sw
│ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ ├── values-ta
│ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ ├── values-te
│ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ ├── values-th
│ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ ├── values-tl
│ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ ├── values-tr
│ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ ├── values-uk
│ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ ├── values-ur
│ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ ├── values-uz
│ │ │ │ │ │ └── values-uz.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-v26
│ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ ├── values-vi
│ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ ├── values-w820dp-v13
│ │ │ │ │ │ └── values-w820dp-v13.xml
│ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ ├── values-zu
│ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ └── xml
│ │ │ │ │ └── versionchecklib_file_paths.xml
│ │ │ │ ├── resources-debug-androidTest.ap_
│ │ │ │ └── resources-debug.ap_
│ │ │ ├── rs
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── lib
│ │ │ │ │ └── obj
│ │ │ │ └── debug
│ │ │ │ ├── lib
│ │ │ │ └── obj
│ │ │ ├── shaders
│ │ │ │ └── debug
│ │ │ ├── symbols
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ └── debug
│ │ │ │ └── R.txt
│ │ │ └── transforms
│ │ │ ├── dex
│ │ │ │ └── debug
│ │ │ │ └── folders
│ │ │ │ └── 1000
│ │ │ │ └── 1f
│ │ │ │ └── main
│ │ │ │ └── classes.dex
│ │ │ ├── mergeJavaRes
│ │ │ │ └── debug
│ │ │ │ └── jars
│ │ │ │ └── 2
│ │ │ │ └── 1f
│ │ │ │ └── main.jar
│ │ │ └── mergeJniLibs
│ │ │ └── debug
│ │ ├── outputs
│ │ │ ├── apk
│ │ │ │ └── sample-debug.apk
│ │ │ └── logs
│ │ │ └── manifest-merger-debug-report.txt
│ │ └── tmp
│ │ ├── compileDebugJavaWithJavac
│ │ │ └── emptySourcePathRef
│ │ └── expandedArchives
│ │ └── classes.jar_5rhkbcfilxerab23abm14grpt
│ │ └── com
│ │ └── allenliu
│ │ └── versionchecklib
│ │ ├── BuildConfig.class
│ │ ├── callback
│ │ │ ├── APKDownloadListener.class
│ │ │ ├── CommitClickListener.class
│ │ │ ├── DialogDismissListener.class
│ │ │ └── DownloadListener.class
│ │ ├── core
│ │ │ ├── AllenChecker.class
│ │ │ ├── AVersionService$1$1.class
│ │ │ ├── AVersionService$1.class
│ │ │ ├── AVersionService$2.class
│ │ │ ├── AVersionService$3.class
│ │ │ ├── AVersionService$VersionBroadCastReceiver.class
│ │ │ ├── AVersionService.class
│ │ │ ├── DownloadManager$1.class
│ │ │ ├── DownloadManager$2.class
│ │ │ ├── DownloadManager.class
│ │ │ ├── http
│ │ │ │ ├── AllenHttp$1.class
│ │ │ │ ├── AllenHttp$TrustAllCerts.class
│ │ │ │ ├── AllenHttp$TrustAllHostnameVerifier.class
│ │ │ │ ├── AllenHttp.class
│ │ │ │ ├── FileCallBack$1.class
│ │ │ │ ├── FileCallBack$2.class
│ │ │ │ ├── FileCallBack$3.class
│ │ │ │ ├── FileCallBack$4.class
│ │ │ │ ├── FileCallBack.class
│ │ │ │ ├── HttpHeaders.class
│ │ │ │ ├── HttpParams.class
│ │ │ │ └── HttpRequestMethod.class
│ │ │ ├── MyService.class
│ │ │ ├── PermissionDialogActivity.class
│ │ │ ├── VersionDialogActivity$1.class
│ │ │ ├── VersionDialogActivity$2.class
│ │ │ ├── VersionDialogActivity$3.class
│ │ │ ├── VersionDialogActivity$4.class
│ │ │ ├── VersionDialogActivity.class
│ │ │ ├── VersionFileProvider.class
│ │ │ ├── VersionParams$1.class
│ │ │ ├── VersionParams$Builder.class
│ │ │ └── VersionParams.class
│ │ └── utils
│ │ ├── ALog.class
│ │ ├── AppUtils.class
│ │ └── FileHelper.class
│ ├── build.gradle
│ ├── proguard-rules.pro
│ ├── sample.iml
│ └── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── com
│ │ └── allenliu
│ │ └── sample
│ │ ├── BaseDialog.java
│ │ ├── CustomVersionDialogActivity.java
│ │ ├── DemoService.java
│ │ └── MainActivity.java
│ └── res
│ ├── drawable
│ │ ├── custom_bg.png
│ │ └── shape_corner.xml
│ ├── layout
│ │ ├── activity_custom_version_dialog_two.xml
│ │ ├── activity_custom_version_dialog.xml
│ │ ├── activity_main.xml
│ │ ├── custom_dialog_one_layout.xml
│ │ ├── custom_dialog_two_layout.xml
│ │ └── custom_download_layout.xml
│ ├── mipmap-hdpi
│ │ └── ic_launcher.png
│ ├── mipmap-mdpi
│ │ └── ic_launcher.png
│ ├── mipmap-xhdpi
│ │ ├── dialog1.jpg
│ │ ├── dialog2.jpg
│ │ ├── dialog3.jpg
│ │ ├── dialog4.jpg
│ │ ├── dialog5.jpg
│ │ └── ic_launcher.png
│ ├── mipmap-xxhdpi
│ │ └── ic_launcher.png
│ ├── mipmap-xxxhdpi
│ │ └── ic_launcher.png
│ ├── values
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── values-w820dp
│ └── dimens.xml
└── settings.gradle
2227 directories, 6153 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论