实例介绍
附件为完整代码,使用jxl,直接接入项目即可使用,可以根据不同需求调用不同方法实现读取和写入的功能
【实例截图】
【核心代码】
excelanalysis
└── excelanalysis
├── build
│ ├── generated
│ │ ├── res
│ │ │ └── pngs
│ │ │ └── debug
│ │ │ ├── drawable-anydpi-v21
│ │ │ │ └── ic_launcher_background.xml
│ │ │ ├── drawable-hdpi
│ │ │ │ └── ic_launcher_background.png
│ │ │ ├── drawable-ldpi
│ │ │ │ └── ic_launcher_background.png
│ │ │ ├── drawable-mdpi
│ │ │ │ └── ic_launcher_background.png
│ │ │ ├── drawable-xhdpi
│ │ │ │ └── ic_launcher_background.png
│ │ │ ├── drawable-xxhdpi
│ │ │ │ └── ic_launcher_background.png
│ │ │ └── drawable-xxxhdpi
│ │ │ └── ic_launcher_background.png
│ │ └── source
│ │ ├── buildConfig
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ │ └── comvoice
│ │ │ │ └── example
│ │ │ │ └── zhangbin
│ │ │ │ └── excelanalysis
│ │ │ │ └── test
│ │ │ │ └── BuildConfig.java
│ │ │ └── debug
│ │ │ └── comvoice
│ │ │ └── example
│ │ │ └── zhangbin
│ │ │ └── excelanalysis
│ │ │ └── BuildConfig.java
│ │ └── r
│ │ └── 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
│ │ │ ├── mediacompat
│ │ │ │ └── R.java
│ │ │ ├── v4
│ │ │ │ └── R.java
│ │ │ └── v7
│ │ │ └── appcompat
│ │ │ └── R.java
│ │ └── comvoice
│ │ └── example
│ │ └── zhangbin
│ │ └── excelanalysis
│ │ └── R.java
│ ├── intermediates
│ │ ├── assets
│ │ │ └── debug
│ │ │ └── android_text.xls
│ │ ├── blame
│ │ │ └── res
│ │ │ └── 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-rAU.json
│ │ │ │ ├── values-en-rGB.json
│ │ │ │ ├── values-en-rIN.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-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-anydpi-v21.json
│ │ │ ├── drawable-hdpi.json
│ │ │ ├── drawable-hdpi-v4.json
│ │ │ ├── drawable.json
│ │ │ ├── drawable-ldpi.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.json
│ │ │ ├── drawable-mdpi-v4.json
│ │ │ ├── drawable-v21.json
│ │ │ ├── drawable-v23.json
│ │ │ ├── drawable-v24.json
│ │ │ ├── drawable-xhdpi.json
│ │ │ ├── drawable-xhdpi-v4.json
│ │ │ ├── drawable-xxhdpi.json
│ │ │ ├── drawable-xxhdpi-v4.json
│ │ │ ├── drawable-xxxhdpi.json
│ │ │ ├── drawable-xxxhdpi-v4.json
│ │ │ ├── layout.json
│ │ │ ├── layout-v16.json
│ │ │ ├── layout-v21.json
│ │ │ ├── layout-v26.json
│ │ │ ├── mipmap-anydpi-v26.json
│ │ │ ├── mipmap-hdpi.json
│ │ │ ├── mipmap-mdpi.json
│ │ │ ├── mipmap-xhdpi.json
│ │ │ ├── mipmap-xxhdpi.json
│ │ │ └── mipmap-xxxhdpi.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
│ │ │ │ ├── mediacompat
│ │ │ │ │ ├── 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
│ │ │ │ ├── v4
│ │ │ │ │ ├── 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
│ │ │ └── comvoice
│ │ │ └── example
│ │ │ └── zhangbin
│ │ │ └── excelanalysis
│ │ │ ├── BuildConfig.class
│ │ │ ├── ExcelBean.class
│ │ │ ├── MainActivity$1.class
│ │ │ ├── MainActivity$2$1.class
│ │ │ ├── MainActivity$2.class
│ │ │ ├── MainActivity$3.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.class
│ │ │ └── XlsDataUtil.class
│ │ ├── exploded-aar
│ │ │ ├── android.arch.lifecycle
│ │ │ │ └── runtime
│ │ │ │ └── 1.0.0
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── jars
│ │ │ │ │ └── classes.jar
│ │ │ │ ├── proguard.txt
│ │ │ │ └── R.txt
│ │ │ ├── com.android.support
│ │ │ │ ├── animated-vector-drawable
│ │ │ │ │ └── 26.1.0
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── appcompat-v7
│ │ │ │ │ └── 26.1.0
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── 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_bar_view_list_nav_layout.xml
│ │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml
│ │ │ │ │ │ │ ├── abc_action_menu_layout.xml
│ │ │ │ │ │ │ ├── abc_action_mode_bar.xml
│ │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml
│ │ │ │ │ │ │ ├── abc_activity_chooser_view_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-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-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
│ │ │ │ │ └── 26.1.0
│ │ │ │ │ ├── aidl
│ │ │ │ │ │ └── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── v4
│ │ │ │ │ │ └── os
│ │ │ │ │ │ └── ResultReceiver.aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── 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
│ │ │ │ │ └── 26.1.0
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── support-core-utils
│ │ │ │ │ └── 26.1.0
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ ├── support-fragment
│ │ │ │ │ └── 26.1.0
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ ├── support-media-compat
│ │ │ │ │ └── 26.1.0
│ │ │ │ │ ├── aidl
│ │ │ │ │ │ └── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── v4
│ │ │ │ │ │ └── media
│ │ │ │ │ │ ├── MediaDescriptionCompat.aidl
│ │ │ │ │ │ ├── MediaMetadataCompat.aidl
│ │ │ │ │ │ ├── RatingCompat.aidl
│ │ │ │ │ │ └── session
│ │ │ │ │ │ ├── MediaSessionCompat.aidl
│ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl
│ │ │ │ │ │ └── PlaybackStateCompat.aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── public.txt
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── notification_media_action.xml
│ │ │ │ │ │ │ ├── notification_media_cancel_action.xml
│ │ │ │ │ │ │ ├── notification_template_big_media_custom.xml
│ │ │ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml
│ │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml
│ │ │ │ │ │ │ ├── notification_template_big_media.xml
│ │ │ │ │ │ │ ├── notification_template_lines_media.xml
│ │ │ │ │ │ │ ├── notification_template_media_custom.xml
│ │ │ │ │ │ │ └── notification_template_media.xml
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-v21
│ │ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ │ └── values-v24
│ │ │ │ │ │ └── values-v24.xml
│ │ │ │ │ └── R.txt
│ │ │ │ ├── support-v4
│ │ │ │ │ └── 26.1.0
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ └── support-vector-drawable
│ │ │ │ └── 26.1.0
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── jars
│ │ │ │ │ └── classes.jar
│ │ │ │ └── R.txt
│ │ │ ├── com.android.support.constraint
│ │ │ │ └── constraint-layout
│ │ │ │ └── 1.0.2
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── jars
│ │ │ │ │ └── classes.jar
│ │ │ │ ├── res
│ │ │ │ │ └── values
│ │ │ │ │ └── values.xml
│ │ │ │ └── R.txt
│ │ │ ├── com.android.support.test
│ │ │ │ ├── rules
│ │ │ │ │ └── 1.0.1
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── jars
│ │ │ │ │ │ └── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ └── runner
│ │ │ │ └── 1.0.1
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── jars
│ │ │ │ │ └── classes.jar
│ │ │ │ ├── proguard.txt
│ │ │ │ └── R.txt
│ │ │ └── com.android.support.test.espresso
│ │ │ ├── espresso-core
│ │ │ │ └── 3.0.1
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── jars
│ │ │ │ │ └── classes.jar
│ │ │ │ ├── proguard.txt
│ │ │ │ └── R.txt
│ │ │ └── espresso-idling-resource
│ │ │ └── 3.0.1
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── jars
│ │ │ │ └── classes.jar
│ │ │ └── R.txt
│ │ ├── incremental
│ │ │ ├── compileDebugAidl
│ │ │ │ └── dependency.store
│ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ └── dependency.store
│ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ ├── compile-file-map.properties
│ │ │ │ └── merger.xml
│ │ │ ├── mergeDebugAssets
│ │ │ │ └── merger.xml
│ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ └── merger.xml
│ │ │ ├── mergeDebugResources
│ │ │ │ ├── compile-file-map.properties
│ │ │ │ └── merger.xml
│ │ │ ├── mergeDebugShaders
│ │ │ │ └── merger.xml
│ │ │ └── packageDebug
│ │ │ ├── dex-renamer-state.txt
│ │ │ ├── file-input-save-data.txt
│ │ │ └── zip-cache
│ │ │ ├── fnFB9x9h1AlDAnBsMAffnBBJksw=
│ │ │ └── Vvz7uThGaxT1FdNGekvEPhnFevg=
│ │ ├── incremental-safeguard
│ │ │ └── debug
│ │ │ └── tag.txt
│ │ ├── manifest
│ │ │ └── androidTest
│ │ │ └── debug
│ │ │ └── AndroidManifest.xml
│ │ ├── manifests
│ │ │ └── full
│ │ │ └── debug
│ │ │ └── AndroidManifest.xml
│ │ ├── pre-dexed
│ │ │ └── debug
│ │ │ ├── android.arch.lifecycle-runtime-1.0.0_b7ab4f076209a54fc2219f0631f31f2f507e38f2.jar
│ │ │ ├── com.android.support-animated-vector-drawable-26.1.0_4cff1193c2559d873ee47e2893bb6f40382ca46e.jar
│ │ │ ├── com.android.support-appcompat-v7-26.1.0_c724659865c02ad416db1cee4a3af9cdfdbe94d9.jar
│ │ │ ├── com.android.support.constraint-constraint-layout-1.0.2_cae28eca2e06b1aab57363e9234e6975982b229c.jar
│ │ │ ├── com.android.support-support-compat-26.1.0_39fc927eb6e1d7ac33a42b2b64e13b952117708c.jar
│ │ │ ├── com.android.support-support-core-ui-26.1.0_06eecf59fd59e1a2aea8a4d36f191dc5663ab7a1.jar
│ │ │ ├── com.android.support-support-core-utils-26.1.0_4fe2de40d36300ae91315f36897120f0f864177e.jar
│ │ │ ├── com.android.support-support-fragment-26.1.0_ea0bd25539318fd4f27e7b3997a21a4203b86f11.jar
│ │ │ ├── com.android.support-support-media-compat-26.1.0_1a5a2bedc2cd698ee4ea491c77fd4eb60fd33800.jar
│ │ │ ├── com.android.support-support-v4-26.1.0_f8e2e8a7abd690f8174d90ab9ead95f6c82f495b.jar
│ │ │ ├── com.android.support-support-vector-drawable-26.1.0_eca86c0d472c93321ef68ef75e63a1a7fdfabd72.jar
│ │ │ ├── common-1.0.0_03cc456fe91fea7d8db1110e7cbbd0a7f7453c85.jar
│ │ │ ├── common-1.0.0_525b00547bbcc544a0a1fee8886c3d69fd9438b4.jar
│ │ │ ├── constraint-layout-solver-1.0.2_76c1562b975ef2b9e97dec3b8e563d7e6d6948c7.jar
│ │ │ ├── debug_c5c01265f533884ccd7c5811af068b92e7d9c68a.jar
│ │ │ ├── jxl_59dd711c7a6588b20bd8307205ae39f4f305a527.jar
│ │ │ └── support-annotations-26.1.0_6bb0ed89a9cec852b2247acf6aaddddf05bc91c3.jar
│ │ ├── res
│ │ │ ├── merged
│ │ │ │ └── debug
│ │ │ │ ├── anim
│ │ │ │ │ ├── abc_fade_in.xml
│ │ │ │ │ ├── abc_fade_out.xml
│ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml
│ │ │ │ │ ├── abc_popup_enter.xml
│ │ │ │ │ ├── abc_popup_exit.xml
│ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml
│ │ │ │ │ ├── abc_slide_in_bottom.xml
│ │ │ │ │ ├── abc_slide_in_top.xml
│ │ │ │ │ ├── abc_slide_out_bottom.xml
│ │ │ │ │ ├── abc_slide_out_top.xml
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── tooltip_frame_dark.xml
│ │ │ │ │ └── tooltip_frame_light.xml
│ │ │ │ ├── drawable-anydpi-v21
│ │ │ │ │ └── ic_launcher_background.xml
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── 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-ldpi
│ │ │ │ │ └── ic_launcher_background.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
│ │ │ │ │ └── ic_launcher_background.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-v24
│ │ │ │ │ └── ic_launcher_foreground.xml
│ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── 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
│ │ │ │ │ └── ic_launcher_background.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
│ │ │ │ │ └── ic_launcher_background.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_bar_view_list_nav_layout.xml
│ │ │ │ │ ├── abc_action_menu_item_layout.xml
│ │ │ │ │ ├── abc_action_menu_layout.xml
│ │ │ │ │ ├── abc_action_mode_bar.xml
│ │ │ │ │ ├── abc_action_mode_close_item_material.xml
│ │ │ │ │ ├── abc_activity_chooser_view_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_main.xml
│ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ ├── notification_media_action.xml
│ │ │ │ │ ├── notification_media_cancel_action.xml
│ │ │ │ │ ├── notification_template_big_media_custom.xml
│ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml
│ │ │ │ │ ├── notification_template_big_media_narrow.xml
│ │ │ │ │ ├── notification_template_big_media.xml
│ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ ├── notification_template_lines_media.xml
│ │ │ │ │ ├── notification_template_media_custom.xml
│ │ │ │ │ ├── notification_template_media.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-anydpi-v26
│ │ │ │ │ ├── ic_launcher_round.xml
│ │ │ │ │ └── ic_launcher.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
│ │ │ │ │ └── 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-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
│ │ │ ├── resources-debug-androidTest.ap_
│ │ │ └── resources-debug.ap_
│ │ ├── symbols
│ │ │ └── debug
│ │ │ └── R.txt
│ │ └── transforms
│ │ ├── dex
│ │ │ └── debug
│ │ │ └── folders
│ │ │ └── 1000
│ │ │ └── 1f
│ │ │ └── main
│ │ │ └── classes.dex
│ │ └── mergeJavaRes
│ │ └── debug
│ │ └── jars
│ │ └── 2
│ │ └── 1f
│ │ └── main.jar
│ ├── outputs
│ │ ├── apk
│ │ │ └── excelanalysis-debug.apk
│ │ └── logs
│ │ └── manifest-merger-debug-report.txt
│ └── tmp
│ └── expandedArchives
│ └── jxl.jar_5xdb7oxl2pc2vhrxu1k5z0q74
│ ├── common
│ │ ├── Assert.class
│ │ ├── AssertionFailed.class
│ │ ├── BaseUnit.class
│ │ ├── LengthConverter.class
│ │ ├── LengthUnit.class
│ │ ├── log
│ │ │ ├── LoggerName.class
│ │ │ └── SimpleLogger.class
│ │ └── Logger.class
│ └── jxl
│ ├── biff
│ │ ├── AutoFilter.class
│ │ ├── AutoFilterInfoRecord.class
│ │ ├── AutoFilterRecord.class
│ │ ├── BaseCellFeatures$ValidationCondition.class
│ │ ├── BaseCellFeatures.class
│ │ ├── BaseCompoundFile$PropertyStorage.class
│ │ ├── BaseCompoundFile.class
│ │ ├── BuiltInFormat.class
│ │ ├── BuiltInName.class
│ │ ├── BuiltInStyle.class
│ │ ├── ByteArray.class
│ │ ├── ByteData.class
│ │ ├── CellReferenceHelper.class
│ │ ├── ConditionalFormat.class
│ │ ├── ConditionalFormatRangeRecord$Range.class
│ │ ├── ConditionalFormatRangeRecord.class
│ │ ├── ConditionalFormatRecord.class
│ │ ├── ContinueRecord.class
│ │ ├── CountryCode.class
│ │ ├── DataValidation.class
│ │ ├── DataValidityListRecord.class
│ │ ├── DataValiditySettingsRecord.class
│ │ ├── DisplayFormat.class
│ │ ├── DoubleHelper.class
│ │ ├── drawing
│ │ │ ├── BlipStoreEntry.class
│ │ │ ├── BlipType.class
│ │ │ ├── BStoreContainer.class
│ │ │ ├── Button.class
│ │ │ ├── Chart.class
│ │ │ ├── Chunk.class
│ │ │ ├── ChunkType.class
│ │ │ ├── ClientAnchor.class
│ │ │ ├── ClientData.class
│ │ │ ├── ClientTextBox.class
│ │ │ ├── ComboBox.class
│ │ │ ├── Comment.class
│ │ │ ├── Dg.class
│ │ │ ├── DgContainer.class
│ │ │ ├── Dgg$Cluster.class
│ │ │ ├── Dgg.class
│ │ │ ├── DggContainer.class
│ │ │ ├── Drawing$ImageAnchorProperties.class
│ │ │ ├── Drawing2.class
│ │ │ ├── Drawing.class
│ │ │ ├── DrawingData.class
│ │ │ ├── DrawingDataException.class
│ │ │ ├── DrawingGroup.class
│ │ │ ├── DrawingGroupObject.class
│ │ │ ├── EscherAtom.class
│ │ │ ├── EscherContainer.class
│ │ │ ├── EscherDisplay.class
│ │ │ ├── EscherRecord.class
│ │ │ ├── EscherRecordData.class
│ │ │ ├── EscherRecordType.class
│ │ │ ├── EscherStream.class
│ │ │ ├── MsoDrawingGroupRecord.class
│ │ │ ├── MsoDrawingRecord.class
│ │ │ ├── NoteRecord.class
│ │ │ ├── ObjRecord$ObjType.class
│ │ │ ├── ObjRecord.class
│ │ │ ├── Opt$Property.class
│ │ │ ├── Opt.class
│ │ │ ├── Origin.class
│ │ │ ├── PNGReader.class
│ │ │ ├── ShapeType.class
│ │ │ ├── SheetDrawingWriter.class
│ │ │ ├── Sp.class
│ │ │ ├── SpContainer.class
│ │ │ ├── Spgr.class
│ │ │ ├── SpgrContainer.class
│ │ │ ├── SplitMenuColors.class
│ │ │ └── TextObjectRecord.class
│ │ ├── DValParser.class
│ │ ├── DVParser$Condition.class
│ │ ├── DVParser$DVType.class
│ │ ├── DVParser$ErrorStyle.class
│ │ ├── DVParser.class
│ │ ├── EmptyCell.class
│ │ ├── EncodedURLHelper.class
│ │ ├── FilterModeRecord.class
│ │ ├── FontRecord$1.class
│ │ ├── FontRecord$Biff7.class
│ │ ├── FontRecord.class
│ │ ├── Fonts.class
│ │ ├── FormatRecord$1.class
│ │ ├── FormatRecord$BiffType.class
│ │ ├── FormatRecord.class
│ │ ├── FormattingRecords.class
│ │ ├── formula
│ │ │ ├── Add.class
│ │ │ ├── Area3d.class
│ │ │ ├── Area.class
│ │ │ ├── ArgumentSeparator.class
│ │ │ ├── Attribute.class
│ │ │ ├── BinaryOperator.class
│ │ │ ├── BooleanValue.class
│ │ │ ├── BuiltInFunction.class
│ │ │ ├── CellReference3d.class
│ │ │ ├── CellReference.class
│ │ │ ├── CellReferenceError.class
│ │ │ ├── CloseParentheses.class
│ │ │ ├── ColumnRange3d.class
│ │ │ ├── ColumnRange.class
│ │ │ ├── Concatenate.class
│ │ │ ├── Divide.class
│ │ │ ├── DoubleValue.class
│ │ │ ├── Equal.class
│ │ │ ├── ErrorConstant.class
│ │ │ ├── ExternalSheet.class
│ │ │ ├── FormulaErrorCode.class
│ │ │ ├── FormulaException$FormulaMessage.class
│ │ │ ├── FormulaException.class
│ │ │ ├── FormulaParser.class
│ │ │ ├── Function.class
│ │ │ ├── FunctionNames.class
│ │ │ ├── GreaterEqual.class
│ │ │ ├── GreaterThan.class
│ │ │ ├── IntegerValue.class
│ │ │ ├── LessEqual.class
│ │ │ ├── LessThan.class
│ │ │ ├── MemArea.class
│ │ │ ├── MemFunc.class
│ │ │ ├── Minus.class
│ │ │ ├── MissingArg.class
│ │ │ ├── Multiply.class
│ │ │ ├── Name.class
│ │ │ ├── NameRange.class
│ │ │ ├── NotEqual.class
│ │ │ ├── NumberValue.class
│ │ │ ├── OpenParentheses.class
│ │ │ ├── Operand.class
│ │ │ ├── Operator.class
│ │ │ ├── Parenthesis.class
│ │ │ ├── ParsedThing.class
│ │ │ ├── ParseItem.class
│ │ │ ├── Parser.class
│ │ │ ├── Percent.class
│ │ │ ├── Plus.class
│ │ │ ├── Power.class
│ │ │ ├── RangeSeparator.class
│ │ │ ├── SharedFormulaArea.class
│ │ │ ├── SharedFormulaCellReference.class
│ │ │ ├── StringFormulaParser.class
│ │ │ ├── StringFunction.class
│ │ │ ├── StringOperator.class
│ │ │ ├── StringParseItem.class
│ │ │ ├── StringValue.class
│ │ │ ├── SubExpression.class
│ │ │ ├── Subtract.class
│ │ │ ├── Token.class
│ │ │ ├── TokenFormulaParser.class
│ │ │ ├── UnaryMinus.class
│ │ │ ├── UnaryOperator.class
│ │ │ ├── UnaryPlus.class
│ │ │ ├── Union.class
│ │ │ ├── VariableArgFunction.class
│ │ │ └── Yylex.class
│ │ ├── FormulaData.class
│ │ ├── HeaderFooter$Contents.class
│ │ ├── HeaderFooter.class
│ │ ├── IndexMapping.class
│ │ ├── IntegerHelper.class
│ │ ├── NumFormatRecordsException.class
│ │ ├── PaletteRecord.class
│ │ ├── RangeImpl.class
│ │ ├── RecordData.class
│ │ ├── SheetRangeImpl.class
│ │ ├── StringHelper.class
│ │ ├── Type$1.class
│ │ ├── Type$ArbitraryType.class
│ │ ├── Type.class
│ │ ├── WorkbookMethods.class
│ │ ├── WorkspaceInformationRecord.class
│ │ ├── WritableRecordData.class
│ │ ├── XFRecord$1.class
│ │ ├── XFRecord$BiffType.class
│ │ ├── XFRecord$XFType.class
│ │ └── XFRecord.class
│ ├── BooleanCell.class
│ ├── BooleanFormulaCell.class
│ ├── Cell.class
│ ├── CellFeatures.class
│ ├── CellFormat.class
│ ├── CellReferenceHelper.class
│ ├── CellType.class
│ ├── CellView.class
│ ├── DateCell.class
│ ├── DateFormulaCell.class
│ ├── demo
│ │ ├── BiffDump.class
│ │ ├── CSV.class
│ │ ├── Demo.class
│ │ ├── Escher.class
│ │ ├── EscherDrawingGroup.class
│ │ ├── Features.class
│ │ ├── Formulas.class
│ │ ├── PropertySetsReader.class
│ │ ├── ReadWrite.class
│ │ ├── WriteAccess.class
│ │ ├── Write.class
│ │ └── XML.class
│ ├── ErrorCell.class
│ ├── ErrorFormulaCell.class
│ ├── format
│ │ ├── Alignment.class
│ │ ├── BoldStyle.class
│ │ ├── Border.class
│ │ ├── BorderLineStyle.class
│ │ ├── CellFormat.class
│ │ ├── Colour.class
│ │ ├── Font.class
│ │ ├── Format.class
│ │ ├── Orientation.class
│ │ ├── PageOrientation.class
│ │ ├── PaperSize.class
│ │ ├── Pattern.class
│ │ ├── RGB.class
│ │ ├── ScriptStyle.class
│ │ ├── UnderlineStyle.class
│ │ └── VerticalAlignment.class
│ ├── FormulaCell.class
│ ├── HeaderFooter$Contents.class
│ ├── HeaderFooter.class
│ ├── Hyperlink.class
│ ├── Image.class
│ ├── JXLException.class
│ ├── LabelCell.class
│ ├── NumberCell.class
│ ├── NumberFormulaCell.class
│ ├── Range.class
│ ├── read
│ │ └── biff
│ │ ├── BaseSharedFormulaRecord.class
│ │ ├── BiffException$BiffMessage.class
│ │ ├── BiffException.class
│ │ ├── BiffRecordReader.class
│ │ ├── BlankCell.class
│ │ ├── BOFRecord.class
│ │ ├── BooleanFormulaRecord.class
│ │ ├── BooleanRecord.class
│ │ ├── BottomMarginRecord.class
│ │ ├── BoundsheetRecord$1.class
│ │ ├── BoundsheetRecord$Biff7.class
│ │ ├── BoundsheetRecord.class
│ │ ├── ButtonPropertySetRecord.class
│ │ ├── CalcModeRecord.class
│ │ ├── CellFeaturesAccessor.class
│ │ ├── CellValue.class
│ │ ├── CentreRecord.class
│ │ ├── CodepageRecord.class
│ │ ├── ColumnInfoRecord.class
│ │ ├── CompoundFile.class
│ │ ├── CountryRecord.class
│ │ ├── DateFormulaRecord.class
│ │ ├── DateRecord.class
│ │ ├── DefaultColumnWidthRecord.class
│ │ ├── DefaultRowHeightRecord.class
│ │ ├── DimensionRecord$1.class
│ │ ├── DimensionRecord$Biff7.class
│ │ ├── DimensionRecord.class
│ │ ├── ErrorFormulaRecord.class
│ │ ├── ErrorRecord.class
│ │ ├── ExternalNameRecord.class
│ │ ├── ExternalSheetRecord$1.class
│ │ ├── ExternalSheetRecord$Biff7.class
│ │ ├── ExternalSheetRecord$XTI.class
│ │ ├── ExternalSheetRecord.class
│ │ ├── File.class
│ │ ├── FooterRecord$1.class
│ │ ├── FooterRecord$Biff7.class
│ │ ├── FooterRecord.class
│ │ ├── Formula.class
│ │ ├── FormulaRecord$1.class
│ │ ├── FormulaRecord$IgnoreSharedFormula.class
│ │ ├── FormulaRecord.class
│ │ ├── GuttersRecord.class
│ │ ├── HeaderRecord$1.class
│ │ ├── HeaderRecord$Biff7.class
│ │ ├── HeaderRecord.class
│ │ ├── HorizontalPageBreaksRecord$1.class
│ │ ├── HorizontalPageBreaksRecord$Biff7.class
│ │ ├── HorizontalPageBreaksRecord.class
│ │ ├── HyperlinkRecord$1.class
│ │ ├── HyperlinkRecord$LinkType.class
│ │ ├── HyperlinkRecord.class
│ │ ├── LabelRecord$1.class
│ │ ├── LabelRecord$Biff7.class
│ │ ├── LabelRecord.class
│ │ ├── LabelSSTRecord.class
│ │ ├── LeftMarginRecord.class
│ │ ├── MarginRecord.class
│ │ ├── MergedCellsRecord.class
│ │ ├── MulBlankCell.class
│ │ ├── MulBlankRecord.class
│ │ ├── MulRKRecord.class
│ │ ├── NameRecord$1.class
│ │ ├── NameRecord$Biff7.class
│ │ ├── NameRecord$NameRange.class
│ │ ├── NameRecord.class
│ │ ├── NineteenFourRecord.class
│ │ ├── NumberFormulaRecord.class
│ │ ├── NumberRecord.class
│ │ ├── NumberValue.class
│ │ ├── PaletteRecord.class
│ │ ├── PaneRecord.class
│ │ ├── PasswordException.class
│ │ ├── PasswordRecord.class
│ │ ├── PLSRecord.class
│ │ ├── PrintGridLinesRecord.class
│ │ ├── PrintHeadersRecord.class
│ │ ├── ProtectRecord.class
│ │ ├── Record.class
│ │ ├── RightMarginRecord.class
│ │ ├── RKHelper.class
│ │ ├── RKRecord.class
│ │ ├── RowRecord.class
│ │ ├── RStringRecord$1.class
│ │ ├── RStringRecord$Biff7.class
│ │ ├── RStringRecord.class
│ │ ├── SaveRecalcRecord.class
│ │ ├── SCLRecord.class
│ │ ├── SetupRecord.class
│ │ ├── SharedBooleanFormulaRecord.class
│ │ ├── SharedDateFormulaRecord.class
│ │ ├── SharedErrorFormulaRecord.class
│ │ ├── SharedFormulaRecord.class
│ │ ├── SharedNumberFormulaRecord.class
│ │ ├── SharedStringFormulaRecord$1.class
│ │ ├── SharedStringFormulaRecord$EmptyString.class
│ │ ├── SharedStringFormulaRecord.class
│ │ ├── SheetImpl.class
│ │ ├── SheetReader.class
│ │ ├── SortRecord.class
│ │ ├── SSTRecord$1.class
│ │ ├── SSTRecord$BooleanHolder.class
│ │ ├── SSTRecord$ByteArrayHolder.class
│ │ ├── SSTRecord.class
│ │ ├── StringFormulaRecord.class
│ │ ├── SupbookRecord$1.class
│ │ ├── SupbookRecord$Type.class
│ │ ├── SupbookRecord.class
│ │ ├── TopMarginRecord.class
│ │ ├── VerticalPageBreaksRecord$1.class
│ │ ├── VerticalPageBreaksRecord$Biff7.class
│ │ ├── VerticalPageBreaksRecord.class
│ │ ├── Window2Record$1.class
│ │ ├── Window2Record$Biff7.class
│ │ ├── Window2Record.class
│ │ └── WorkbookParser.class
│ ├── Sheet.class
│ ├── SheetSettings.class
│ ├── StringFormulaCell.class
│ ├── Workbook.class
│ ├── WorkbookSettings.class
│ └── write
│ ├── Alignment.class
│ ├── biff
│ │ ├── ArbitraryRecord.class
│ │ ├── BackupRecord.class
│ │ ├── BlankRecord.class
│ │ ├── BOFRecord$1.class
│ │ ├── BOFRecord$SheetBOF.class
│ │ ├── BOFRecord$WorkbookGlobalsBOF.class
│ │ ├── BOFRecord.class
│ │ ├── BookboolRecord.class
│ │ ├── BooleanRecord.class
│ │ ├── BottomMarginRecord.class
│ │ ├── BoundsheetRecord.class
│ │ ├── ButtonPropertySetRecord.class
│ │ ├── CalcCountRecord.class
│ │ ├── CalcModeRecord$CalcMode.class
│ │ ├── CalcModeRecord.class
│ │ ├── CellValue.class
│ │ ├── CellXFRecord.class
│ │ ├── CodepageRecord.class
│ │ ├── ColumnInfoRecord.class
│ │ ├── ColumnsExceededException.class
│ │ ├── CompoundFile$ReadPropertyStorage.class
│ │ ├── CompoundFile.class
│ │ ├── CopyAdditionalPropertySetsException.class
│ │ ├── CountryRecord.class
│ │ ├── DateFormatRecord.class
│ │ ├── DateRecord$GMTDate.class
│ │ ├── DateRecord.class
│ │ ├── DBCellRecord.class
│ │ ├── DefaultColumnWidth.class
│ │ ├── DefaultRowHeightRecord.class
│ │ ├── DeltaRecord.class
│ │ ├── DimensionRecord.class
│ │ ├── DSFRecord.class
│ │ ├── EOFRecord.class
│ │ ├── ExcelDataOutput.class
│ │ ├── ExtendedSSTRecord.class
│ │ ├── ExternalNameRecord.class
│ │ ├── ExternalSheetRecord$XTI.class
│ │ ├── ExternalSheetRecord.class
│ │ ├── File.class
│ │ ├── FileDataOutput.class
│ │ ├── FooterRecord.class
│ │ ├── FormulaRecord.class
│ │ ├── FunctionGroupCountRecord.class
│ │ ├── GridSetRecord.class
│ │ ├── GuttersRecord.class
│ │ ├── HeaderRecord.class
│ │ ├── HideobjRecord.class
│ │ ├── HorizontalCentreRecord.class
│ │ ├── HorizontalPageBreaksRecord.class
│ │ ├── HyperlinkRecord$1.class
│ │ ├── HyperlinkRecord$LinkType.class
│ │ ├── HyperlinkRecord.class
│ │ ├── IndexRecord.class
│ │ ├── InterfaceEndRecord.class
│ │ ├── InterfaceHeaderRecord.class
│ │ ├── IterationRecord.class
│ │ ├── JxlWriteException$WriteMessage.class
│ │ ├── JxlWriteException.class
│ │ ├── LabelRecord.class
│ │ ├── LeftMarginRecord.class
│ │ ├── MarginRecord.class
│ │ ├── MemoryDataOutput.class
│ │ ├── MergedCells.class
│ │ ├── MergedCellsRecord.class
│ │ ├── MMSRecord.class
│ │ ├── MulRKRecord.class
│ │ ├── NameRecord$NameRange.class
│ │ ├── NameRecord.class
│ │ ├── NineteenFourRecord.class
│ │ ├── NumberFormatRecord$NonValidatingFormat.class
│ │ ├── NumberFormatRecord.class
│ │ ├── NumberRecord.class
│ │ ├── ObjectProtectRecord.class
│ │ ├── ObjProjRecord.class
│ │ ├── PaletteRecord.class
│ │ ├── PaneRecord.class
│ │ ├── PasswordRecord.class
│ │ ├── PLSRecord.class
│ │ ├── PrecisionRecord.class
│ │ ├── PrintGridLinesRecord.class
│ │ ├── PrintHeadersRecord.class
│ │ ├── Prot4RevPassRecord.class
│ │ ├── Prot4RevRecord.class
│ │ ├── ProtectRecord.class
│ │ ├── ReadBooleanFormulaRecord.class
│ │ ├── ReadDateFormulaRecord.class
│ │ ├── ReadErrorFormulaRecord.class
│ │ ├── ReadFormulaRecord.class
│ │ ├── ReadNumberFormulaRecord.class
│ │ ├── ReadStringFormulaRecord.class
│ │ ├── RefModeRecord.class
│ │ ├── RefreshAllRecord.class
│ │ ├── RightMarginRecord.class
│ │ ├── RowRecord.class
│ │ ├── RowsExceededException.class
│ │ ├── SaveRecalcRecord.class
│ │ ├── ScenarioProtectRecord.class
│ │ ├── SCLRecord.class
│ │ ├── SelectionRecord$PaneType.class
│ │ ├── SelectionRecord.class
│ │ ├── SetupRecord.class
│ │ ├── SharedStrings.class
│ │ ├── SheetCopier.class
│ │ ├── SheetWriter.class
│ │ ├── SortRecord.class
│ │ ├── SSTContinueRecord.class
│ │ ├── SSTRecord.class
│ │ ├── StringRecord.class
│ │ ├── Styles.class
│ │ ├── StyleXFRecord.class
│ │ ├── SupbookRecord$1.class
│ │ ├── SupbookRecord$SupbookType.class
│ │ ├── SupbookRecord.class
│ │ ├── TabIdRecord.class
│ │ ├── TopMarginRecord.class
│ │ ├── UsesElfsRecord.class
│ │ ├── VerticalCentreRecord.class
│ │ ├── VerticalPageBreaksRecord.class
│ │ ├── Weird1Record.class
│ │ ├── Window1Record.class
│ │ ├── Window2Record.class
│ │ ├── WindowProtectRecord.class
│ │ ├── WritableFontRecord.class
│ │ ├── WritableFonts.class
│ │ ├── WritableFormattingRecords.class
│ │ ├── WritableSheetCopier.class
│ │ ├── WritableSheetImpl$1.class
│ │ ├── WritableSheetImpl$ColumnInfoComparator.class
│ │ ├── WritableSheetImpl.class
│ │ ├── WritableWorkbookImpl.class
│ │ └── WriteAccessRecord.class
│ ├── Blank.class
│ ├── BoldStyle.class
│ ├── Boolean.class
│ ├── Border.class
│ ├── BorderLineStyle.class
│ ├── Colour.class
│ ├── DateFormat.class
│ ├── DateFormats$BuiltInFormat.class
│ ├── DateFormats.class
│ ├── DateTime.class
│ ├── Font.class
│ ├── Formula.class
│ ├── Label.class
│ ├── Number.class
│ ├── NumberFormat.class
│ ├── NumberFormats$BuiltInFormat.class
│ ├── NumberFormats.class
│ ├── Pattern.class
│ ├── VerticalAlignment.class
│ ├── WritableCell.class
│ ├── WritableCellFeatures.class
│ ├── WritableCellFormat.class
│ ├── WritableFont$BoldStyle.class
│ ├── WritableFont$FontName.class
│ ├── WritableFont.class
│ ├── WritableHyperlink.class
│ ├── WritableImage.class
│ ├── WritableSheet.class
│ ├── WritableWorkbook.class
│ └── WriteException.class
├── build.gradle
├── excelanalysis.iml
├── libs
│ └── jxl.jar
├── proguard-rules.pro
└── src
├── androidTest
│ └── java
│ └── comvoice
│ └── example
│ └── zhangbin
│ └── excelanalysis
│ └── ExampleInstrumentedTest.java
├── main
│ ├── AndroidManifest.xml
│ ├── assets
│ │ └── android_text.xls
│ ├── java
│ │ └── comvoice
│ │ └── example
│ │ └── zhangbin
│ │ └── excelanalysis
│ │ ├── ExcelBean.java
│ │ ├── MainActivity.java
│ │ └── XlsDataUtil.java
│ └── res
│ ├── drawable
│ │ └── ic_launcher_background.xml
│ ├── drawable-v24
│ │ └── ic_launcher_foreground.xml
│ ├── layout
│ │ └── activity_main.xml
│ ├── mipmap-anydpi-v26
│ │ ├── ic_launcher_round.xml
│ │ └── ic_launcher.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
└── comvoice
└── example
└── zhangbin
└── excelanalysis
└── ExampleUnitTest.java
592 directories, 2034 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论