在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 手机端通过wifi遥控小车stm32程序和android程序

手机端通过wifi遥控小车stm32程序和android程序

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:34.05M
  • 下载次数:14
  • 浏览次数:247
  • 发布时间:2020-09-20
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
手机端通过wifi遥控小车stm32程序和android程序,仅实现前进和后退的功能,无舵机驱动。
【实例截图】
【核心代码】
遥控小车程序
└── 遥控小车程序
├── stm32程序
│   ├── Doc
│   │   └── readme.txt
│   ├── keilkill.bat
│   ├── Libraries
│   │   ├── CMSIS
│   │   │   ├── core_cm3.c
│   │   │   ├── core_cm3.h
│   │   │   ├── startup
│   │   │   │   ├── startup_stm32f10x_cl.s
│   │   │   │   ├── startup_stm32f10x_hd.s
│   │   │   │   ├── startup_stm32f10x_hd_vl.s
│   │   │   │   ├── startup_stm32f10x_ld.s
│   │   │   │   ├── startup_stm32f10x_ld_vl.s
│   │   │   │   ├── startup_stm32f10x_md.s
│   │   │   │   ├── startup_stm32f10x_md_vl.s
│   │   │   │   └── startup_stm32f10x_xl.s
│   │   │   ├── stm32f10x.h
│   │   │   ├── system_stm32f10x.c
│   │   │   └── system_stm32f10x.h
│   │   └── FWlib
│   │   ├── inc
│   │   │   ├── misc.h
│   │   │   ├── stm32f10x_adc.h
│   │   │   ├── stm32f10x_bkp.h
│   │   │   ├── stm32f10x_can.h
│   │   │   ├── stm32f10x_cec.h
│   │   │   ├── stm32f10x_crc.h
│   │   │   ├── stm32f10x_dac.h
│   │   │   ├── stm32f10x_dbgmcu.h
│   │   │   ├── stm32f10x_dma.h
│   │   │   ├── stm32f10x_exti.h
│   │   │   ├── stm32f10x_flash.h
│   │   │   ├── stm32f10x_fsmc.h
│   │   │   ├── stm32f10x_gpio.h
│   │   │   ├── stm32f10x_i2c.h
│   │   │   ├── stm32f10x_iwdg.h
│   │   │   ├── stm32f10x_pwr.h
│   │   │   ├── stm32f10x_rcc.h
│   │   │   ├── stm32f10x_rtc.h
│   │   │   ├── stm32f10x_sdio.h
│   │   │   ├── stm32f10x_spi.h
│   │   │   ├── stm32f10x_tim.h
│   │   │   ├── stm32f10x_usart.h
│   │   │   └── stm32f10x_wwdg.h
│   │   └── src
│   │   ├── misc.c
│   │   ├── stm32f10x_adc.c
│   │   ├── stm32f10x_bkp.c
│   │   ├── stm32f10x_can.c
│   │   ├── stm32f10x_cec.c
│   │   ├── stm32f10x_crc.c
│   │   ├── stm32f10x_dac.c
│   │   ├── stm32f10x_dbgmcu.c
│   │   ├── stm32f10x_dma.c
│   │   ├── stm32f10x_exti.c
│   │   ├── stm32f10x_flash.c
│   │   ├── stm32f10x_fsmc.c
│   │   ├── stm32f10x_gpio.c
│   │   ├── stm32f10x_i2c.c
│   │   ├── stm32f10x_iwdg.c
│   │   ├── stm32f10x_pwr.c
│   │   ├── stm32f10x_rcc.c
│   │   ├── stm32f10x_rtc.c
│   │   ├── stm32f10x_sdio.c
│   │   ├── stm32f10x_spi.c
│   │   ├── stm32f10x_tim.c
│   │   ├── stm32f10x_usart.c
│   │   └── stm32f10x_wwdg.c
│   ├── Listing
│   │   ├── startup_stm32f10x_hd.lst
│   │   └── Template.map
│   ├── Output
│   │   ├── bsp_gpio.crf
│   │   ├── bsp_gpio.d
│   │   ├── bsp_gpio.o
│   │   ├── bsp_systick.crf
│   │   ├── bsp_systick.d
│   │   ├── bsp_systick.o
│   │   ├── bsp_tim2base.crf
│   │   ├── bsp_tim2base.d
│   │   ├── bsp_tim2base.o
│   │   ├── bsp_usart1.crf
│   │   ├── bsp_usart1.d
│   │   ├── bsp_usart1.o
│   │   ├── bsp_usart2.crf
│   │   ├── bsp_usart2.d
│   │   ├── bsp_usart2.o
│   │   ├── core_cm3.crf
│   │   ├── core_cm3.d
│   │   ├── core_cm3.o
│   │   ├── ExtDll.iex
│   │   ├── main.crf
│   │   ├── main.d
│   │   ├── main.o
│   │   ├── misc.crf
│   │   ├── misc.d
│   │   ├── misc.o
│   │   ├── pwm.crf
│   │   ├── pwm.d
│   │   ├── pwm.o
│   │   ├── startup_stm32f10x_hd.d
│   │   ├── startup_stm32f10x_hd.o
│   │   ├── stm32f10x_adc.crf
│   │   ├── stm32f10x_adc.d
│   │   ├── stm32f10x_adc.o
│   │   ├── stm32f10x_bkp.crf
│   │   ├── stm32f10x_bkp.d
│   │   ├── stm32f10x_bkp.o
│   │   ├── stm32f10x_can.crf
│   │   ├── stm32f10x_can.d
│   │   ├── stm32f10x_can.o
│   │   ├── stm32f10x_cec.crf
│   │   ├── stm32f10x_cec.d
│   │   ├── stm32f10x_cec.o
│   │   ├── stm32f10x_crc.crf
│   │   ├── stm32f10x_crc.d
│   │   ├── stm32f10x_crc.o
│   │   ├── stm32f10x_dac.crf
│   │   ├── stm32f10x_dac.d
│   │   ├── stm32f10x_dac.o
│   │   ├── stm32f10x_dbgmcu.crf
│   │   ├── stm32f10x_dbgmcu.d
│   │   ├── stm32f10x_dbgmcu.o
│   │   ├── stm32f10x_dma.crf
│   │   ├── stm32f10x_dma.d
│   │   ├── stm32f10x_dma.o
│   │   ├── stm32f10x_exti.crf
│   │   ├── stm32f10x_exti.d
│   │   ├── stm32f10x_exti.o
│   │   ├── stm32f10x_flash.crf
│   │   ├── stm32f10x_flash.d
│   │   ├── stm32f10x_flash.o
│   │   ├── stm32f10x_fsmc.crf
│   │   ├── stm32f10x_fsmc.d
│   │   ├── stm32f10x_fsmc.o
│   │   ├── stm32f10x_gpio.crf
│   │   ├── stm32f10x_gpio.d
│   │   ├── stm32f10x_gpio.o
│   │   ├── stm32f10x_i2c.crf
│   │   ├── stm32f10x_i2c.d
│   │   ├── stm32f10x_i2c.o
│   │   ├── stm32f10x_it.crf
│   │   ├── stm32f10x_it.d
│   │   ├── stm32f10x_it.o
│   │   ├── stm32f10x_iwdg.crf
│   │   ├── stm32f10x_iwdg.d
│   │   ├── stm32f10x_iwdg.o
│   │   ├── stm32f10x_pwr.crf
│   │   ├── stm32f10x_pwr.d
│   │   ├── stm32f10x_pwr.o
│   │   ├── stm32f10x_rcc.crf
│   │   ├── stm32f10x_rcc.d
│   │   ├── stm32f10x_rcc.o
│   │   ├── stm32f10x_rtc.crf
│   │   ├── stm32f10x_rtc.d
│   │   ├── stm32f10x_rtc.o
│   │   ├── stm32f10x_sdio.crf
│   │   ├── stm32f10x_sdio.d
│   │   ├── stm32f10x_sdio.o
│   │   ├── stm32f10x_spi.crf
│   │   ├── stm32f10x_spi.d
│   │   ├── stm32f10x_spi.o
│   │   ├── stm32f10x_tim.crf
│   │   ├── stm32f10x_tim.d
│   │   ├── stm32f10x_tim.o
│   │   ├── stm32f10x_usart.crf
│   │   ├── stm32f10x_usart.d
│   │   ├── stm32f10x_usart.o
│   │   ├── stm32f10x_wwdg.crf
│   │   ├── stm32f10x_wwdg.d
│   │   ├── stm32f10x_wwdg.o
│   │   ├── sys.crf
│   │   ├── sys.d
│   │   ├── sys.o
│   │   ├── system_stm32f10x.crf
│   │   ├── system_stm32f10x.d
│   │   ├── system_stm32f10x.o
│   │   ├── Template.axf
│   │   ├── Template.build_log.htm
│   │   ├── Template.hex
│   │   ├── Template.htm
│   │   ├── Template.lnp
│   │   ├── Template.plg
│   │   ├── Template.sct
│   │   ├── Template.tra
│   │   ├── wifi_config.crf
│   │   ├── wifi_config.d
│   │   ├── wifi_config.o
│   │   ├── wifi_function.crf
│   │   ├── wifi_function.d
│   │   └── wifi_function.o
│   ├── Project
│   │   └── RVMDK(uv4)
│   │   ├── iSO-STM32_USART1(interrupt).dep
│   │   ├── iSO-STM32.uvgui.Administrator
│   │   ├── iSO-STM32.uvgui_Administrator.bak
│   │   ├── iSO-STM32.uvgui.Dale
│   │   ├── iSO-STM32.uvgui_Dale.bak
│   │   ├── iSO-STM32.uvgui.fire
│   │   ├── iSO-STM32.uvgui.SDingBa
│   │   ├── iSO-STM32.uvopt
│   │   ├── iSO-STM32_uvopt.bak
│   │   ├── iSO-STM32.uvproj
│   │   ├── iSO-STM32_uvproj.bak
│   │   ├── iSO-STM32_WF-ESP8266.dep
│   │   ├── iSO-STM32_WiFi.dep
│   │   ├── iSO-STM32_WiFi_USART.dep
│   │   ├── JLinkLog.txt
│   │   ├── JLink Regs CM3.txt
│   │   └── JLinkSettings.ini
│   └── User
│   ├── gpio
│   │   ├── bsp_gpio.c
│   │   └── bsp_gpio.h
│   ├── main.c
│   ├── pwm
│   │   ├── pwm.c
│   │   └── pwm.h
│   ├── stm32f10x_conf.h
│   ├── stm32f10x_it.c
│   ├── stm32f10x_it.h
│   ├── sys
│   │   ├── sys.c
│   │   └── sys.h
│   ├── SysTick
│   │   ├── bsp_SysTick.c
│   │   └── bsp_SysTick.h
│   ├── usart
│   │   ├── bsp_usart1.c
│   │   ├── bsp_usart1.h
│   │   ├── bsp_usart2.c
│   │   └── bsp_usart2.h
│   └── wifi
│   ├── wifi_config.c
│   ├── wifi_config.h
│   ├── wifi_function.c
│   └── wifi_function.h
└── 手机App程序
└── Cat_Client
├── app
│   ├── app.iml
│   ├── build
│   │   ├── generated
│   │   │   └── source
│   │   │   ├── buildConfig
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── com
│   │   │   │   │   └── homlamfai
│   │   │   │   │   └── cat_client
│   │   │   │   │   └── test
│   │   │   │   │   └── BuildConfig.java
│   │   │   │   └── debug
│   │   │   │   └── com
│   │   │   │   └── homlamfai
│   │   │   │   └── cat_client
│   │   │   │   └── BuildConfig.java
│   │   │   └── r
│   │   │   ├── androidTest
│   │   │   │   └── debug
│   │   │   │   ├── android
│   │   │   │   │   └── support
│   │   │   │   │   └── test
│   │   │   │   │   ├── espresso
│   │   │   │   │   │   └── R.java
│   │   │   │   │   └── rule
│   │   │   │   │   └── R.java
│   │   │   │   └── com
│   │   │   │   └── homlamfai
│   │   │   │   └── cat_client
│   │   │   │   └── test
│   │   │   │   └── R.java
│   │   │   └── debug
│   │   │   ├── android
│   │   │   │   └── support
│   │   │   │   └── v7
│   │   │   │   └── appcompat
│   │   │   │   └── R.java
│   │   │   └── com
│   │   │   └── homlamfai
│   │   │   └── cat_client
│   │   │   └── R.java
│   │   ├── intermediates
│   │   │   ├── blame
│   │   │   │   └── res
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── multi
│   │   │   │   │   └── values.json
│   │   │   │   └── debug
│   │   │   │   ├── multi
│   │   │   │   │   ├── color.json
│   │   │   │   │   ├── values-af.json
│   │   │   │   │   ├── values-am.json
│   │   │   │   │   ├── values-ar.json
│   │   │   │   │   ├── values-az-rAZ.json
│   │   │   │   │   ├── values-be-rBY.json
│   │   │   │   │   ├── values-bg.json
│   │   │   │   │   ├── values-bn-rBD.json
│   │   │   │   │   ├── values-bs-rBA.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-rEE.json
│   │   │   │   │   ├── values-eu-rES.json
│   │   │   │   │   ├── values-fa.json
│   │   │   │   │   ├── values-fi.json
│   │   │   │   │   ├── values-fr.json
│   │   │   │   │   ├── values-fr-rCA.json
│   │   │   │   │   ├── values-gl-rES.json
│   │   │   │   │   ├── values-gu-rIN.json
│   │   │   │   │   ├── values-h720dp-v13.json
│   │   │   │   │   ├── values-hdpi-v4.json
│   │   │   │   │   ├── values-hi.json
│   │   │   │   │   ├── values-hr.json
│   │   │   │   │   ├── values-hu.json
│   │   │   │   │   ├── values-hy-rAM.json
│   │   │   │   │   ├── values-in.json
│   │   │   │   │   ├── values-is-rIS.json
│   │   │   │   │   ├── values-it.json
│   │   │   │   │   ├── values-iw.json
│   │   │   │   │   ├── values-ja.json
│   │   │   │   │   ├── values.json
│   │   │   │   │   ├── values-ka-rGE.json
│   │   │   │   │   ├── values-kk-rKZ.json
│   │   │   │   │   ├── values-km-rKH.json
│   │   │   │   │   ├── values-kn-rIN.json
│   │   │   │   │   ├── values-ko.json
│   │   │   │   │   ├── values-ky-rKG.json
│   │   │   │   │   ├── values-land.json
│   │   │   │   │   ├── values-large-v4.json
│   │   │   │   │   ├── values-ldltr-v21.json
│   │   │   │   │   ├── values-lo-rLA.json
│   │   │   │   │   ├── values-lt.json
│   │   │   │   │   ├── values-lv.json
│   │   │   │   │   ├── values-mk-rMK.json
│   │   │   │   │   ├── values-ml-rIN.json
│   │   │   │   │   ├── values-mn-rMN.json
│   │   │   │   │   ├── values-mr-rIN.json
│   │   │   │   │   ├── values-ms-rMY.json
│   │   │   │   │   ├── values-my-rMM.json
│   │   │   │   │   ├── values-nb.json
│   │   │   │   │   ├── values-ne-rNP.json
│   │   │   │   │   ├── values-night-v8.json
│   │   │   │   │   ├── values-nl.json
│   │   │   │   │   ├── values-pa-rIN.json
│   │   │   │   │   ├── values-pl.json
│   │   │   │   │   ├── values-port.json
│   │   │   │   │   ├── values-pt.json
│   │   │   │   │   ├── values-pt-rBR.json
│   │   │   │   │   ├── values-pt-rPT.json
│   │   │   │   │   ├── values-ro.json
│   │   │   │   │   ├── values-ru.json
│   │   │   │   │   ├── values-si-rLK.json
│   │   │   │   │   ├── values-sk.json
│   │   │   │   │   ├── values-sl.json
│   │   │   │   │   ├── values-sq-rAL.json
│   │   │   │   │   ├── values-sr.json
│   │   │   │   │   ├── values-sv.json
│   │   │   │   │   ├── values-sw600dp-v13.json
│   │   │   │   │   ├── values-sw.json
│   │   │   │   │   ├── values-ta-rIN.json
│   │   │   │   │   ├── values-te-rIN.json
│   │   │   │   │   ├── values-th.json
│   │   │   │   │   ├── values-tl.json
│   │   │   │   │   ├── values-tr.json
│   │   │   │   │   ├── values-uk.json
│   │   │   │   │   ├── values-ur-rPK.json
│   │   │   │   │   ├── values-uz-rUZ.json
│   │   │   │   │   ├── values-v11.json
│   │   │   │   │   ├── values-v12.json
│   │   │   │   │   ├── values-v13.json
│   │   │   │   │   ├── values-v14.json
│   │   │   │   │   ├── values-v16.json
│   │   │   │   │   ├── values-v17.json
│   │   │   │   │   ├── values-v18.json
│   │   │   │   │   ├── values-v21.json
│   │   │   │   │   ├── values-v22.json
│   │   │   │   │   ├── values-v23.json
│   │   │   │   │   ├── values-v24.json
│   │   │   │   │   ├── values-v25.json
│   │   │   │   │   ├── values-vi.json
│   │   │   │   │   ├── values-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-v11.json
│   │   │   │   ├── layout-v16.json
│   │   │   │   ├── layout-v21.json
│   │   │   │   ├── mipmap-hdpi.json
│   │   │   │   ├── mipmap-mdpi.json
│   │   │   │   ├── mipmap-xhdpi.json
│   │   │   │   ├── mipmap-xxhdpi.json
│   │   │   │   └── mipmap-xxxhdpi.json
│   │   │   ├── builds
│   │   │   │   └── debug
│   │   │   │   ├── 670063029299550
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 673831559836299
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 673856243379186
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 733722823746321
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 735482552589699
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 737521883778725
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 737600993196943
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 739226756004780
│   │   │   │   │   └── classes.dex
│   │   │   │   └── 742036376064453
│   │   │   │   └── classes.dex
│   │   │   ├── classes
│   │   │   │   └── debug
│   │   │   │   ├── android
│   │   │   │   │   └── support
│   │   │   │   │   └── 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
│   │   │   │   └── homlamfai
│   │   │   │   └── cat_client
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── MainActivity$1.class
│   │   │   │   ├── MainActivity$2.class
│   │   │   │   ├── MainActivity$3.class
│   │   │   │   ├── MainActivity$4.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
│   │   │   ├── exploded-aar
│   │   │   │   ├── com.android.support
│   │   │   │   │   ├── animated-vector-drawable
│   │   │   │   │   │   └── 25.3.0
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   ├── jars
│   │   │   │   │   │   │   └── classes.jar
│   │   │   │   │   │   └── proguard.txt
│   │   │   │   │   ├── appcompat-v7
│   │   │   │   │   │   └── 25.3.0
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   ├── annotations.zip
│   │   │   │   │   │   ├── 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
│   │   │   │   │   │   │   ├── color
│   │   │   │   │   │   │   │   ├── abc_background_cache_hint_selector_material_dark.xml
│   │   │   │   │   │   │   │   ├── abc_background_cache_hint_selector_material_light.xml
│   │   │   │   │   │   │   │   ├── abc_btn_colored_borderless_text_material.xml
│   │   │   │   │   │   │   │   ├── abc_btn_colored_text_material.xml
│   │   │   │   │   │   │   │   ├── abc_hint_foreground_material_dark.xml
│   │   │   │   │   │   │   │   ├── abc_hint_foreground_material_light.xml
│   │   │   │   │   │   │   │   ├── abc_primary_text_disable_only_material_dark.xml
│   │   │   │   │   │   │   │   ├── abc_primary_text_disable_only_material_light.xml
│   │   │   │   │   │   │   │   ├── abc_primary_text_material_dark.xml
│   │   │   │   │   │   │   │   ├── abc_primary_text_material_light.xml
│   │   │   │   │   │   │   │   ├── abc_search_url_text.xml
│   │   │   │   │   │   │   │   ├── abc_secondary_text_material_dark.xml
│   │   │   │   │   │   │   │   ├── abc_secondary_text_material_light.xml
│   │   │   │   │   │   │   │   ├── abc_tint_btn_checkable.xml
│   │   │   │   │   │   │   │   ├── abc_tint_default.xml
│   │   │   │   │   │   │   │   ├── abc_tint_edittext.xml
│   │   │   │   │   │   │   │   ├── abc_tint_seek_thumb.xml
│   │   │   │   │   │   │   │   ├── abc_tint_spinner.xml
│   │   │   │   │   │   │   │   ├── abc_tint_switch_thumb.xml
│   │   │   │   │   │   │   │   ├── abc_tint_switch_track.xml
│   │   │   │   │   │   │   │   ├── 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_thumb.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
│   │   │   │   │   │   │   ├── 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_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
│   │   │   │   │   │   │   │   ├── notification_action_tombstone.xml
│   │   │   │   │   │   │   │   ├── notification_action.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
│   │   │   │   │   │   │   ├── layout-v11
│   │   │   │   │   │   │   │   ├── 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
│   │   │   │   │   │   │   ├── 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-rAZ
│   │   │   │   │   │   │   │   └── values-az-rAZ.xml
│   │   │   │   │   │   │   ├── values-be-rBY
│   │   │   │   │   │   │   │   └── values-be-rBY.xml
│   │   │   │   │   │   │   ├── values-bg
│   │   │   │   │   │   │   │   └── values-bg.xml
│   │   │   │   │   │   │   ├── values-bn-rBD
│   │   │   │   │   │   │   │   └── values-bn-rBD.xml
│   │   │   │   │   │   │   ├── values-bs-rBA
│   │   │   │   │   │   │   │   └── values-bs-rBA.xml
│   │   │   │   │   │   │   ├── values-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-rEE
│   │   │   │   │   │   │   │   └── values-et-rEE.xml
│   │   │   │   │   │   │   ├── values-eu-rES
│   │   │   │   │   │   │   │   └── values-eu-rES.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-rES
│   │   │   │   │   │   │   │   └── values-gl-rES.xml
│   │   │   │   │   │   │   ├── values-gu-rIN
│   │   │   │   │   │   │   │   └── values-gu-rIN.xml
│   │   │   │   │   │   │   ├── values-h720dp-v13
│   │   │   │   │   │   │   │   └── values-h720dp-v13.xml
│   │   │   │   │   │   │   ├── values-hdpi-v4
│   │   │   │   │   │   │   │   └── values-hdpi-v4.xml
│   │   │   │   │   │   │   ├── values-hi
│   │   │   │   │   │   │   │   └── values-hi.xml
│   │   │   │   │   │   │   ├── values-hr
│   │   │   │   │   │   │   │   └── values-hr.xml
│   │   │   │   │   │   │   ├── values-hu
│   │   │   │   │   │   │   │   └── values-hu.xml
│   │   │   │   │   │   │   ├── values-hy-rAM
│   │   │   │   │   │   │   │   └── values-hy-rAM.xml
│   │   │   │   │   │   │   ├── values-in
│   │   │   │   │   │   │   │   └── values-in.xml
│   │   │   │   │   │   │   ├── values-is-rIS
│   │   │   │   │   │   │   │   └── values-is-rIS.xml
│   │   │   │   │   │   │   ├── values-it
│   │   │   │   │   │   │   │   └── values-it.xml
│   │   │   │   │   │   │   ├── values-iw
│   │   │   │   │   │   │   │   └── values-iw.xml
│   │   │   │   │   │   │   ├── values-ja
│   │   │   │   │   │   │   │   └── values-ja.xml
│   │   │   │   │   │   │   ├── values-ka-rGE
│   │   │   │   │   │   │   │   └── values-ka-rGE.xml
│   │   │   │   │   │   │   ├── values-kk-rKZ
│   │   │   │   │   │   │   │   └── values-kk-rKZ.xml
│   │   │   │   │   │   │   ├── values-km-rKH
│   │   │   │   │   │   │   │   └── values-km-rKH.xml
│   │   │   │   │   │   │   ├── values-kn-rIN
│   │   │   │   │   │   │   │   └── values-kn-rIN.xml
│   │   │   │   │   │   │   ├── values-ko
│   │   │   │   │   │   │   │   └── values-ko.xml
│   │   │   │   │   │   │   ├── values-ky-rKG
│   │   │   │   │   │   │   │   └── values-ky-rKG.xml
│   │   │   │   │   │   │   ├── values-land
│   │   │   │   │   │   │   │   └── values-land.xml
│   │   │   │   │   │   │   ├── values-large-v4
│   │   │   │   │   │   │   │   └── values-large-v4.xml
│   │   │   │   │   │   │   ├── values-ldltr-v21
│   │   │   │   │   │   │   │   └── values-ldltr-v21.xml
│   │   │   │   │   │   │   ├── values-lo-rLA
│   │   │   │   │   │   │   │   └── values-lo-rLA.xml
│   │   │   │   │   │   │   ├── values-lt
│   │   │   │   │   │   │   │   └── values-lt.xml
│   │   │   │   │   │   │   ├── values-lv
│   │   │   │   │   │   │   │   └── values-lv.xml
│   │   │   │   │   │   │   ├── values-mk-rMK
│   │   │   │   │   │   │   │   └── values-mk-rMK.xml
│   │   │   │   │   │   │   ├── values-ml-rIN
│   │   │   │   │   │   │   │   └── values-ml-rIN.xml
│   │   │   │   │   │   │   ├── values-mn-rMN
│   │   │   │   │   │   │   │   └── values-mn-rMN.xml
│   │   │   │   │   │   │   ├── values-mr-rIN
│   │   │   │   │   │   │   │   └── values-mr-rIN.xml
│   │   │   │   │   │   │   ├── values-ms-rMY
│   │   │   │   │   │   │   │   └── values-ms-rMY.xml
│   │   │   │   │   │   │   ├── values-my-rMM
│   │   │   │   │   │   │   │   └── values-my-rMM.xml
│   │   │   │   │   │   │   ├── values-nb
│   │   │   │   │   │   │   │   └── values-nb.xml
│   │   │   │   │   │   │   ├── values-ne-rNP
│   │   │   │   │   │   │   │   └── values-ne-rNP.xml
│   │   │   │   │   │   │   ├── values-night-v8
│   │   │   │   │   │   │   │   └── values-night-v8.xml
│   │   │   │   │   │   │   ├── values-nl
│   │   │   │   │   │   │   │   └── values-nl.xml
│   │   │   │   │   │   │   ├── values-pa-rIN
│   │   │   │   │   │   │   │   └── values-pa-rIN.xml
│   │   │   │   │   │   │   ├── values-pl
│   │   │   │   │   │   │   │   └── values-pl.xml
│   │   │   │   │   │   │   ├── values-port
│   │   │   │   │   │   │   │   └── values-port.xml
│   │   │   │   │   │   │   ├── values-pt
│   │   │   │   │   │   │   │   └── 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-rLK
│   │   │   │   │   │   │   │   └── values-si-rLK.xml
│   │   │   │   │   │   │   ├── values-sk
│   │   │   │   │   │   │   │   └── values-sk.xml
│   │   │   │   │   │   │   ├── values-sl
│   │   │   │   │   │   │   │   └── values-sl.xml
│   │   │   │   │   │   │   ├── values-sq-rAL
│   │   │   │   │   │   │   │   └── values-sq-rAL.xml
│   │   │   │   │   │   │   ├── values-sr
│   │   │   │   │   │   │   │   └── values-sr.xml
│   │   │   │   │   │   │   ├── values-sv
│   │   │   │   │   │   │   │   └── values-sv.xml
│   │   │   │   │   │   │   ├── values-sw
│   │   │   │   │   │   │   │   └── values-sw.xml
│   │   │   │   │   │   │   ├── values-sw600dp-v13
│   │   │   │   │   │   │   │   └── values-sw600dp-v13.xml
│   │   │   │   │   │   │   ├── values-ta-rIN
│   │   │   │   │   │   │   │   └── values-ta-rIN.xml
│   │   │   │   │   │   │   ├── values-te-rIN
│   │   │   │   │   │   │   │   └── values-te-rIN.xml
│   │   │   │   │   │   │   ├── values-th
│   │   │   │   │   │   │   │   └── values-th.xml
│   │   │   │   │   │   │   ├── values-tl
│   │   │   │   │   │   │   │   └── values-tl.xml
│   │   │   │   │   │   │   ├── values-tr
│   │   │   │   │   │   │   │   └── values-tr.xml
│   │   │   │   │   │   │   ├── values-uk
│   │   │   │   │   │   │   │   └── values-uk.xml
│   │   │   │   │   │   │   ├── values-ur-rPK
│   │   │   │   │   │   │   │   └── values-ur-rPK.xml
│   │   │   │   │   │   │   ├── values-uz-rUZ
│   │   │   │   │   │   │   │   └── values-uz-rUZ.xml
│   │   │   │   │   │   │   ├── values-v11
│   │   │   │   │   │   │   │   └── values-v11.xml
│   │   │   │   │   │   │   ├── values-v12
│   │   │   │   │   │   │   │   └── values-v12.xml
│   │   │   │   │   │   │   ├── values-v13
│   │   │   │   │   │   │   │   └── values-v13.xml
│   │   │   │   │   │   │   ├── values-v14
│   │   │   │   │   │   │   │   └── values-v14.xml
│   │   │   │   │   │   │   ├── values-v16
│   │   │   │   │   │   │   │   └── values-v16.xml
│   │   │   │   │   │   │   ├── values-v17
│   │   │   │   │   │   │   │   └── values-v17.xml
│   │   │   │   │   │   │   ├── values-v18
│   │   │   │   │   │   │   │   └── values-v18.xml
│   │   │   │   │   │   │   ├── values-v21
│   │   │   │   │   │   │   │   └── values-v21.xml
│   │   │   │   │   │   │   ├── values-v22
│   │   │   │   │   │   │   │   └── values-v22.xml
│   │   │   │   │   │   │   ├── values-v23
│   │   │   │   │   │   │   │   └── values-v23.xml
│   │   │   │   │   │   │   ├── values-v24
│   │   │   │   │   │   │   │   └── values-v24.xml
│   │   │   │   │   │   │   ├── values-v25
│   │   │   │   │   │   │   │   └── values-v25.xml
│   │   │   │   │   │   │   ├── values-vi
│   │   │   │   │   │   │   │   └── values-vi.xml
│   │   │   │   │   │   │   ├── values-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
│   │   │   │   │   │   └── 25.3.0
│   │   │   │   │   │   ├── aidl
│   │   │   │   │   │   │   └── android
│   │   │   │   │   │   │   └── support
│   │   │   │   │   │   │   └── v4
│   │   │   │   │   │   │   └── os
│   │   │   │   │   │   │   └── ResultReceiver.aidl
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   ├── annotations.zip
│   │   │   │   │   │   └── jars
│   │   │   │   │   │   └── classes.jar
│   │   │   │   │   ├── support-core-ui
│   │   │   │   │   │   └── 25.3.0
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   ├── annotations.zip
│   │   │   │   │   │   ├── jars
│   │   │   │   │   │   │   └── classes.jar
│   │   │   │   │   │   └── proguard.txt
│   │   │   │   │   ├── support-core-utils
│   │   │   │   │   │   └── 25.3.0
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   ├── annotations.zip
│   │   │   │   │   │   └── jars
│   │   │   │   │   │   └── classes.jar
│   │   │   │   │   ├── support-fragment
│   │   │   │   │   │   └── 25.3.0
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   ├── annotations.zip
│   │   │   │   │   │   └── jars
│   │   │   │   │   │   └── classes.jar
│   │   │   │   │   ├── support-media-compat
│   │   │   │   │   │   └── 25.3.0
│   │   │   │   │   │   ├── aidl
│   │   │   │   │   │   │   └── android
│   │   │   │   │   │   │   └── support
│   │   │   │   │   │   │   └── v4
│   │   │   │   │   │   │   └── media
│   │   │   │   │   │   │   ├── MediaDescriptionCompat.aidl
│   │   │   │   │   │   │   ├── MediaMetadataCompat.aidl
│   │   │   │   │   │   │   ├── RatingCompat.aidl
│   │   │   │   │   │   │   └── session
│   │   │   │   │   │   │   ├── MediaSessionCompat.aidl
│   │   │   │   │   │   │   ├── ParcelableVolumeInfo.aidl
│   │   │   │   │   │   │   └── PlaybackStateCompat.aidl
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   ├── annotations.zip
│   │   │   │   │   │   └── jars
│   │   │   │   │   │   └── classes.jar
│   │   │   │   │   ├── support-v4
│   │   │   │   │   │   └── 25.3.0
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   └── jars
│   │   │   │   │   │   └── classes.jar
│   │   │   │   │   └── support-vector-drawable
│   │   │   │   │   └── 25.3.0
│   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   └── jars
│   │   │   │   │   └── classes.jar
│   │   │   │   ├── com.android.support.test
│   │   │   │   │   ├── exposed-instrumentation-api-publish
│   │   │   │   │   │   └── 0.5
│   │   │   │   │   │   ├── aapt
│   │   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   └── jars
│   │   │   │   │   │   └── classes.jar
│   │   │   │   │   ├── rules
│   │   │   │   │   │   └── 0.5
│   │   │   │   │   │   ├── aapt
│   │   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   │   ├── annotations.zip
│   │   │   │   │   │   ├── jars
│   │   │   │   │   │   │   └── classes.jar
│   │   │   │   │   │   ├── res
│   │   │   │   │   │   │   └── values
│   │   │   │   │   │   │   └── values.xml
│   │   │   │   │   │   └── R.txt
│   │   │   │   │   └── runner
│   │   │   │   │   └── 0.5
│   │   │   │   │   ├── aapt
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   ├── annotations.zip
│   │   │   │   │   └── jars
│   │   │   │   │   └── classes.jar
│   │   │   │   └── com.android.support.test.espresso
│   │   │   │   ├── espresso-core
│   │   │   │   │   └── 2.2.2
│   │   │   │   │   ├── aapt
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   ├── jars
│   │   │   │   │   │   └── classes.jar
│   │   │   │   │   └── R.txt
│   │   │   │   └── espresso-idling-resource
│   │   │   │   └── 2.2.2
│   │   │   │   ├── aapt
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── jars
│   │   │   │   └── classes.jar
│   │   │   ├── incremental
│   │   │   │   ├── compileDebugAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── compileDebugAndroidTestAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── mergeDebugAndroidTestResources
│   │   │   │   │   ├── compile-file-map.properties
│   │   │   │   │   ├── merged.dir
│   │   │   │   │   │   └── values
│   │   │   │   │   │   └── values.xml
│   │   │   │   │   └── 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
│   │   │   │   │   └── RBoOWXxVR44cDofE7kuUWQcRQZg=
│   │   │   │   └── packageInstantRunResourcesDebug
│   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   ├── file-input-save-data.txt
│   │   │   │   └── zip-cache
│   │   │   │   └── RBoOWXxVR44cDofE7kuUWQcRQZg=
│   │   │   ├── incremental-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run-bootstrap.jar
│   │   │   ├── incremental-runtime-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run.jar
│   │   │   ├── incremental-safeguard
│   │   │   │   └── debug
│   │   │   │   └── tag.txt
│   │   │   ├── incremental-verifier
│   │   │   │   └── debug
│   │   │   │   ├── android
│   │   │   │   │   └── support
│   │   │   │   │   └── 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
│   │   │   │   └── homlamfai
│   │   │   │   └── cat_client
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── MainActivity$1.class
│   │   │   │   ├── MainActivity$2.class
│   │   │   │   ├── MainActivity$3.class
│   │   │   │   ├── MainActivity$4.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
│   │   │   ├── instant-run-resources
│   │   │   │   └── resources-debug.ir.ap_
│   │   │   ├── instant-run-support
│   │   │   │   └── debug
│   │   │   │   ├── instant-run.zip
│   │   │   │   ├── manifest.crc
│   │   │   │   └── manifest.xml
│   │   │   ├── manifest
│   │   │   │   └── androidTest
│   │   │   │   └── debug
│   │   │   │   └── AndroidManifest.xml
│   │   │   ├── manifests
│   │   │   │   ├── full
│   │   │   │   │   └── debug
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   └── instant-run
│   │   │   │   └── debug
│   │   │   │   └── AndroidManifest.xml
│   │   │   ├── res
│   │   │   │   ├── merged
│   │   │   │   │   ├── androidTest
│   │   │   │   │   │   └── debug
│   │   │   │   │   │   └── values
│   │   │   │   │   │   └── values.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
│   │   │   │   │   ├── color
│   │   │   │   │   │   ├── abc_btn_colored_borderless_text_material.xml
│   │   │   │   │   │   ├── abc_btn_colored_text_material.xml
│   │   │   │   │   │   ├── abc_hint_foreground_material_dark.xml
│   │   │   │   │   │   ├── abc_hint_foreground_material_light.xml
│   │   │   │   │   │   ├── abc_primary_text_disable_only_material_dark.xml
│   │   │   │   │   │   ├── abc_primary_text_disable_only_material_light.xml
│   │   │   │   │   │   ├── abc_primary_text_material_dark.xml
│   │   │   │   │   │   ├── abc_primary_text_material_light.xml
│   │   │   │   │   │   ├── abc_search_url_text.xml
│   │   │   │   │   │   ├── abc_secondary_text_material_dark.xml
│   │   │   │   │   │   ├── abc_secondary_text_material_light.xml
│   │   │   │   │   │   ├── abc_tint_btn_checkable.xml
│   │   │   │   │   │   ├── abc_tint_default.xml
│   │   │   │   │   │   ├── abc_tint_edittext.xml
│   │   │   │   │   │   ├── abc_tint_seek_thumb.xml
│   │   │   │   │   │   ├── abc_tint_spinner.xml
│   │   │   │   │   │   ├── abc_tint_switch_thumb.xml
│   │   │   │   │   │   ├── abc_tint_switch_track.xml
│   │   │   │   │   │   ├── 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_thumb.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
│   │   │   │   │   ├── 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_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_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
│   │   │   │   │   ├── layout-v11
│   │   │   │   │   │   ├── 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
│   │   │   │   │   ├── 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
│   │   │   │   │   ├── mipmap-hdpi
│   │   │   │   │   │   └── ic_launcher.png
│   │   │   │   │   ├── mipmap-mdpi
│   │   │   │   │   │   ├── down.png
│   │   │   │   │   │   ├── ic_launcher.png
│   │   │   │   │   │   ├── left.png
│   │   │   │   │   │   ├── right.png
│   │   │   │   │   │   ├── stop.png
│   │   │   │   │   │   └── up.png
│   │   │   │   │   ├── mipmap-xhdpi
│   │   │   │   │   │   └── ic_launcher.png
│   │   │   │   │   ├── 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-rAZ
│   │   │   │   │   │   └── values-az-rAZ.xml
│   │   │   │   │   ├── values-be-rBY
│   │   │   │   │   │   └── values-be-rBY.xml
│   │   │   │   │   ├── values-bg
│   │   │   │   │   │   └── values-bg.xml
│   │   │   │   │   ├── values-bn-rBD
│   │   │   │   │   │   └── values-bn-rBD.xml
│   │   │   │   │   ├── values-bs-rBA
│   │   │   │   │   │   └── values-bs-rBA.xml
│   │   │   │   │   ├── values-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-rEE
│   │   │   │   │   │   └── values-et-rEE.xml
│   │   │   │   │   ├── values-eu-rES
│   │   │   │   │   │   └── values-eu-rES.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-rES
│   │   │   │   │   │   └── values-gl-rES.xml
│   │   │   │   │   ├── values-gu-rIN
│   │   │   │   │   │   └── values-gu-rIN.xml
│   │   │   │   │   ├── values-h720dp-v13
│   │   │   │   │   │   └── values-h720dp-v13.xml
│   │   │   │   │   ├── values-hdpi-v4
│   │   │   │   │   │   └── values-hdpi-v4.xml
│   │   │   │   │   ├── values-hi
│   │   │   │   │   │   └── values-hi.xml
│   │   │   │   │   ├── values-hr
│   │   │   │   │   │   └── values-hr.xml
│   │   │   │   │   ├── values-hu
│   │   │   │   │   │   └── values-hu.xml
│   │   │   │   │   ├── values-hy-rAM
│   │   │   │   │   │   └── values-hy-rAM.xml
│   │   │   │   │   ├── values-in
│   │   │   │   │   │   └── values-in.xml
│   │   │   │   │   ├── values-is-rIS
│   │   │   │   │   │   └── values-is-rIS.xml
│   │   │   │   │   ├── values-it
│   │   │   │   │   │   └── values-it.xml
│   │   │   │   │   ├── values-iw
│   │   │   │   │   │   └── values-iw.xml
│   │   │   │   │   ├── values-ja
│   │   │   │   │   │   └── values-ja.xml
│   │   │   │   │   ├── values-ka-rGE
│   │   │   │   │   │   └── values-ka-rGE.xml
│   │   │   │   │   ├── values-kk-rKZ
│   │   │   │   │   │   └── values-kk-rKZ.xml
│   │   │   │   │   ├── values-km-rKH
│   │   │   │   │   │   └── values-km-rKH.xml
│   │   │   │   │   ├── values-kn-rIN
│   │   │   │   │   │   └── values-kn-rIN.xml
│   │   │   │   │   ├── values-ko
│   │   │   │   │   │   └── values-ko.xml
│   │   │   │   │   ├── values-ky-rKG
│   │   │   │   │   │   └── values-ky-rKG.xml
│   │   │   │   │   ├── values-land
│   │   │   │   │   │   └── values-land.xml
│   │   │   │   │   ├── values-large-v4
│   │   │   │   │   │   └── values-large-v4.xml
│   │   │   │   │   ├── values-ldltr-v21
│   │   │   │   │   │   └── values-ldltr-v21.xml
│   │   │   │   │   ├── values-lo-rLA
│   │   │   │   │   │   └── values-lo-rLA.xml
│   │   │   │   │   ├── values-lt
│   │   │   │   │   │   └── values-lt.xml
│   │   │   │   │   ├── values-lv
│   │   │   │   │   │   └── values-lv.xml
│   │   │   │   │   ├── values-mk-rMK
│   │   │   │   │   │   └── values-mk-rMK.xml
│   │   │   │   │   ├── values-ml-rIN
│   │   │   │   │   │   └── values-ml-rIN.xml
│   │   │   │   │   ├── values-mn-rMN
│   │   │   │   │   │   └── values-mn-rMN.xml
│   │   │   │   │   ├── values-mr-rIN
│   │   │   │   │   │   └── values-mr-rIN.xml
│   │   │   │   │   ├── values-ms-rMY
│   │   │   │   │   │   └── values-ms-rMY.xml
│   │   │   │   │   ├── values-my-rMM
│   │   │   │   │   │   └── values-my-rMM.xml
│   │   │   │   │   ├── values-nb
│   │   │   │   │   │   └── values-nb.xml
│   │   │   │   │   ├── values-ne-rNP
│   │   │   │   │   │   └── values-ne-rNP.xml
│   │   │   │   │   ├── values-night-v8
│   │   │   │   │   │   └── values-night-v8.xml
│   │   │   │   │   ├── values-nl
│   │   │   │   │   │   └── values-nl.xml
│   │   │   │   │   ├── values-pa-rIN
│   │   │   │   │   │   └── values-pa-rIN.xml
│   │   │   │   │   ├── values-pl
│   │   │   │   │   │   └── values-pl.xml
│   │   │   │   │   ├── values-port
│   │   │   │   │   │   └── values-port.xml
│   │   │   │   │   ├── values-pt
│   │   │   │   │   │   └── 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-rLK
│   │   │   │   │   │   └── values-si-rLK.xml
│   │   │   │   │   ├── values-sk
│   │   │   │   │   │   └── values-sk.xml
│   │   │   │   │   ├── values-sl
│   │   │   │   │   │   └── values-sl.xml
│   │   │   │   │   ├── values-sq-rAL
│   │   │   │   │   │   └── values-sq-rAL.xml
│   │   │   │   │   ├── values-sr
│   │   │   │   │   │   └── values-sr.xml
│   │   │   │   │   ├── values-sv
│   │   │   │   │   │   └── values-sv.xml
│   │   │   │   │   ├── values-sw
│   │   │   │   │   │   └── values-sw.xml
│   │   │   │   │   ├── values-sw600dp-v13
│   │   │   │   │   │   └── values-sw600dp-v13.xml
│   │   │   │   │   ├── values-ta-rIN
│   │   │   │   │   │   └── values-ta-rIN.xml
│   │   │   │   │   ├── values-te-rIN
│   │   │   │   │   │   └── values-te-rIN.xml
│   │   │   │   │   ├── values-th
│   │   │   │   │   │   └── values-th.xml
│   │   │   │   │   ├── values-tl
│   │   │   │   │   │   └── values-tl.xml
│   │   │   │   │   ├── values-tr
│   │   │   │   │   │   └── values-tr.xml
│   │   │   │   │   ├── values-uk
│   │   │   │   │   │   └── values-uk.xml
│   │   │   │   │   ├── values-ur-rPK
│   │   │   │   │   │   └── values-ur-rPK.xml
│   │   │   │   │   ├── values-uz-rUZ
│   │   │   │   │   │   └── values-uz-rUZ.xml
│   │   │   │   │   ├── values-v11
│   │   │   │   │   │   └── values-v11.xml
│   │   │   │   │   ├── values-v12
│   │   │   │   │   │   └── values-v12.xml
│   │   │   │   │   ├── values-v13
│   │   │   │   │   │   └── values-v13.xml
│   │   │   │   │   ├── values-v14
│   │   │   │   │   │   └── values-v14.xml
│   │   │   │   │   ├── values-v16
│   │   │   │   │   │   └── values-v16.xml
│   │   │   │   │   ├── values-v17
│   │   │   │   │   │   └── values-v17.xml
│   │   │   │   │   ├── values-v18
│   │   │   │   │   │   └── values-v18.xml
│   │   │   │   │   ├── values-v21
│   │   │   │   │   │   └── values-v21.xml
│   │   │   │   │   ├── values-v22
│   │   │   │   │   │   └── values-v22.xml
│   │   │   │   │   ├── values-v23
│   │   │   │   │   │   └── values-v23.xml
│   │   │   │   │   ├── values-v24
│   │   │   │   │   │   └── values-v24.xml
│   │   │   │   │   ├── values-v25
│   │   │   │   │   │   └── values-v25.xml
│   │   │   │   │   ├── values-vi
│   │   │   │   │   │   └── values-vi.xml
│   │   │   │   │   ├── values-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
│   │   │   │   ├── resources-debug-androidTest.ap_
│   │   │   │   └── resources-debug.ap_
│   │   │   ├── restart-dex
│   │   │   │   └── debug
│   │   │   │   └── build-info.xml
│   │   │   ├── symbols
│   │   │   │   ├── androidTest
│   │   │   │   │   └── debug
│   │   │   │   │   └── R.txt
│   │   │   │   └── debug
│   │   │   │   └── R.txt
│   │   │   └── transforms
│   │   │   ├── dex
│   │   │   │   └── debug
│   │   │   │   └── folders
│   │   │   │   └── 1000
│   │   │   │   ├── 10
│   │   │   │   │   ├── com.android.support-animated-vector-drawable-25.3.0_dbfd30c8a6c008d79314d1c41eee43428f0f5428
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── com.android.support-appcompat-v7-25.3.0_69f38c7bb391057963a19f0db6c582ab1e046875
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── com.android.support-support-compat-25.3.0_ed70f3c8f02c0e60582e1a78542fb539e10ec0e2
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── com.android.support-support-core-ui-25.3.0_0c0aa6a1a757e4c700c8bc71bbf1322607e178d2
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── com.android.support-support-core-utils-25.3.0_ec7e23e6612ed6a873c4f97ff7c0ad410b0f70b2
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── com.android.support-support-fragment-25.3.0_78733a79eb201680176254ad63a3e10fd165e7a2
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── com.android.support-support-media-compat-25.3.0_7d1be34fb5423b5bc7154eda1abb3dc0b18346ea
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── com.android.support-support-v4-25.3.0_db3e78b5947d0e048652e87cfefb0a23638e6ebc
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── com.android.support-support-vector-drawable-25.3.0_86e85ea4d5c38afb9ce6214b42ddebf4df943052
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── instant-run-bootstrap_2110cec5df95f9ece30615cd79b9ae33de9a244b
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   ├── instant-run_cc49b0d63c0c5409bb72e56361610cb070bd0d8a
│   │   │   │   │   │   └── classes.dex
│   │   │   │   │   └── support-annotations-25.3.0_cd4211d308d942e8929a1e74c1bdfa93ef15ea3a
│   │   │   │   │   └── classes.dex
│   │   │   │   └── 5
│   │   │   │   ├── slice_0
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── slice_1
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── slice_2
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── slice_3
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── slice_4
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── slice_5
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── slice_6
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── slice_7
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── slice_8
│   │   │   │   │   └── classes.dex
│   │   │   │   └── slice_9
│   │   │   │   └── classes.dex
│   │   │   ├── instantRun
│   │   │   │   └── debug
│   │   │   │   └── folders
│   │   │   │   └── 1
│   │   │   │   └── 5
│   │   │   │   └── main
│   │   │   │   ├── android
│   │   │   │   │   └── support
│   │   │   │   │   └── 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
│   │   │   │   └── homlamfai
│   │   │   │   └── cat_client
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── MainActivity$1.class
│   │   │   │   ├── MainActivity$2.class
│   │   │   │   ├── MainActivity$3.class
│   │   │   │   ├── MainActivity$4.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
│   │   │   └── instantRunSlicer
│   │   │   └── debug
│   │   │   └── folders
│   │   │   └── 1
│   │   │   └── 5
│   │   │   ├── slice_0
│   │   │   │   └── com
│   │   │   │   └── android
│   │   │   │   └── tools
│   │   │   │   └── fd
│   │   │   │   └── dummy
│   │   │   │   └── slice_0.class
│   │   │   ├── slice_1
│   │   │   │   └── com
│   │   │   │   └── android
│   │   │   │   └── tools
│   │   │   │   └── fd
│   │   │   │   └── dummy
│   │   │   │   └── slice_1.class
│   │   │   ├── slice_2
│   │   │   │   ├── android
│   │   │   │   │   └── support
│   │   │   │   │   └── 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
│   │   │   │   ├── buildId.txt
│   │   │   │   └── com
│   │   │   │   └── android
│   │   │   │   └── tools
│   │   │   │   └── fd
│   │   │   │   └── dummy
│   │   │   │   └── slice_2.class
│   │   │   ├── slice_3
│   │   │   │   └── com
│   │   │   │   └── android
│   │   │   │   └── tools
│   │   │   │   └── fd
│   │   │   │   └── dummy
│   │   │   │   └── slice_3.class
│   │   │   ├── slice_4
│   │   │   │   └── com
│   │   │   │   └── android
│   │   │   │   └── tools
│   │   │   │   └── fd
│   │   │   │   └── dummy
│   │   │   │   └── slice_4.class
│   │   │   ├── slice_5
│   │   │   │   ├── buildId.txt
│   │   │   │   └── com
│   │   │   │   ├── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── fd
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_5.class
│   │   │   │   └── homlamfai
│   │   │   │   └── cat_client
│   │   │   │   ├── BuildConfig.class
│   │   │   │   ├── MainActivity$1.class
│   │   │   │   ├── MainActivity$2.class
│   │   │   │   ├── MainActivity$3.class
│   │   │   │   ├── MainActivity$4.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
│   │   │   ├── slice_6
│   │   │   │   └── com
│   │   │   │   └── android
│   │   │   │   └── tools
│   │   │   │   └── fd
│   │   │   │   └── dummy
│   │   │   │   └── slice_6.class
│   │   │   ├── slice_7
│   │   │   │   └── com
│   │   │   │   └── android
│   │   │   │   └── tools
│   │   │   │   └── fd
│   │   │   │   └── dummy
│   │   │   │   └── slice_7.class
│   │   │   ├── slice_8
│   │   │   │   └── com
│   │   │   │   └── android
│   │   │   │   └── tools
│   │   │   │   └── fd
│   │   │   │   └── dummy
│   │   │   │   └── slice_8.class
│   │   │   └── slice_9
│   │   │   └── com
│   │   │   └── android
│   │   │   └── tools
│   │   │   └── fd
│   │   │   └── dummy
│   │   │   └── slice_9.class
│   │   └── outputs
│   │   ├── apk
│   │   │   └── app-debug.apk
│   │   └── logs
│   │   └── manifest-merger-debug-report.txt
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src
│   ├── androidTest
│   │   └── java
│   │   └── com
│   │   └── homlamfai
│   │   └── cat_client
│   │   └── ExampleInstrumentedTest.java
│   ├── main
│   │   ├── AndroidManifest.xml
│   │   ├── java
│   │   │   └── com
│   │   │   └── homlamfai
│   │   │   └── cat_client
│   │   │   └── MainActivity.java
│   │   └── res
│   │   ├── layout
│   │   │   └── activity_main.xml
│   │   ├── mipmap-hdpi
│   │   │   └── ic_launcher.png
│   │   ├── mipmap-mdpi
│   │   │   ├── down.png
│   │   │   ├── ic_launcher.png
│   │   │   ├── left.png
│   │   │   ├── right.png
│   │   │   ├── stop.png
│   │   │   └── up.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-w820dp
│   │   └── dimens.xml
│   └── test
│   └── java
│   └── com
│   └── homlamfai
│   └── cat_client
│   └── ExampleUnitTest.java
├── build
│   ├── generated
│   │   └── mockable-android-25.jar
│   └── intermediates
│   └── dex-cache
│   └── cache.xml
├── build.gradle
├── Cat_Client.iml
├── gradle
│   └── wrapper
│   ├── gradle-wrapper.jar
│   └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── local.properties
└── settings.gradle

604 directories, 1636 files

标签:

实例下载地址

手机端通过wifi遥控小车stm32程序和android程序

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警