在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → CameraMaster.rar

CameraMaster.rar

一般编程问题

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

实例介绍

【实例简介】
基于github上camera开源框架CameraKit,实现仿微信拍照摄像功能
【实例截图】
【核心代码】
CameraMaster
└── CameraMaster
├── app
│   ├── app.iml
│   ├── build
│   │   ├── generated
│   │   │   ├── res
│   │   │   │   └── pngs
│   │   │   │   └── debug
│   │   │   │   ├── drawable-anydpi-v21
│   │   │   │   │   ├── ic_back.xml
│   │   │   │   │   ├── ic_launcher_background.xml
│   │   │   │   │   └── ic_photo.xml
│   │   │   │   ├── drawable-hdpi
│   │   │   │   │   ├── ic_back.png
│   │   │   │   │   ├── ic_launcher_background.png
│   │   │   │   │   └── ic_photo.png
│   │   │   │   ├── drawable-ldpi
│   │   │   │   │   ├── ic_back.png
│   │   │   │   │   ├── ic_launcher_background.png
│   │   │   │   │   └── ic_photo.png
│   │   │   │   ├── drawable-mdpi
│   │   │   │   │   ├── ic_back.png
│   │   │   │   │   ├── ic_launcher_background.png
│   │   │   │   │   └── ic_photo.png
│   │   │   │   ├── drawable-xhdpi
│   │   │   │   │   ├── ic_back.png
│   │   │   │   │   ├── ic_launcher_background.png
│   │   │   │   │   └── ic_photo.png
│   │   │   │   ├── drawable-xxhdpi
│   │   │   │   │   ├── ic_back.png
│   │   │   │   │   ├── ic_launcher_background.png
│   │   │   │   │   └── ic_photo.png
│   │   │   │   └── drawable-xxxhdpi
│   │   │   │   ├── ic_back.png
│   │   │   │   ├── ic_launcher_background.png
│   │   │   │   └── ic_photo.png
│   │   │   └── source
│   │   │   ├── buildConfig
│   │   │   │   └── debug
│   │   │   │   └── com
│   │   │   │   └── camera
│   │   │   │   └── demo
│   │   │   │   └── BuildConfig.java
│   │   │   └── r
│   │   │   └── debug
│   │   │   ├── android
│   │   │   │   ├── arch
│   │   │   │   │   ├── core
│   │   │   │   │   │   └── R.java
│   │   │   │   │   └── lifecycle
│   │   │   │   │   ├── livedata
│   │   │   │   │   │   ├── core
│   │   │   │   │   │   │   └── R.java
│   │   │   │   │   │   └── R.java
│   │   │   │   │   ├── R.java
│   │   │   │   │   └── viewmodel
│   │   │   │   │   └── R.java
│   │   │   │   └── support
│   │   │   │   ├── asynclayoutinflater
│   │   │   │   │   └── R.java
│   │   │   │   ├── compat
│   │   │   │   │   └── R.java
│   │   │   │   ├── constraint
│   │   │   │   │   └── R.java
│   │   │   │   ├── coordinatorlayout
│   │   │   │   │   └── R.java
│   │   │   │   ├── coreui
│   │   │   │   │   └── R.java
│   │   │   │   ├── coreutils
│   │   │   │   │   └── R.java
│   │   │   │   ├── cursoradapter
│   │   │   │   │   └── R.java
│   │   │   │   ├── customview
│   │   │   │   │   └── R.java
│   │   │   │   ├── documentfile
│   │   │   │   │   └── R.java
│   │   │   │   ├── drawerlayout
│   │   │   │   │   └── R.java
│   │   │   │   ├── exifinterface
│   │   │   │   │   └── R.java
│   │   │   │   ├── fragment
│   │   │   │   │   └── R.java
│   │   │   │   ├── graphics
│   │   │   │   │   └── drawable
│   │   │   │   │   └── R.java
│   │   │   │   ├── interpolator
│   │   │   │   │   └── R.java
│   │   │   │   ├── loader
│   │   │   │   │   └── R.java
│   │   │   │   ├── localbroadcastmanager
│   │   │   │   │   └── R.java
│   │   │   │   ├── print
│   │   │   │   │   └── R.java
│   │   │   │   ├── slidingpanelayout
│   │   │   │   │   └── R.java
│   │   │   │   ├── swiperefreshlayout
│   │   │   │   │   └── R.java
│   │   │   │   └── v7
│   │   │   │   ├── appcompat
│   │   │   │   │   └── R.java
│   │   │   │   └── viewpager
│   │   │   │   └── R.java
│   │   │   ├── androidx
│   │   │   │   └── versionedparcelable
│   │   │   │   └── R.java
│   │   │   ├── com
│   │   │   │   ├── apeng
│   │   │   │   │   └── permissions
│   │   │   │   │   └── R.java
│   │   │   │   ├── camera
│   │   │   │   │   └── demo
│   │   │   │   │   └── R.java
│   │   │   │   └── wonderkiln
│   │   │   │   └── camerakit
│   │   │   │   └── core
│   │   │   │   └── R.java
│   │   │   └── qiu
│   │   │   └── niorgai
│   │   │   └── R.java
│   │   ├── intermediates
│   │   │   ├── blame
│   │   │   │   └── res
│   │   │   │   └── debug
│   │   │   │   ├── multi-v2
│   │   │   │   │   ├── debug.json
│   │   │   │   │   ├── values-af.json
│   │   │   │   │   ├── values-am.json
│   │   │   │   │   ├── values-ar.json
│   │   │   │   │   ├── values-as.json
│   │   │   │   │   ├── values-az.json
│   │   │   │   │   ├── values-be.json
│   │   │   │   │   ├── values-bg.json
│   │   │   │   │   ├── values-bn.json
│   │   │   │   │   ├── values-bs.json
│   │   │   │   │   ├── values-b+sr+Latn.json
│   │   │   │   │   ├── values-ca.json
│   │   │   │   │   ├── values-cs.json
│   │   │   │   │   ├── values-da.json
│   │   │   │   │   ├── values-de.json
│   │   │   │   │   ├── values-el.json
│   │   │   │   │   ├── values-en-rAU.json
│   │   │   │   │   ├── values-en-rCA.json
│   │   │   │   │   ├── values-en-rGB.json
│   │   │   │   │   ├── values-en-rIN.json
│   │   │   │   │   ├── values-en-rXC.json
│   │   │   │   │   ├── values-es.json
│   │   │   │   │   ├── values-es-rUS.json
│   │   │   │   │   ├── values-et.json
│   │   │   │   │   ├── values-eu.json
│   │   │   │   │   ├── values-fa.json
│   │   │   │   │   ├── values-fi.json
│   │   │   │   │   ├── values-fr.json
│   │   │   │   │   ├── values-fr-rCA.json
│   │   │   │   │   ├── values-gl.json
│   │   │   │   │   ├── values-gu.json
│   │   │   │   │   ├── values-h720dp-v13.json
│   │   │   │   │   ├── values-hdpi-v4.json
│   │   │   │   │   ├── values-hi.json
│   │   │   │   │   ├── values-hr.json
│   │   │   │   │   ├── values-hu.json
│   │   │   │   │   ├── values-hy.json
│   │   │   │   │   ├── values-in.json
│   │   │   │   │   ├── values-is.json
│   │   │   │   │   ├── values-it.json
│   │   │   │   │   ├── values-iw.json
│   │   │   │   │   ├── values-ja.json
│   │   │   │   │   ├── values.json
│   │   │   │   │   ├── values-ka.json
│   │   │   │   │   ├── values-kk.json
│   │   │   │   │   ├── values-km.json
│   │   │   │   │   ├── values-kn.json
│   │   │   │   │   ├── values-ko.json
│   │   │   │   │   ├── values-ky.json
│   │   │   │   │   ├── values-land.json
│   │   │   │   │   ├── values-large-v4.json
│   │   │   │   │   ├── values-ldltr-v21.json
│   │   │   │   │   ├── values-lo.json
│   │   │   │   │   ├── values-lt.json
│   │   │   │   │   ├── values-lv.json
│   │   │   │   │   ├── values-mk.json
│   │   │   │   │   ├── values-ml.json
│   │   │   │   │   ├── values-mn.json
│   │   │   │   │   ├── values-mr.json
│   │   │   │   │   ├── values-ms.json
│   │   │   │   │   ├── values-my.json
│   │   │   │   │   ├── values-nb.json
│   │   │   │   │   ├── values-ne.json
│   │   │   │   │   ├── values-night-v8.json
│   │   │   │   │   ├── values-nl.json
│   │   │   │   │   ├── values-or.json
│   │   │   │   │   ├── values-pa.json
│   │   │   │   │   ├── values-pl.json
│   │   │   │   │   ├── values-port.json
│   │   │   │   │   ├── values-pt.json
│   │   │   │   │   ├── values-pt-rBR.json
│   │   │   │   │   ├── values-pt-rPT.json
│   │   │   │   │   ├── values-ro.json
│   │   │   │   │   ├── values-ru.json
│   │   │   │   │   ├── values-si.json
│   │   │   │   │   ├── values-sk.json
│   │   │   │   │   ├── values-sl.json
│   │   │   │   │   ├── values-sq.json
│   │   │   │   │   ├── values-sr.json
│   │   │   │   │   ├── values-sv.json
│   │   │   │   │   ├── values-sw600dp-v13.json
│   │   │   │   │   ├── values-sw.json
│   │   │   │   │   ├── values-ta.json
│   │   │   │   │   ├── values-te.json
│   │   │   │   │   ├── values-th.json
│   │   │   │   │   ├── values-tl.json
│   │   │   │   │   ├── values-tr.json
│   │   │   │   │   ├── values-uk.json
│   │   │   │   │   ├── values-ur.json
│   │   │   │   │   ├── values-uz.json
│   │   │   │   │   ├── values-v16.json
│   │   │   │   │   ├── values-v17.json
│   │   │   │   │   ├── values-v18.json
│   │   │   │   │   ├── values-v21.json
│   │   │   │   │   ├── values-v22.json
│   │   │   │   │   ├── values-v23.json
│   │   │   │   │   ├── values-v24.json
│   │   │   │   │   ├── values-v25.json
│   │   │   │   │   ├── values-v26.json
│   │   │   │   │   ├── values-v28.json
│   │   │   │   │   ├── values-vi.json
│   │   │   │   │   ├── values-watch-v20.json
│   │   │   │   │   ├── values-watch-v21.json
│   │   │   │   │   ├── values-xlarge-v4.json
│   │   │   │   │   ├── values-zh-rCN.json
│   │   │   │   │   ├── values-zh-rHK.json
│   │   │   │   │   ├── values-zh-rTW.json
│   │   │   │   │   └── values-zu.json
│   │   │   │   └── single
│   │   │   │   └── debug.json
│   │   │   ├── build-info
│   │   │   │   └── debug
│   │   │   │   └── build-info.xml
│   │   │   ├── builds
│   │   │   │   └── debug
│   │   │   │   ├── 1557800782302
│   │   │   │   │   └── classes.dex
│   │   │   │   └── 1557801523349
│   │   │   │   └── classes.dex
│   │   │   ├── classes
│   │   │   │   └── debug
│   │   │   │   ├── android
│   │   │   │   │   ├── arch
│   │   │   │   │   │   ├── core
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   ├── livedata
│   │   │   │   │   │   │   ├── core
│   │   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── R.class
│   │   │   │   │   │   └── viewmodel
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── support
│   │   │   │   │   ├── asynclayoutinflater
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── compat
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── constraint
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── coordinatorlayout
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── coreui
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── coreutils
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$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
│   │   │   │   │   ├── cursoradapter
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── customview
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── documentfile
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── drawerlayout
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── exifinterface
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── fragment
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── graphics
│   │   │   │   │   │   └── drawable
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── interpolator
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── loader
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── localbroadcastmanager
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── print
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── slidingpanelayout
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── swiperefreshlayout
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── v7
│   │   │   │   │   ├── appcompat
│   │   │   │   │   │   ├── R$anim.class
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$bool.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── viewpager
│   │   │   │   │   ├── R$attr.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
│   │   │   │   ├── androidx
│   │   │   │   │   └── versionedparcelable
│   │   │   │   │   └── R.class
│   │   │   │   ├── com
│   │   │   │   │   ├── apeng
│   │   │   │   │   │   └── permissions
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── camera
│   │   │   │   │   │   └── demo
│   │   │   │   │   │   ├── AppStoragePath.class
│   │   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   │   ├── CameraActivity$1.class
│   │   │   │   │   │   ├── CameraActivity$2.class
│   │   │   │   │   │   ├── CameraActivity$3.class
│   │   │   │   │   │   ├── CameraActivity$4.class
│   │   │   │   │   │   ├── CameraActivity.class
│   │   │   │   │   │   ├── CaptureButton$1.class
│   │   │   │   │   │   ├── CaptureButton$2.class
│   │   │   │   │   │   ├── CaptureButton$3.class
│   │   │   │   │   │   ├── CaptureButton$4.class
│   │   │   │   │   │   ├── CaptureButton$5.class
│   │   │   │   │   │   ├── CaptureButton$LongPressRunnable.class
│   │   │   │   │   │   ├── CaptureButton$RecordCountDownTimer.class
│   │   │   │   │   │   ├── CaptureButton.class
│   │   │   │   │   │   ├── CaptureLayout$1.class
│   │   │   │   │   │   ├── CaptureLayout$2.class
│   │   │   │   │   │   ├── CaptureLayout$3.class
│   │   │   │   │   │   ├── CaptureLayout$4.class
│   │   │   │   │   │   ├── CaptureLayout$5.class
│   │   │   │   │   │   ├── CaptureLayout$6.class
│   │   │   │   │   │   ├── CaptureLayout$7.class
│   │   │   │   │   │   ├── CaptureLayout.class
│   │   │   │   │   │   ├── CaptureListener.class
│   │   │   │   │   │   ├── CheckPermission.class
│   │   │   │   │   │   ├── ClickListener.class
│   │   │   │   │   │   ├── CommonUtil.class
│   │   │   │   │   │   ├── CustomVideoView.class
│   │   │   │   │   │   ├── ElephantApp.class
│   │   │   │   │   │   ├── MainActivity$1.class
│   │   │   │   │   │   ├── MainActivity$2.class
│   │   │   │   │   │   ├── MainActivity.class
│   │   │   │   │   │   ├── MD5Tools.class
│   │   │   │   │   │   ├── PreviewActivity$1.class
│   │   │   │   │   │   ├── PreviewActivity$2.class
│   │   │   │   │   │   ├── PreviewActivity.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
│   │   │   │   │   │   ├── RateArcView$1.class
│   │   │   │   │   │   ├── RateArcView$2.class
│   │   │   │   │   │   ├── RateArcView$RateViewClickListener.class
│   │   │   │   │   │   ├── RateArcView$TimeCount.class
│   │   │   │   │   │   ├── RateArcView.class
│   │   │   │   │   │   ├── R.class
│   │   │   │   │   │   ├── ReturnButton.class
│   │   │   │   │   │   ├── ReturnListener.class
│   │   │   │   │   │   ├── StorageUtils.class
│   │   │   │   │   │   ├── TestActivity$1.class
│   │   │   │   │   │   ├── TestActivity$2.class
│   │   │   │   │   │   ├── TestActivity$3.class
│   │   │   │   │   │   ├── TestActivity$4.class
│   │   │   │   │   │   ├── TestActivity$5.class
│   │   │   │   │   │   ├── TestActivity.class
│   │   │   │   │   │   ├── TypeButton.class
│   │   │   │   │   │   ├── TypeListener.class
│   │   │   │   │   │   ├── VideoPreviewActivity$1.class
│   │   │   │   │   │   ├── VideoPreviewActivity$2.class
│   │   │   │   │   │   ├── VideoPreviewActivity$3.class
│   │   │   │   │   │   └── VideoPreviewActivity.class
│   │   │   │   │   └── wonderkiln
│   │   │   │   │   └── camerakit
│   │   │   │   │   └── core
│   │   │   │   │   ├── 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
│   │   │   │   └── qiu
│   │   │   │   └── niorgai
│   │   │   │   ├── 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
│   │   │   ├── incremental
│   │   │   │   ├── compileDebugAidl
│   │   │   │   │   └── dependency.store
│   │   │   │   ├── debug-mergeJavaRes
│   │   │   │   │   ├── merge-state
│   │   │   │   │   └── zip-cache
│   │   │   │   │   ├── 20a88s0DXrIx8MqnbkmVXx5uweU=
│   │   │   │   │   ├── 3vyebNK3HgM_nkEdu7hn+VXe5rc=
│   │   │   │   │   ├── 8qtAQA3+x4_EkQgMb8yWEka8ixc=
│   │   │   │   │   ├── 9dGtf1rkMg6+kbkO0ebjVMhY6H8=
│   │   │   │   │   ├── 9sRIBV8lRFl6A1Han1Nouu4mbmE=
│   │   │   │   │   ├── _bhUnL_LVBGcMlUKtPpfvZ2eO0M=
│   │   │   │   │   ├── BICTp5CqEhvGOXtzBNFOtD1AE_w=
│   │   │   │   │   ├── C5xASfVFLFAnp8aYXXsze58GzH0=
│   │   │   │   │   ├── cgMRobsVYaaHZhWE54nvelgDxNs=
│   │   │   │   │   ├── dRE6_ppj1040Yu37o8p6ue_N9_E=
│   │   │   │   │   ├── e6sSHaHrL+2vn71sQB8efnBr710=
│   │   │   │   │   ├── FtJIA9WtwTah6Qg7kIduWwp4138=
│   │   │   │   │   ├── gP1lrCQ1izE9czH4VNM_LL1lcB4=
│   │   │   │   │   ├── GRMkikzqBkw5MAMZGTG1_KhDQOs=
│   │   │   │   │   ├── GS3x4WVXYcCbrCL2r+iUP+zICF4=
│   │   │   │   │   ├── GVi874T5VS7QGz6oLxKyQyQZym4=
│   │   │   │   │   ├── Gxhb8fx_xSQy7G947mIk2WzrgRA=
│   │   │   │   │   ├── HwmvtNY_Ldby+1eibBlqznJUJR8=
│   │   │   │   │   ├── IvUj2k6WgCJfv+21pfQf3BrspGE=
│   │   │   │   │   ├── jVi1T+fh3wvsKBlHKpT8ytRru_8=
│   │   │   │   │   ├── KjotFlPCXQK9EJPzLHhFIIFSUCk=
│   │   │   │   │   ├── lnFgjOvi1Gm6aOP5KwupDiB0VNU=
│   │   │   │   │   ├── ly_qUDyMG4e8EN2ojVFu8UBU3Z8=
│   │   │   │   │   ├── n_aKFrvGiDcGlgp2no_XomjWbP0=
│   │   │   │   │   ├── nCGpXQvOnTKbdw8CXdXsMAUAS70=
│   │   │   │   │   ├── o4BcA54DrUGy6qi8fSqBktu7sOw=
│   │   │   │   │   ├── OcLU6cAy9k8WFKvxOPwDa782krg=
│   │   │   │   │   ├── OEbg16wyB6cH5wbHvBAndBAV+aA=
│   │   │   │   │   ├── q_4Z7bn+aLaEBTOZgBkWWxBZNyY=
│   │   │   │   │   ├── RXaFWxsz_jcie_aXgCGV1T8jxEQ=
│   │   │   │   │   ├── S1SQWfzx5a+I3odFSPomth2K14U=
│   │   │   │   │   ├── Sf5F+CiURtLpObmxjujo91tUN84=
│   │   │   │   │   ├── TdU6T7fNtJ_+cVeD61ygsjpLO_0=
│   │   │   │   │   ├── vDwE5XNf7WzgbUCnJnmwbPxDdC0=
│   │   │   │   │   ├── wb0Heu+sbwHyAv2t0eGTY2KJOkk=
│   │   │   │   │   └── YOUSaghfDq2QGTq1vj6QnGz95po=
│   │   │   │   ├── debug-mergeJniLibs
│   │   │   │   │   ├── merge-state
│   │   │   │   │   └── zip-cache
│   │   │   │   │   ├── 20a88s0DXrIx8MqnbkmVXx5uweU=
│   │   │   │   │   ├── 3vyebNK3HgM_nkEdu7hn+VXe5rc=
│   │   │   │   │   ├── 8qtAQA3+x4_EkQgMb8yWEka8ixc=
│   │   │   │   │   ├── 9dGtf1rkMg6+kbkO0ebjVMhY6H8=
│   │   │   │   │   ├── 9sRIBV8lRFl6A1Han1Nouu4mbmE=
│   │   │   │   │   ├── _bhUnL_LVBGcMlUKtPpfvZ2eO0M=
│   │   │   │   │   ├── BICTp5CqEhvGOXtzBNFOtD1AE_w=
│   │   │   │   │   ├── C5xASfVFLFAnp8aYXXsze58GzH0=
│   │   │   │   │   ├── cgMRobsVYaaHZhWE54nvelgDxNs=
│   │   │   │   │   ├── dRE6_ppj1040Yu37o8p6ue_N9_E=
│   │   │   │   │   ├── e6sSHaHrL+2vn71sQB8efnBr710=
│   │   │   │   │   ├── FtJIA9WtwTah6Qg7kIduWwp4138=
│   │   │   │   │   ├── gP1lrCQ1izE9czH4VNM_LL1lcB4=
│   │   │   │   │   ├── GRMkikzqBkw5MAMZGTG1_KhDQOs=
│   │   │   │   │   ├── GS3x4WVXYcCbrCL2r+iUP+zICF4=
│   │   │   │   │   ├── GVi874T5VS7QGz6oLxKyQyQZym4=
│   │   │   │   │   ├── Gxhb8fx_xSQy7G947mIk2WzrgRA=
│   │   │   │   │   ├── HwmvtNY_Ldby+1eibBlqznJUJR8=
│   │   │   │   │   ├── IvUj2k6WgCJfv+21pfQf3BrspGE=
│   │   │   │   │   ├── jVi1T+fh3wvsKBlHKpT8ytRru_8=
│   │   │   │   │   ├── KjotFlPCXQK9EJPzLHhFIIFSUCk=
│   │   │   │   │   ├── lnFgjOvi1Gm6aOP5KwupDiB0VNU=
│   │   │   │   │   ├── ly_qUDyMG4e8EN2ojVFu8UBU3Z8=
│   │   │   │   │   ├── n_aKFrvGiDcGlgp2no_XomjWbP0=
│   │   │   │   │   ├── nCGpXQvOnTKbdw8CXdXsMAUAS70=
│   │   │   │   │   ├── o4BcA54DrUGy6qi8fSqBktu7sOw=
│   │   │   │   │   ├── OcLU6cAy9k8WFKvxOPwDa782krg=
│   │   │   │   │   ├── OEbg16wyB6cH5wbHvBAndBAV+aA=
│   │   │   │   │   ├── q_4Z7bn+aLaEBTOZgBkWWxBZNyY=
│   │   │   │   │   ├── RXaFWxsz_jcie_aXgCGV1T8jxEQ=
│   │   │   │   │   ├── S1SQWfzx5a+I3odFSPomth2K14U=
│   │   │   │   │   ├── Sf5F+CiURtLpObmxjujo91tUN84=
│   │   │   │   │   ├── TdU6T7fNtJ_+cVeD61ygsjpLO_0=
│   │   │   │   │   ├── vDwE5XNf7WzgbUCnJnmwbPxDdC0=
│   │   │   │   │   ├── wb0Heu+sbwHyAv2t0eGTY2KJOkk=
│   │   │   │   │   └── YOUSaghfDq2QGTq1vj6QnGz95po=
│   │   │   │   ├── ir_dep
│   │   │   │   │   └── debug
│   │   │   │   │   ├── dependencies
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   └── package_dependencies
│   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   ├── ir_slices
│   │   │   │   │   └── debug
│   │   │   │   │   ├── package_slice_0
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── package_slice_1
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── package_slice_2
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── package_slice_3
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── package_slice_4
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── package_slice_5
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── package_slice_6
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── package_slice_7
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── package_slice_8
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── package_slice_9
│   │   │   │   │   │   └── dex-renamer-state.txt
│   │   │   │   │   ├── slice_0
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── slice_1
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── slice_2
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── slice_3
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── slice_4
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── slice_5
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── slice_6
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── slice_7
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   ├── slice_8
│   │   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   │   └── slice_9
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   ├── mergeDebugAssets
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugJniLibFolders
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugResources
│   │   │   │   │   ├── compile-file-map.properties
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── mergeDebugShaders
│   │   │   │   │   └── merger.xml
│   │   │   │   ├── packageDebug
│   │   │   │   │   └── tmp
│   │   │   │   │   └── debug
│   │   │   │   │   ├── dex-renamer-state.txt
│   │   │   │   │   ├── file-input-save-data.txt
│   │   │   │   │   └── zip-cache
│   │   │   │   │   ├── 5UNctiEhDZaJE3wiruP3LUCrwys=
│   │   │   │   │   └── 9cWhkQv13L7Pue_2E0ckkEyHt7o=
│   │   │   │   └── processInstantRunDebugResourcesApk
│   │   │   │   └── package_resources-debug
│   │   │   │   └── dex-renamer-state.txt
│   │   │   ├── incremental-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run-bootstrap.jar
│   │   │   ├── incremental-runtime-classes
│   │   │   │   └── debug
│   │   │   │   └── instant-run.jar
│   │   │   ├── incremental-verifier
│   │   │   │   └── debug
│   │   │   │   ├── android
│   │   │   │   │   ├── arch
│   │   │   │   │   │   ├── core
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   ├── livedata
│   │   │   │   │   │   │   ├── core
│   │   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── R.class
│   │   │   │   │   │   └── viewmodel
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── support
│   │   │   │   │   ├── asynclayoutinflater
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── compat
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── constraint
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── coordinatorlayout
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── coreui
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── coreutils
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$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
│   │   │   │   │   ├── cursoradapter
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── customview
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── documentfile
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── drawerlayout
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── exifinterface
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── fragment
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── graphics
│   │   │   │   │   │   └── drawable
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── interpolator
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── loader
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── localbroadcastmanager
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── print
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── slidingpanelayout
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── swiperefreshlayout
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── v7
│   │   │   │   │   ├── appcompat
│   │   │   │   │   │   ├── R$anim.class
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$bool.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── viewpager
│   │   │   │   │   ├── R$attr.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
│   │   │   │   ├── androidx
│   │   │   │   │   └── versionedparcelable
│   │   │   │   │   └── R.class
│   │   │   │   ├── com
│   │   │   │   │   ├── apeng
│   │   │   │   │   │   └── permissions
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── camera
│   │   │   │   │   │   └── demo
│   │   │   │   │   │   ├── AppStoragePath.class
│   │   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   │   ├── CameraActivity$1.class
│   │   │   │   │   │   ├── CameraActivity$2.class
│   │   │   │   │   │   ├── CameraActivity$3.class
│   │   │   │   │   │   ├── CameraActivity$4.class
│   │   │   │   │   │   ├── CameraActivity.class
│   │   │   │   │   │   ├── CaptureButton$1.class
│   │   │   │   │   │   ├── CaptureButton$2.class
│   │   │   │   │   │   ├── CaptureButton$3.class
│   │   │   │   │   │   ├── CaptureButton$4.class
│   │   │   │   │   │   ├── CaptureButton$5.class
│   │   │   │   │   │   ├── CaptureButton$LongPressRunnable.class
│   │   │   │   │   │   ├── CaptureButton$RecordCountDownTimer.class
│   │   │   │   │   │   ├── CaptureButton.class
│   │   │   │   │   │   ├── CaptureLayout$1.class
│   │   │   │   │   │   ├── CaptureLayout$2.class
│   │   │   │   │   │   ├── CaptureLayout$3.class
│   │   │   │   │   │   ├── CaptureLayout$4.class
│   │   │   │   │   │   ├── CaptureLayout$5.class
│   │   │   │   │   │   ├── CaptureLayout$6.class
│   │   │   │   │   │   ├── CaptureLayout$7.class
│   │   │   │   │   │   ├── CaptureLayout.class
│   │   │   │   │   │   ├── CaptureListener.class
│   │   │   │   │   │   ├── CheckPermission.class
│   │   │   │   │   │   ├── ClickListener.class
│   │   │   │   │   │   ├── CommonUtil.class
│   │   │   │   │   │   ├── CustomVideoView.class
│   │   │   │   │   │   ├── ElephantApp.class
│   │   │   │   │   │   ├── MainActivity$1.class
│   │   │   │   │   │   ├── MainActivity$2.class
│   │   │   │   │   │   ├── MainActivity.class
│   │   │   │   │   │   ├── MD5Tools.class
│   │   │   │   │   │   ├── PreviewActivity$1.class
│   │   │   │   │   │   ├── PreviewActivity$2.class
│   │   │   │   │   │   ├── PreviewActivity.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
│   │   │   │   │   │   ├── RateArcView$1.class
│   │   │   │   │   │   ├── RateArcView$2.class
│   │   │   │   │   │   ├── RateArcView$RateViewClickListener.class
│   │   │   │   │   │   ├── RateArcView$TimeCount.class
│   │   │   │   │   │   ├── RateArcView.class
│   │   │   │   │   │   ├── R.class
│   │   │   │   │   │   ├── ReturnButton.class
│   │   │   │   │   │   ├── ReturnListener.class
│   │   │   │   │   │   ├── StorageUtils.class
│   │   │   │   │   │   ├── TestActivity$1.class
│   │   │   │   │   │   ├── TestActivity$2.class
│   │   │   │   │   │   ├── TestActivity$3.class
│   │   │   │   │   │   ├── TestActivity$4.class
│   │   │   │   │   │   ├── TestActivity$5.class
│   │   │   │   │   │   ├── TestActivity.class
│   │   │   │   │   │   ├── TypeButton.class
│   │   │   │   │   │   ├── TypeListener.class
│   │   │   │   │   │   ├── VideoPreviewActivity$1.class
│   │   │   │   │   │   ├── VideoPreviewActivity$2.class
│   │   │   │   │   │   ├── VideoPreviewActivity$3.class
│   │   │   │   │   │   └── VideoPreviewActivity.class
│   │   │   │   │   └── wonderkiln
│   │   │   │   │   └── camerakit
│   │   │   │   │   └── core
│   │   │   │   │   ├── 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
│   │   │   │   └── qiu
│   │   │   │   └── niorgai
│   │   │   │   ├── 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
│   │   │   ├── instant-run-apk
│   │   │   │   └── debug
│   │   │   │   ├── app-debug.apk
│   │   │   │   └── output.json
│   │   │   ├── instant-run-main-apk-res
│   │   │   │   └── debug
│   │   │   │   ├── main_resources
│   │   │   │   │   └── resources_ap
│   │   │   │   └── output.json
│   │   │   ├── javaPrecompile
│   │   │   │   └── debug
│   │   │   │   └── annotationProcessors.json
│   │   │   ├── manifest-checker
│   │   │   │   └── debug
│   │   │   │   ├── manifest.crc
│   │   │   │   └── manifest.xml
│   │   │   ├── manifests
│   │   │   │   ├── density
│   │   │   │   │   └── debug
│   │   │   │   │   └── output.json
│   │   │   │   ├── full
│   │   │   │   │   └── debug
│   │   │   │   │   ├── AndroidManifest.xml
│   │   │   │   │   └── output.json
│   │   │   │   └── instant-run
│   │   │   │   └── debug
│   │   │   │   ├── AndroidManifest.xml
│   │   │   │   └── output.json
│   │   │   ├── res
│   │   │   │   ├── debug
│   │   │   │   │   ├── output.json
│   │   │   │   │   └── resources-debug.ap_
│   │   │   │   ├── merged
│   │   │   │   │   └── debug
│   │   │   │   │   ├── anim_abc_fade_in.xml.flat
│   │   │   │   │   ├── anim_abc_fade_out.xml.flat
│   │   │   │   │   ├── anim_abc_grow_fade_in_from_bottom.xml.flat
│   │   │   │   │   ├── anim_abc_popup_enter.xml.flat
│   │   │   │   │   ├── anim_abc_popup_exit.xml.flat
│   │   │   │   │   ├── anim_abc_shrink_fade_out_from_bottom.xml.flat
│   │   │   │   │   ├── anim_abc_slide_in_bottom.xml.flat
│   │   │   │   │   ├── anim_abc_slide_in_top.xml.flat
│   │   │   │   │   ├── anim_abc_slide_out_bottom.xml.flat
│   │   │   │   │   ├── anim_abc_slide_out_top.xml.flat
│   │   │   │   │   ├── anim_abc_tooltip_enter.xml.flat
│   │   │   │   │   ├── anim_abc_tooltip_exit.xml.flat
│   │   │   │   │   ├── color_abc_background_cache_hint_selector_material_dark.xml.flat
│   │   │   │   │   ├── color_abc_background_cache_hint_selector_material_light.xml.flat
│   │   │   │   │   ├── color_abc_btn_colored_borderless_text_material.xml.flat
│   │   │   │   │   ├── color_abc_btn_colored_text_material.xml.flat
│   │   │   │   │   ├── color_abc_hint_foreground_material_dark.xml.flat
│   │   │   │   │   ├── color_abc_hint_foreground_material_light.xml.flat
│   │   │   │   │   ├── color_abc_primary_text_disable_only_material_dark.xml.flat
│   │   │   │   │   ├── color_abc_primary_text_disable_only_material_light.xml.flat
│   │   │   │   │   ├── color_abc_primary_text_material_dark.xml.flat
│   │   │   │   │   ├── color_abc_primary_text_material_light.xml.flat
│   │   │   │   │   ├── color_abc_search_url_text.xml.flat
│   │   │   │   │   ├── color_abc_secondary_text_material_dark.xml.flat
│   │   │   │   │   ├── color_abc_secondary_text_material_light.xml.flat
│   │   │   │   │   ├── color_abc_tint_btn_checkable.xml.flat
│   │   │   │   │   ├── color_abc_tint_default.xml.flat
│   │   │   │   │   ├── color_abc_tint_edittext.xml.flat
│   │   │   │   │   ├── color_abc_tint_seek_thumb.xml.flat
│   │   │   │   │   ├── color_abc_tint_spinner.xml.flat
│   │   │   │   │   ├── color_abc_tint_switch_track.xml.flat
│   │   │   │   │   ├── color_switch_thumb_material_dark.xml.flat
│   │   │   │   │   ├── color_switch_thumb_material_light.xml.flat
│   │   │   │   │   ├── color-v21_abc_btn_colored_borderless_text_material.xml.flat
│   │   │   │   │   ├── color-v23_abc_btn_colored_borderless_text_material.xml.flat
│   │   │   │   │   ├── color-v23_abc_btn_colored_text_material.xml.flat
│   │   │   │   │   ├── color-v23_abc_color_highlight_material.xml.flat
│   │   │   │   │   ├── color-v23_abc_tint_btn_checkable.xml.flat
│   │   │   │   │   ├── color-v23_abc_tint_default.xml.flat
│   │   │   │   │   ├── color-v23_abc_tint_edittext.xml.flat
│   │   │   │   │   ├── color-v23_abc_tint_seek_thumb.xml.flat
│   │   │   │   │   ├── color-v23_abc_tint_spinner.xml.flat
│   │   │   │   │   ├── color-v23_abc_tint_switch_track.xml.flat
│   │   │   │   │   ├── drawable_abc_btn_borderless_material.xml.flat
│   │   │   │   │   ├── drawable_abc_btn_check_material.xml.flat
│   │   │   │   │   ├── drawable_abc_btn_colored_material.xml.flat
│   │   │   │   │   ├── drawable_abc_btn_default_mtrl_shape.xml.flat
│   │   │   │   │   ├── drawable_abc_btn_radio_material.xml.flat
│   │   │   │   │   ├── drawable_abc_cab_background_internal_bg.xml.flat
│   │   │   │   │   ├── drawable_abc_cab_background_top_material.xml.flat
│   │   │   │   │   ├── drawable_abc_dialog_material_background.xml.flat
│   │   │   │   │   ├── drawable_abc_edit_text_material.xml.flat
│   │   │   │   │   ├── drawable_abc_ic_ab_back_material.xml.flat
│   │   │   │   │   ├── drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat
│   │   │   │   │   ├── drawable_abc_ic_clear_material.xml.flat
│   │   │   │   │   ├── drawable_abc_ic_go_search_api_material.xml.flat
│   │   │   │   │   ├── drawable_abc_ic_menu_overflow_material.xml.flat
│   │   │   │   │   ├── drawable_abc_ic_search_api_material.xml.flat
│   │   │   │   │   ├── drawable_abc_ic_voice_search_api_material.xml.flat
│   │   │   │   │   ├── drawable_abc_item_background_holo_dark.xml.flat
│   │   │   │   │   ├── drawable_abc_item_background_holo_light.xml.flat
│   │   │   │   │   ├── drawable_abc_list_divider_material.xml.flat
│   │   │   │   │   ├── drawable_abc_list_selector_background_transition_holo_dark.xml.flat
│   │   │   │   │   ├── drawable_abc_list_selector_background_transition_holo_light.xml.flat
│   │   │   │   │   ├── drawable_abc_list_selector_holo_dark.xml.flat
│   │   │   │   │   ├── drawable_abc_list_selector_holo_light.xml.flat
│   │   │   │   │   ├── drawable_abc_ratingbar_indicator_material.xml.flat
│   │   │   │   │   ├── drawable_abc_ratingbar_material.xml.flat
│   │   │   │   │   ├── drawable_abc_ratingbar_small_material.xml.flat
│   │   │   │   │   ├── drawable_abc_seekbar_thumb_material.xml.flat
│   │   │   │   │   ├── drawable_abc_seekbar_tick_mark_material.xml.flat
│   │   │   │   │   ├── drawable_abc_seekbar_track_material.xml.flat
│   │   │   │   │   ├── drawable_abc_spinner_textfield_background_material.xml.flat
│   │   │   │   │   ├── drawable_abc_switch_thumb_material.xml.flat
│   │   │   │   │   ├── drawable_abc_tab_indicator_material.xml.flat
│   │   │   │   │   ├── drawable_abc_text_cursor_material.xml.flat
│   │   │   │   │   ├── drawable_abc_textfield_search_material.xml.flat
│   │   │   │   │   ├── drawable_abc_vector_test.xml.flat
│   │   │   │   │   ├── drawable-anydpi-v21_ic_back.xml.flat
│   │   │   │   │   ├── drawable-anydpi-v21_ic_launcher_background.xml.flat
│   │   │   │   │   ├── drawable-anydpi-v21_ic_photo.xml.flat
│   │   │   │   │   ├── drawable_focus_marker_fill.xml.flat
│   │   │   │   │   ├── drawable_focus_marker_outline.xml.flat
│   │   │   │   │   ├── drawable-hdpi_ic_back.png.flat
│   │   │   │   │   ├── drawable-hdpi_ic_launcher_background.png.flat
│   │   │   │   │   ├── drawable-hdpi_ic_photo.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_list_focused_holo.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_notification_bg_low_normal.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_notification_bg_normal.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat
│   │   │   │   │   ├── drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat
│   │   │   │   │   ├── drawable-ldpi_ic_back.png.flat
│   │   │   │   │   ├── drawable-ldpi_ic_launcher_background.png.flat
│   │   │   │   │   ├── drawable-ldpi_ic_photo.png.flat
│   │   │   │   │   ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi_ic_back.png.flat
│   │   │   │   │   ├── drawable-mdpi_ic_launcher_background.png.flat
│   │   │   │   │   ├── drawable-mdpi_ic_photo.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_list_focused_holo.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_notification_bg_low_normal.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_notification_bg_normal.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat
│   │   │   │   │   ├── drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat
│   │   │   │   │   ├── drawable_notification_bg_low.xml.flat
│   │   │   │   │   ├── drawable_notification_bg.xml.flat
│   │   │   │   │   ├── drawable_notification_icon_background.xml.flat
│   │   │   │   │   ├── drawable_notification_tile_bg.xml.flat
│   │   │   │   │   ├── drawable_tooltip_frame_dark.xml.flat
│   │   │   │   │   ├── drawable_tooltip_frame_light.xml.flat
│   │   │   │   │   ├── drawable-v21_abc_action_bar_item_background_material.xml.flat
│   │   │   │   │   ├── drawable-v21_abc_btn_colored_material.xml.flat
│   │   │   │   │   ├── drawable-v21_abc_dialog_material_background.xml.flat
│   │   │   │   │   ├── drawable-v21_abc_edit_text_material.xml.flat
│   │   │   │   │   ├── drawable-v21_abc_list_divider_material.xml.flat
│   │   │   │   │   ├── drawable-v21_notification_action_background.xml.flat
│   │   │   │   │   ├── drawable-v23_abc_control_background_material.xml.flat
│   │   │   │   │   ├── drawable-v24_ic_launcher_foreground.xml.flat
│   │   │   │   │   ├── drawable-watch-v20_abc_dialog_material_background.xml.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_back.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_launcher_background.png.flat
│   │   │   │   │   ├── drawable-xhdpi_ic_photo.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_notification_bg_normal.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat
│   │   │   │   │   ├── drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_a0_close.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_a0_open.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_a0_return.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_back.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_ic_back.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_ic_launcher_background.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_ic_photo.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_ok.png.flat
│   │   │   │   │   ├── drawable-xxhdpi_revarse.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi_ic_back.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi_ic_launcher_background.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi_ic_photo.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat
│   │   │   │   │   ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat
│   │   │   │   │   ├── layout_abc_action_bar_title_item.xml.flat
│   │   │   │   │   ├── layout_abc_action_bar_up_container.xml.flat
│   │   │   │   │   ├── layout_abc_action_menu_item_layout.xml.flat
│   │   │   │   │   ├── layout_abc_action_menu_layout.xml.flat
│   │   │   │   │   ├── layout_abc_action_mode_bar.xml.flat
│   │   │   │   │   ├── layout_abc_action_mode_close_item_material.xml.flat
│   │   │   │   │   ├── layout_abc_activity_chooser_view_list_item.xml.flat
│   │   │   │   │   ├── layout_abc_activity_chooser_view.xml.flat
│   │   │   │   │   ├── layout_abc_alert_dialog_button_bar_material.xml.flat
│   │   │   │   │   ├── layout_abc_alert_dialog_material.xml.flat
│   │   │   │   │   ├── layout_abc_alert_dialog_title_material.xml.flat
│   │   │   │   │   ├── layout_abc_cascading_menu_item_layout.xml.flat
│   │   │   │   │   ├── layout_abc_dialog_title_material.xml.flat
│   │   │   │   │   ├── layout_abc_expanded_menu_layout.xml.flat
│   │   │   │   │   ├── layout_abc_list_menu_item_checkbox.xml.flat
│   │   │   │   │   ├── layout_abc_list_menu_item_icon.xml.flat
│   │   │   │   │   ├── layout_abc_list_menu_item_layout.xml.flat
│   │   │   │   │   ├── layout_abc_list_menu_item_radio.xml.flat
│   │   │   │   │   ├── layout_abc_popup_menu_header_item_layout.xml.flat
│   │   │   │   │   ├── layout_abc_popup_menu_item_layout.xml.flat
│   │   │   │   │   ├── layout_abc_screen_content_include.xml.flat
│   │   │   │   │   ├── layout_abc_screen_simple_overlay_action_mode.xml.flat
│   │   │   │   │   ├── layout_abc_screen_simple.xml.flat
│   │   │   │   │   ├── layout_abc_screen_toolbar.xml.flat
│   │   │   │   │   ├── layout_abc_search_dropdown_item_icons_2line.xml.flat
│   │   │   │   │   ├── layout_abc_search_view.xml.flat
│   │   │   │   │   ├── layout_abc_select_dialog_material.xml.flat
│   │   │   │   │   ├── layout_abc_tooltip.xml.flat
│   │   │   │   │   ├── layout_activity_camera.xml.flat
│   │   │   │   │   ├── layout_activity_main.xml.flat
│   │   │   │   │   ├── layout_activity_preview.xml.flat
│   │   │   │   │   ├── layout_activity_test.xml.flat
│   │   │   │   │   ├── layout_activity_video_preview.xml.flat
│   │   │   │   │   ├── layout_layout_focus_marker.xml.flat
│   │   │   │   │   ├── layout_notification_action_tombstone.xml.flat
│   │   │   │   │   ├── layout_notification_action.xml.flat
│   │   │   │   │   ├── layout_notification_template_icon_group.xml.flat
│   │   │   │   │   ├── layout_notification_template_part_chronometer.xml.flat
│   │   │   │   │   ├── layout_notification_template_part_time.xml.flat
│   │   │   │   │   ├── layout_select_dialog_item_material.xml.flat
│   │   │   │   │   ├── layout_select_dialog_multichoice_material.xml.flat
│   │   │   │   │   ├── layout_select_dialog_singlechoice_material.xml.flat
│   │   │   │   │   ├── layout_support_simple_spinner_dropdown_item.xml.flat
│   │   │   │   │   ├── layout_surface_view.xml.flat
│   │   │   │   │   ├── layout_texture_view.xml.flat
│   │   │   │   │   ├── layout-v16_notification_template_custom_big.xml.flat
│   │   │   │   │   ├── layout-v21_notification_action_tombstone.xml.flat
│   │   │   │   │   ├── layout-v21_notification_action.xml.flat
│   │   │   │   │   ├── layout-v21_notification_template_custom_big.xml.flat
│   │   │   │   │   ├── layout-v21_notification_template_icon_group.xml.flat
│   │   │   │   │   ├── layout-v26_abc_screen_toolbar.xml.flat
│   │   │   │   │   ├── layout-watch-v20_abc_alert_dialog_button_bar_material.xml.flat
│   │   │   │   │   ├── layout-watch-v20_abc_alert_dialog_title_material.xml.flat
│   │   │   │   │   ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat
│   │   │   │   │   ├── mipmap-anydpi-v26_ic_launcher.xml.flat
│   │   │   │   │   ├── mipmap-hdpi_ic_launcher.png.flat
│   │   │   │   │   ├── mipmap-hdpi_ic_launcher_round.png.flat
│   │   │   │   │   ├── mipmap-mdpi_ic_launcher.png.flat
│   │   │   │   │   ├── mipmap-mdpi_ic_launcher_round.png.flat
│   │   │   │   │   ├── mipmap-xhdpi_ic_launcher.png.flat
│   │   │   │   │   ├── mipmap-xhdpi_ic_launcher_round.png.flat
│   │   │   │   │   ├── mipmap-xxhdpi_ic_launcher.png.flat
│   │   │   │   │   ├── mipmap-xxhdpi_ic_launcher_round.png.flat
│   │   │   │   │   ├── mipmap-xxxhdpi_ic_launcher.png.flat
│   │   │   │   │   ├── mipmap-xxxhdpi_ic_launcher_round.png.flat
│   │   │   │   │   ├── values-af_values-af.arsc.flat
│   │   │   │   │   ├── values-am_values-am.arsc.flat
│   │   │   │   │   ├── values-ar_values-ar.arsc.flat
│   │   │   │   │   ├── values-as_values-as.arsc.flat
│   │   │   │   │   ├── values-az_values-az.arsc.flat
│   │   │   │   │   ├── values-be_values-be.arsc.flat
│   │   │   │   │   ├── values-bg_values-bg.arsc.flat
│   │   │   │   │   ├── values-bn_values-bn.arsc.flat
│   │   │   │   │   ├── values-b+sr+Latn_values-b+sr+Latn.arsc.flat
│   │   │   │   │   ├── values-bs_values-bs.arsc.flat
│   │   │   │   │   ├── values-ca_values-ca.arsc.flat
│   │   │   │   │   ├── values-cs_values-cs.arsc.flat
│   │   │   │   │   ├── values-da_values-da.arsc.flat
│   │   │   │   │   ├── values-de_values-de.arsc.flat
│   │   │   │   │   ├── values-el_values-el.arsc.flat
│   │   │   │   │   ├── values-en-rAU_values-en-rAU.arsc.flat
│   │   │   │   │   ├── values-en-rCA_values-en-rCA.arsc.flat
│   │   │   │   │   ├── values-en-rGB_values-en-rGB.arsc.flat
│   │   │   │   │   ├── values-en-rIN_values-en-rIN.arsc.flat
│   │   │   │   │   ├── values-en-rXC_values-en-rXC.arsc.flat
│   │   │   │   │   ├── values-es-rUS_values-es-rUS.arsc.flat
│   │   │   │   │   ├── values-es_values-es.arsc.flat
│   │   │   │   │   ├── values-et_values-et.arsc.flat
│   │   │   │   │   ├── values-eu_values-eu.arsc.flat
│   │   │   │   │   ├── values-fa_values-fa.arsc.flat
│   │   │   │   │   ├── values-fi_values-fi.arsc.flat
│   │   │   │   │   ├── values-fr-rCA_values-fr-rCA.arsc.flat
│   │   │   │   │   ├── values-fr_values-fr.arsc.flat
│   │   │   │   │   ├── values-gl_values-gl.arsc.flat
│   │   │   │   │   ├── values-gu_values-gu.arsc.flat
│   │   │   │   │   ├── values-h720dp-v13_values-h720dp-v13.arsc.flat
│   │   │   │   │   ├── values-hdpi-v4_values-hdpi-v4.arsc.flat
│   │   │   │   │   ├── values-hi_values-hi.arsc.flat
│   │   │   │   │   ├── values-hr_values-hr.arsc.flat
│   │   │   │   │   ├── values-hu_values-hu.arsc.flat
│   │   │   │   │   ├── values-hy_values-hy.arsc.flat
│   │   │   │   │   ├── values-in_values-in.arsc.flat
│   │   │   │   │   ├── values-is_values-is.arsc.flat
│   │   │   │   │   ├── values-it_values-it.arsc.flat
│   │   │   │   │   ├── values-iw_values-iw.arsc.flat
│   │   │   │   │   ├── values-ja_values-ja.arsc.flat
│   │   │   │   │   ├── values-ka_values-ka.arsc.flat
│   │   │   │   │   ├── values-kk_values-kk.arsc.flat
│   │   │   │   │   ├── values-km_values-km.arsc.flat
│   │   │   │   │   ├── values-kn_values-kn.arsc.flat
│   │   │   │   │   ├── values-ko_values-ko.arsc.flat
│   │   │   │   │   ├── values-ky_values-ky.arsc.flat
│   │   │   │   │   ├── values-land_values-land.arsc.flat
│   │   │   │   │   ├── values-large-v4_values-large-v4.arsc.flat
│   │   │   │   │   ├── values-ldltr-v21_values-ldltr-v21.arsc.flat
│   │   │   │   │   ├── values-lo_values-lo.arsc.flat
│   │   │   │   │   ├── values-lt_values-lt.arsc.flat
│   │   │   │   │   ├── values-lv_values-lv.arsc.flat
│   │   │   │   │   ├── values-mk_values-mk.arsc.flat
│   │   │   │   │   ├── values-ml_values-ml.arsc.flat
│   │   │   │   │   ├── values-mn_values-mn.arsc.flat
│   │   │   │   │   ├── values-mr_values-mr.arsc.flat
│   │   │   │   │   ├── values-ms_values-ms.arsc.flat
│   │   │   │   │   ├── values-my_values-my.arsc.flat
│   │   │   │   │   ├── values-nb_values-nb.arsc.flat
│   │   │   │   │   ├── values-ne_values-ne.arsc.flat
│   │   │   │   │   ├── values-night-v8_values-night-v8.arsc.flat
│   │   │   │   │   ├── values-nl_values-nl.arsc.flat
│   │   │   │   │   ├── values-or_values-or.arsc.flat
│   │   │   │   │   ├── values-pa_values-pa.arsc.flat
│   │   │   │   │   ├── values-pl_values-pl.arsc.flat
│   │   │   │   │   ├── values-port_values-port.arsc.flat
│   │   │   │   │   ├── values-pt-rBR_values-pt-rBR.arsc.flat
│   │   │   │   │   ├── values-pt-rPT_values-pt-rPT.arsc.flat
│   │   │   │   │   ├── values-pt_values-pt.arsc.flat
│   │   │   │   │   ├── values-ro_values-ro.arsc.flat
│   │   │   │   │   ├── values-ru_values-ru.arsc.flat
│   │   │   │   │   ├── values-si_values-si.arsc.flat
│   │   │   │   │   ├── values-sk_values-sk.arsc.flat
│   │   │   │   │   ├── values-sl_values-sl.arsc.flat
│   │   │   │   │   ├── values-sq_values-sq.arsc.flat
│   │   │   │   │   ├── values-sr_values-sr.arsc.flat
│   │   │   │   │   ├── values-sv_values-sv.arsc.flat
│   │   │   │   │   ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat
│   │   │   │   │   ├── values-sw_values-sw.arsc.flat
│   │   │   │   │   ├── values-ta_values-ta.arsc.flat
│   │   │   │   │   ├── values-te_values-te.arsc.flat
│   │   │   │   │   ├── values-th_values-th.arsc.flat
│   │   │   │   │   ├── values-tl_values-tl.arsc.flat
│   │   │   │   │   ├── values-tr_values-tr.arsc.flat
│   │   │   │   │   ├── values-uk_values-uk.arsc.flat
│   │   │   │   │   ├── values-ur_values-ur.arsc.flat
│   │   │   │   │   ├── values-uz_values-uz.arsc.flat
│   │   │   │   │   ├── values-v16_values-v16.arsc.flat
│   │   │   │   │   ├── values-v17_values-v17.arsc.flat
│   │   │   │   │   ├── values-v18_values-v18.arsc.flat
│   │   │   │   │   ├── values-v21_values-v21.arsc.flat
│   │   │   │   │   ├── values-v22_values-v22.arsc.flat
│   │   │   │   │   ├── values-v23_values-v23.arsc.flat
│   │   │   │   │   ├── values-v24_values-v24.arsc.flat
│   │   │   │   │   ├── values-v25_values-v25.arsc.flat
│   │   │   │   │   ├── values-v26_values-v26.arsc.flat
│   │   │   │   │   ├── values-v28_values-v28.arsc.flat
│   │   │   │   │   ├── values_values.arsc.flat
│   │   │   │   │   ├── values-vi_values-vi.arsc.flat
│   │   │   │   │   ├── values-watch-v20_values-watch-v20.arsc.flat
│   │   │   │   │   ├── values-watch-v21_values-watch-v21.arsc.flat
│   │   │   │   │   ├── values-xlarge-v4_values-xlarge-v4.arsc.flat
│   │   │   │   │   ├── values-zh-rCN_values-zh-rCN.arsc.flat
│   │   │   │   │   ├── values-zh-rHK_values-zh-rHK.arsc.flat
│   │   │   │   │   ├── values-zh-rTW_values-zh-rTW.arsc.flat
│   │   │   │   │   └── values-zu_values-zu.arsc.flat
│   │   │   │   └── symbol-table-with-package
│   │   │   │   └── debug
│   │   │   │   └── package-aware-r.txt
│   │   │   ├── resources
│   │   │   │   └── instant-run
│   │   │   │   └── debug
│   │   │   │   ├── output.json
│   │   │   │   └── resources-debug.apk
│   │   │   ├── split-apk
│   │   │   │   └── debug
│   │   │   │   ├── dep
│   │   │   │   │   └── dependencies.apk
│   │   │   │   ├── resources
│   │   │   │   │   └── AndroidManifest.xml
│   │   │   │   └── slices
│   │   │   │   ├── slice_0.apk
│   │   │   │   ├── slice_1.apk
│   │   │   │   ├── slice_2.apk
│   │   │   │   ├── slice_3.apk
│   │   │   │   ├── slice_4.apk
│   │   │   │   ├── slice_5.apk
│   │   │   │   ├── slice_6.apk
│   │   │   │   ├── slice_7.apk
│   │   │   │   ├── slice_8.apk
│   │   │   │   └── slice_9.apk
│   │   │   ├── splits-support
│   │   │   │   └── debug
│   │   │   │   ├── apk-list
│   │   │   │   │   └── apk-list.gson
│   │   │   │   └── split-list
│   │   │   │   └── split-list.gson
│   │   │   ├── symbols
│   │   │   │   └── debug
│   │   │   │   └── R.txt
│   │   │   └── transforms
│   │   │   ├── dexBuilder
│   │   │   │   └── debug
│   │   │   │   ├── 124.jar
│   │   │   │   ├── 125.jar
│   │   │   │   ├── 126.jar
│   │   │   │   ├── 127.jar
│   │   │   │   ├── 128.jar
│   │   │   │   ├── 129.jar
│   │   │   │   ├── 130.jar
│   │   │   │   ├── 131.jar
│   │   │   │   ├── 132.jar
│   │   │   │   ├── 133.jar
│   │   │   │   ├── 134.jar
│   │   │   │   ├── 135.jar
│   │   │   │   ├── 136.jar
│   │   │   │   ├── 137.jar
│   │   │   │   ├── 138.jar
│   │   │   │   ├── 139.jar
│   │   │   │   ├── 140.jar
│   │   │   │   ├── 141.jar
│   │   │   │   ├── 142.jar
│   │   │   │   ├── 143.jar
│   │   │   │   ├── 144.jar
│   │   │   │   ├── 145.jar
│   │   │   │   ├── 146.jar
│   │   │   │   ├── 147.jar
│   │   │   │   ├── 148.jar
│   │   │   │   ├── 149.jar
│   │   │   │   ├── 150.jar
│   │   │   │   ├── 151.jar
│   │   │   │   ├── 152.jar
│   │   │   │   ├── 153.jar
│   │   │   │   ├── 154.jar
│   │   │   │   ├── 155.jar
│   │   │   │   ├── 156.jar
│   │   │   │   ├── 157.jar
│   │   │   │   ├── 158.jar
│   │   │   │   ├── 159.jar
│   │   │   │   ├── 161.jar
│   │   │   │   ├── 162.jar
│   │   │   │   ├── 163.jar
│   │   │   │   ├── 164.jar
│   │   │   │   ├── 167
│   │   │   │   │   ├── android
│   │   │   │   │   │   ├── arch
│   │   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   │   └── livedata
│   │   │   │   │   │   │   └── core
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── compat
│   │   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   ├── fragment
│   │   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── slidingpanelayout
│   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_0.dex
│   │   │   │   ├── 168
│   │   │   │   │   ├── android
│   │   │   │   │   │   ├── arch
│   │   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── drawerlayout
│   │   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── print
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_1.dex
│   │   │   │   │   └── camera
│   │   │   │   │   └── demo
│   │   │   │   │   ├── AppStoragePath.dex
│   │   │   │   │   ├── BuildConfig.dex
│   │   │   │   │   ├── CameraActivity$1.dex
│   │   │   │   │   ├── CameraActivity$2.dex
│   │   │   │   │   ├── CameraActivity$3.dex
│   │   │   │   │   ├── CameraActivity$4.dex
│   │   │   │   │   ├── CameraActivity.dex
│   │   │   │   │   ├── CaptureButton$1.dex
│   │   │   │   │   ├── CaptureButton$2.dex
│   │   │   │   │   ├── CaptureButton$3.dex
│   │   │   │   │   ├── CaptureButton$4.dex
│   │   │   │   │   ├── CaptureButton$5.dex
│   │   │   │   │   ├── CaptureButton$LongPressRunnable.dex
│   │   │   │   │   ├── CaptureButton$RecordCountDownTimer.dex
│   │   │   │   │   ├── CaptureButton.dex
│   │   │   │   │   ├── CaptureLayout$1.dex
│   │   │   │   │   ├── CaptureLayout$2.dex
│   │   │   │   │   ├── CaptureLayout$3.dex
│   │   │   │   │   ├── CaptureLayout$4.dex
│   │   │   │   │   ├── CaptureLayout$5.dex
│   │   │   │   │   ├── CaptureLayout$6.dex
│   │   │   │   │   ├── CaptureLayout$7.dex
│   │   │   │   │   ├── CaptureLayout.dex
│   │   │   │   │   ├── CaptureListener.dex
│   │   │   │   │   ├── CheckPermission.dex
│   │   │   │   │   ├── ClickListener.dex
│   │   │   │   │   ├── CommonUtil.dex
│   │   │   │   │   ├── CustomVideoView.dex
│   │   │   │   │   ├── ElephantApp.dex
│   │   │   │   │   ├── MainActivity$1.dex
│   │   │   │   │   ├── MainActivity$2.dex
│   │   │   │   │   ├── MainActivity.dex
│   │   │   │   │   ├── MD5Tools.dex
│   │   │   │   │   ├── PreviewActivity$1.dex
│   │   │   │   │   ├── PreviewActivity$2.dex
│   │   │   │   │   ├── PreviewActivity.dex
│   │   │   │   │   ├── R$anim.dex
│   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   ├── R$bool.dex
│   │   │   │   │   ├── R$color.dex
│   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   ├── R$id.dex
│   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   ├── R$mipmap.dex
│   │   │   │   │   ├── R$string.dex
│   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   ├── R$style.dex
│   │   │   │   │   ├── RateArcView$1.dex
│   │   │   │   │   ├── RateArcView$2.dex
│   │   │   │   │   ├── RateArcView$RateViewClickListener.dex
│   │   │   │   │   ├── RateArcView$TimeCount.dex
│   │   │   │   │   ├── RateArcView.dex
│   │   │   │   │   ├── R.dex
│   │   │   │   │   ├── ReturnButton.dex
│   │   │   │   │   ├── ReturnListener.dex
│   │   │   │   │   ├── StorageUtils.dex
│   │   │   │   │   ├── TestActivity$1.dex
│   │   │   │   │   ├── TestActivity$2.dex
│   │   │   │   │   ├── TestActivity$3.dex
│   │   │   │   │   ├── TestActivity$4.dex
│   │   │   │   │   ├── TestActivity$5.dex
│   │   │   │   │   ├── TestActivity.dex
│   │   │   │   │   ├── TypeButton.dex
│   │   │   │   │   ├── TypeListener.dex
│   │   │   │   │   ├── VideoPreviewActivity$1.dex
│   │   │   │   │   ├── VideoPreviewActivity$2.dex
│   │   │   │   │   ├── VideoPreviewActivity$3.dex
│   │   │   │   │   └── VideoPreviewActivity.dex
│   │   │   │   ├── 169
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── coreutils
│   │   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   ├── customview
│   │   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── v7
│   │   │   │   │   │   └── appcompat
│   │   │   │   │   │   ├── R$anim.dex
│   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   ├── R$bool.dex
│   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_2.dex
│   │   │   │   ├── 170
│   │   │   │   │   ├── android
│   │   │   │   │   │   ├── arch
│   │   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   │   └── livedata
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── documentfile
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   ├── graphics
│   │   │   │   │   │   │   └── drawable
│   │   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── v7
│   │   │   │   │   │   └── viewpager
│   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_3.dex
│   │   │   │   ├── 171
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── arch
│   │   │   │   │   │   └── core
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_4.dex
│   │   │   │   │   └── apeng
│   │   │   │   │   └── permissions
│   │   │   │   │   └── R.dex
│   │   │   │   ├── 172
│   │   │   │   │   ├── android
│   │   │   │   │   │   ├── arch
│   │   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   │   └── viewmodel
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── asynclayoutinflater
│   │   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   ├── cursoradapter
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   ├── interpolator
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── loader
│   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   ├── androidx
│   │   │   │   │   │   └── versionedparcelable
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_5.dex
│   │   │   │   ├── 173
│   │   │   │   │   ├── com
│   │   │   │   │   │   └── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_6.dex
│   │   │   │   │   └── qiu
│   │   │   │   │   └── niorgai
│   │   │   │   │   ├── R$anim.dex
│   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   ├── R$bool.dex
│   │   │   │   │   ├── R$color.dex
│   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   ├── R$id.dex
│   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   ├── R$string.dex
│   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   ├── R$style.dex
│   │   │   │   │   └── R.dex
│   │   │   │   ├── 174
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── coreui
│   │   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── swiperefreshlayout
│   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_7.dex
│   │   │   │   ├── 175
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── coordinatorlayout
│   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   ├── R$color.dex
│   │   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   │   ├── R$string.dex
│   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   ├── R$style.dex
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_8.dex
│   │   │   │   │   └── wonderkiln
│   │   │   │   │   └── camerakit
│   │   │   │   │   └── core
│   │   │   │   │   ├── R$anim.dex
│   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   ├── R$bool.dex
│   │   │   │   │   ├── R$color.dex
│   │   │   │   │   ├── R$dimen.dex
│   │   │   │   │   ├── R$drawable.dex
│   │   │   │   │   ├── R$id.dex
│   │   │   │   │   ├── R$integer.dex
│   │   │   │   │   ├── R$layout.dex
│   │   │   │   │   ├── R$string.dex
│   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   ├── R$style.dex
│   │   │   │   │   └── R.dex
│   │   │   │   ├── 176
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── constraint
│   │   │   │   │   │   │   ├── R$attr.dex
│   │   │   │   │   │   │   ├── R$id.dex
│   │   │   │   │   │   │   ├── R$styleable.dex
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   ├── exifinterface
│   │   │   │   │   │   │   └── R.dex
│   │   │   │   │   │   └── localbroadcastmanager
│   │   │   │   │   │   └── R.dex
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_9.dex
│   │   │   │   └── __content__.json
│   │   │   ├── dexMerger
│   │   │   │   └── debug
│   │   │   │   ├── 17
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 18
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 19
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 20
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 21
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 22
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 23
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 24
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 25
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 26
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 27
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 28
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 29
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 30
│   │   │   │   │   └── classes.dex
│   │   │   │   ├── 31
│   │   │   │   │   └── classes.dex
│   │   │   │   └── __content__.json
│   │   │   ├── externalLibsDexMerger
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   └── classes.dex
│   │   │   │   └── __content__.json
│   │   │   ├── extractJars
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── instantRun
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   ├── android
│   │   │   │   │   │   ├── arch
│   │   │   │   │   │   │   ├── core
│   │   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   │   ├── livedata
│   │   │   │   │   │   │   │   ├── core
│   │   │   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   │   ├── R.class
│   │   │   │   │   │   │   └── viewmodel
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── asynclayoutinflater
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   ├── compat
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── constraint
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── coordinatorlayout
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   ├── coreui
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── coreutils
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$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
│   │   │   │   │   │   ├── cursoradapter
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── customview
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   ├── documentfile
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── drawerlayout
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   ├── exifinterface
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── fragment
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── graphics
│   │   │   │   │   │   │   └── drawable
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   ├── interpolator
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── loader
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   ├── localbroadcastmanager
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── print
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── slidingpanelayout
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   ├── swiperefreshlayout
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── v7
│   │   │   │   │   │   ├── appcompat
│   │   │   │   │   │   │   ├── R$anim.class
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$bool.class
│   │   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── viewpager
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── androidx
│   │   │   │   │   │   └── versionedparcelable
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── com
│   │   │   │   │   │   ├── apeng
│   │   │   │   │   │   │   └── permissions
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── camera
│   │   │   │   │   │   │   └── demo
│   │   │   │   │   │   │   ├── AppStoragePath.class
│   │   │   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   │   │   ├── CameraActivity$1.class
│   │   │   │   │   │   │   ├── CameraActivity$2.class
│   │   │   │   │   │   │   ├── CameraActivity$3.class
│   │   │   │   │   │   │   ├── CameraActivity$4.class
│   │   │   │   │   │   │   ├── CameraActivity.class
│   │   │   │   │   │   │   ├── CaptureButton$1.class
│   │   │   │   │   │   │   ├── CaptureButton$2.class
│   │   │   │   │   │   │   ├── CaptureButton$3.class
│   │   │   │   │   │   │   ├── CaptureButton$4.class
│   │   │   │   │   │   │   ├── CaptureButton$5.class
│   │   │   │   │   │   │   ├── CaptureButton$LongPressRunnable.class
│   │   │   │   │   │   │   ├── CaptureButton$RecordCountDownTimer.class
│   │   │   │   │   │   │   ├── CaptureButton.class
│   │   │   │   │   │   │   ├── CaptureLayout$1.class
│   │   │   │   │   │   │   ├── CaptureLayout$2.class
│   │   │   │   │   │   │   ├── CaptureLayout$3.class
│   │   │   │   │   │   │   ├── CaptureLayout$4.class
│   │   │   │   │   │   │   ├── CaptureLayout$5.class
│   │   │   │   │   │   │   ├── CaptureLayout$6.class
│   │   │   │   │   │   │   ├── CaptureLayout$7.class
│   │   │   │   │   │   │   ├── CaptureLayout.class
│   │   │   │   │   │   │   ├── CaptureListener.class
│   │   │   │   │   │   │   ├── CheckPermission.class
│   │   │   │   │   │   │   ├── ClickListener.class
│   │   │   │   │   │   │   ├── CommonUtil.class
│   │   │   │   │   │   │   ├── CustomVideoView.class
│   │   │   │   │   │   │   ├── ElephantApp.class
│   │   │   │   │   │   │   ├── MainActivity$1.class
│   │   │   │   │   │   │   ├── MainActivity$2.class
│   │   │   │   │   │   │   ├── MainActivity.class
│   │   │   │   │   │   │   ├── MD5Tools.class
│   │   │   │   │   │   │   ├── PreviewActivity$1.class
│   │   │   │   │   │   │   ├── PreviewActivity$2.class
│   │   │   │   │   │   │   ├── PreviewActivity.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
│   │   │   │   │   │   │   ├── RateArcView$1.class
│   │   │   │   │   │   │   ├── RateArcView$2.class
│   │   │   │   │   │   │   ├── RateArcView$RateViewClickListener.class
│   │   │   │   │   │   │   ├── RateArcView$TimeCount.class
│   │   │   │   │   │   │   ├── RateArcView.class
│   │   │   │   │   │   │   ├── R.class
│   │   │   │   │   │   │   ├── ReturnButton.class
│   │   │   │   │   │   │   ├── ReturnListener.class
│   │   │   │   │   │   │   ├── StorageUtils.class
│   │   │   │   │   │   │   ├── TestActivity$1.class
│   │   │   │   │   │   │   ├── TestActivity$2.class
│   │   │   │   │   │   │   ├── TestActivity$3.class
│   │   │   │   │   │   │   ├── TestActivity$4.class
│   │   │   │   │   │   │   ├── TestActivity$5.class
│   │   │   │   │   │   │   ├── TestActivity.class
│   │   │   │   │   │   │   ├── TypeButton.class
│   │   │   │   │   │   │   ├── TypeListener.class
│   │   │   │   │   │   │   ├── VideoPreviewActivity$1.class
│   │   │   │   │   │   │   ├── VideoPreviewActivity$2.class
│   │   │   │   │   │   │   ├── VideoPreviewActivity$3.class
│   │   │   │   │   │   │   └── VideoPreviewActivity.class
│   │   │   │   │   │   └── wonderkiln
│   │   │   │   │   │   └── camerakit
│   │   │   │   │   │   └── core
│   │   │   │   │   │   ├── 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
│   │   │   │   │   └── qiu
│   │   │   │   │   └── niorgai
│   │   │   │   │   ├── 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
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunDependenciesApk
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunSlicer
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   ├── android
│   │   │   │   │   │   ├── arch
│   │   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   │   └── livedata
│   │   │   │   │   │   │   └── core
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── compat
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── fragment
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$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
│   │   │   │   │   │   └── slidingpanelayout
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_0.class
│   │   │   │   ├── 1
│   │   │   │   │   ├── android
│   │   │   │   │   │   ├── arch
│   │   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── drawerlayout
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   └── print
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_1.class
│   │   │   │   │   └── camera
│   │   │   │   │   └── demo
│   │   │   │   │   ├── AppStoragePath.class
│   │   │   │   │   ├── BuildConfig.class
│   │   │   │   │   ├── CameraActivity$1.class
│   │   │   │   │   ├── CameraActivity$2.class
│   │   │   │   │   ├── CameraActivity$3.class
│   │   │   │   │   ├── CameraActivity$4.class
│   │   │   │   │   ├── CameraActivity.class
│   │   │   │   │   ├── CaptureButton$1.class
│   │   │   │   │   ├── CaptureButton$2.class
│   │   │   │   │   ├── CaptureButton$3.class
│   │   │   │   │   ├── CaptureButton$4.class
│   │   │   │   │   ├── CaptureButton$5.class
│   │   │   │   │   ├── CaptureButton$LongPressRunnable.class
│   │   │   │   │   ├── CaptureButton$RecordCountDownTimer.class
│   │   │   │   │   ├── CaptureButton.class
│   │   │   │   │   ├── CaptureLayout$1.class
│   │   │   │   │   ├── CaptureLayout$2.class
│   │   │   │   │   ├── CaptureLayout$3.class
│   │   │   │   │   ├── CaptureLayout$4.class
│   │   │   │   │   ├── CaptureLayout$5.class
│   │   │   │   │   ├── CaptureLayout$6.class
│   │   │   │   │   ├── CaptureLayout$7.class
│   │   │   │   │   ├── CaptureLayout.class
│   │   │   │   │   ├── CaptureListener.class
│   │   │   │   │   ├── CheckPermission.class
│   │   │   │   │   ├── ClickListener.class
│   │   │   │   │   ├── CommonUtil.class
│   │   │   │   │   ├── CustomVideoView.class
│   │   │   │   │   ├── ElephantApp.class
│   │   │   │   │   ├── MainActivity$1.class
│   │   │   │   │   ├── MainActivity$2.class
│   │   │   │   │   ├── MainActivity.class
│   │   │   │   │   ├── MD5Tools.class
│   │   │   │   │   ├── PreviewActivity$1.class
│   │   │   │   │   ├── PreviewActivity$2.class
│   │   │   │   │   ├── PreviewActivity.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
│   │   │   │   │   ├── RateArcView$1.class
│   │   │   │   │   ├── RateArcView$2.class
│   │   │   │   │   ├── RateArcView$RateViewClickListener.class
│   │   │   │   │   ├── RateArcView$TimeCount.class
│   │   │   │   │   ├── RateArcView.class
│   │   │   │   │   ├── R.class
│   │   │   │   │   ├── ReturnButton.class
│   │   │   │   │   ├── ReturnListener.class
│   │   │   │   │   ├── StorageUtils.class
│   │   │   │   │   ├── TestActivity$1.class
│   │   │   │   │   ├── TestActivity$2.class
│   │   │   │   │   ├── TestActivity$3.class
│   │   │   │   │   ├── TestActivity$4.class
│   │   │   │   │   ├── TestActivity$5.class
│   │   │   │   │   ├── TestActivity.class
│   │   │   │   │   ├── TypeButton.class
│   │   │   │   │   ├── TypeListener.class
│   │   │   │   │   ├── VideoPreviewActivity$1.class
│   │   │   │   │   ├── VideoPreviewActivity$2.class
│   │   │   │   │   ├── VideoPreviewActivity$3.class
│   │   │   │   │   └── VideoPreviewActivity.class
│   │   │   │   ├── 2
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── coreutils
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   ├── customview
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── v7
│   │   │   │   │   │   └── appcompat
│   │   │   │   │   │   ├── R$anim.class
│   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   ├── R$bool.class
│   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_2.class
│   │   │   │   ├── 3
│   │   │   │   │   ├── android
│   │   │   │   │   │   ├── arch
│   │   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   │   └── livedata
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── documentfile
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── graphics
│   │   │   │   │   │   │   └── drawable
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$color.class
│   │   │   │   │   │   │   ├── R$dimen.class
│   │   │   │   │   │   │   ├── R$drawable.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$integer.class
│   │   │   │   │   │   │   ├── R$layout.class
│   │   │   │   │   │   │   ├── R$string.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   ├── R$style.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── v7
│   │   │   │   │   │   └── viewpager
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_3.class
│   │   │   │   ├── 4
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── arch
│   │   │   │   │   │   └── core
│   │   │   │   │   │   └── R.class
│   │   │   │   │   └── com
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_4.class
│   │   │   │   │   └── apeng
│   │   │   │   │   └── permissions
│   │   │   │   │   └── R.class
│   │   │   │   ├── 5
│   │   │   │   │   ├── android
│   │   │   │   │   │   ├── arch
│   │   │   │   │   │   │   └── lifecycle
│   │   │   │   │   │   │   └── viewmodel
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── asynclayoutinflater
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   ├── cursoradapter
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── interpolator
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── loader
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   ├── androidx
│   │   │   │   │   │   └── versionedparcelable
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_5.class
│   │   │   │   ├── 6
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   ├── com
│   │   │   │   │   │   └── android
│   │   │   │   │   │   └── tools
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_6.class
│   │   │   │   │   └── qiu
│   │   │   │   │   └── niorgai
│   │   │   │   │   ├── 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
│   │   │   │   ├── 7
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── coreui
│   │   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   └── swiperefreshlayout
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_7.class
│   │   │   │   ├── 8
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   └── coordinatorlayout
│   │   │   │   │   │   ├── R$attr.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
│   │   │   │   │   │   └── ir
│   │   │   │   │   │   └── dummy
│   │   │   │   │   │   └── slice_8.class
│   │   │   │   │   └── wonderkiln
│   │   │   │   │   └── camerakit
│   │   │   │   │   └── core
│   │   │   │   │   ├── 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
│   │   │   │   ├── 9
│   │   │   │   │   ├── android
│   │   │   │   │   │   └── support
│   │   │   │   │   │   ├── constraint
│   │   │   │   │   │   │   ├── R$attr.class
│   │   │   │   │   │   │   ├── R$id.class
│   │   │   │   │   │   │   ├── R$styleable.class
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   ├── exifinterface
│   │   │   │   │   │   │   └── R.class
│   │   │   │   │   │   └── localbroadcastmanager
│   │   │   │   │   │   └── R.class
│   │   │   │   │   ├── buildId.txt
│   │   │   │   │   └── com
│   │   │   │   │   └── android
│   │   │   │   │   └── tools
│   │   │   │   │   └── ir
│   │   │   │   │   └── dummy
│   │   │   │   │   └── slice_9.class
│   │   │   │   └── __content__.json
│   │   │   ├── instantRunSlicesApk
│   │   │   │   └── debug
│   │   │   │   └── __content__.json
│   │   │   ├── mergeJavaRes
│   │   │   │   └── debug
│   │   │   │   ├── 0.jar
│   │   │   │   └── __content__.json
│   │   │   ├── mergeJniLibs
│   │   │   │   └── debug
│   │   │   │   ├── 0
│   │   │   │   │   └── lib
│   │   │   │   │   ├── arm64-v8a
│   │   │   │   │   │   ├── libjpegTransformer.so
│   │   │   │   │   │   └── libyuvOperator.so
│   │   │   │   │   ├── armeabi-v7a
│   │   │   │   │   │   ├── libjpegTransformer.so
│   │   │   │   │   │   └── libyuvOperator.so
│   │   │   │   │   ├── x86
│   │   │   │   │   │   ├── libjpegTransformer.so
│   │   │   │   │   │   └── libyuvOperator.so
│   │   │   │   │   └── x86_64
│   │   │   │   │   ├── libjpegTransformer.so
│   │   │   │   │   └── libyuvOperator.so
│   │   │   │   └── __content__.json
│   │   │   └── stripDebugSymbol
│   │   │   └── debug
│   │   │   ├── 0
│   │   │   │   └── lib
│   │   │   │   ├── arm64-v8a
│   │   │   │   │   ├── libjpegTransformer.so
│   │   │   │   │   └── libyuvOperator.so
│   │   │   │   ├── armeabi-v7a
│   │   │   │   │   ├── libjpegTransformer.so
│   │   │   │   │   └── libyuvOperator.so
│   │   │   │   ├── x86
│   │   │   │   │   ├── libjpegTransformer.so
│   │   │   │   │   └── libyuvOperator.so
│   │   │   │   └── x86_64
│   │   │   │   ├── libjpegTransformer.so
│   │   │   │   └── libyuvOperator.so
│   │   │   └── __content__.json
│   │   └── outputs
│   │   ├── apk
│   │   │   └── debug
│   │   │   ├── app-debug.apk
│   │   │   └── output.json
│   │   └── logs
│   │   └── manifest-merger-debug-report.txt
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src
│   ├── androidTest
│   │   └── java
│   │   └── com
│   │   └── camera
│   │   └── demo
│   │   └── ExampleInstrumentedTest.java
│   ├── main
│   │   ├── AndroidManifest.xml
│   │   ├── java
│   │   │   └── com
│   │   │   └── camera
│   │   │   └── demo
│   │   │   ├── AppStoragePath.java
│   │   │   ├── CameraActivity.java
│   │   │   ├── CaptureButton.java
│   │   │   ├── CaptureLayout.java
│   │   │   ├── CaptureListener.java
│   │   │   ├── CheckPermission.java
│   │   │   ├── ClickListener.java
│   │   │   ├── CommonUtil.java
│   │   │   ├── CustomVideoView.java
│   │   │   ├── ElephantApp.java
│   │   │   ├── MainActivity.java
│   │   │   ├── MD5Tools.java
│   │   │   ├── PreviewActivity.java
│   │   │   ├── RateArcView.java
│   │   │   ├── ReturnButton.java
│   │   │   ├── StorageUtils.java
│   │   │   ├── TestActivity.java
│   │   │   ├── TypeButton.java
│   │   │   ├── TypeListener.java
│   │   │   └── VideoPreviewActivity.java
│   │   └── res
│   │   ├── drawable
│   │   │   ├── ic_back.xml
│   │   │   ├── ic_launcher_background.xml
│   │   │   └── ic_photo.xml
│   │   ├── drawable-v24
│   │   │   └── ic_launcher_foreground.xml
│   │   ├── drawable-xxhdpi
│   │   │   ├── a0_close.png
│   │   │   ├── a0_open.png
│   │   │   ├── a0_return.png
│   │   │   ├── back.png
│   │   │   ├── ok.png
│   │   │   └── revarse.png
│   │   ├── layout
│   │   │   ├── activity_camera.xml
│   │   │   ├── activity_main.xml
│   │   │   ├── activity_preview.xml
│   │   │   ├── activity_test.xml
│   │   │   └── activity_video_preview.xml
│   │   ├── mipmap-anydpi-v26
│   │   │   ├── ic_launcher_round.xml
│   │   │   └── ic_launcher.xml
│   │   ├── mipmap-hdpi
│   │   │   ├── ic_launcher.png
│   │   │   └── ic_launcher_round.png
│   │   ├── mipmap-mdpi
│   │   │   ├── ic_launcher.png
│   │   │   └── ic_launcher_round.png
│   │   ├── mipmap-xhdpi
│   │   │   ├── ic_launcher.png
│   │   │   └── ic_launcher_round.png
│   │   ├── mipmap-xxhdpi
│   │   │   ├── ic_launcher.png
│   │   │   └── ic_launcher_round.png
│   │   ├── mipmap-xxxhdpi
│   │   │   ├── ic_launcher.png
│   │   │   └── ic_launcher_round.png
│   │   └── values
│   │   ├── colors.xml
│   │   ├── strings.xml
│   │   └── styles.xml
│   └── test
│   └── java
│   └── com
│   └── camera
│   └── demo
│   └── ExampleUnitTest.java
├── build.gradle
├── CameraMaster.iml
├── gradle
│   └── wrapper
│   ├── gradle-wrapper.jar
│   └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── local.properties
└── settings.gradle

630 directories, 2370 files

标签:

实例下载地址

CameraMaster.rar

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警