实例介绍
android的一个小游戏2048,写了个简单的例子,源代码下载可以直接在Eclipse中运行。
【实例截图】
【核心代码】
Game2048
└── Game2048pic1
└── Game2048pic
├── app
│ ├── app.iml
│ ├── build
│ │ ├── generated
│ │ │ ├── mockable-android-26.v3.jar
│ │ │ ├── res
│ │ │ │ └── pngs
│ │ │ │ └── debug
│ │ │ │ ├── drawable-anydpi-v21
│ │ │ │ │ └── ic_launcher_background.xml
│ │ │ │ ├── drawable-hdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── drawable-ldpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ └── ic_launcher_background.png
│ │ │ │ └── drawable-xxxhdpi
│ │ │ │ └── ic_launcher_background.png
│ │ │ └── source
│ │ │ ├── buildConfig
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── onwaier
│ │ │ │ │ └── game2048pic
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── onwaier
│ │ │ │ └── game2048pic
│ │ │ │ └── BuildConfig.java
│ │ │ └── r
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ └── test
│ │ │ │ │ ├── espresso
│ │ │ │ │ │ ├── idling
│ │ │ │ │ │ │ └── concurrent
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── rules
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── runner
│ │ │ │ │ └── R.java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── onwaier
│ │ │ │ └── game2048pic
│ │ │ │ └── test
│ │ │ │ └── R.java
│ │ │ └── debug
│ │ │ ├── android
│ │ │ │ ├── arch
│ │ │ │ │ └── lifecycle
│ │ │ │ │ └── R.java
│ │ │ │ └── support
│ │ │ │ ├── compat
│ │ │ │ │ └── R.java
│ │ │ │ ├── constraint
│ │ │ │ │ └── R.java
│ │ │ │ ├── coreui
│ │ │ │ │ └── R.java
│ │ │ │ ├── coreutils
│ │ │ │ │ └── R.java
│ │ │ │ ├── fragment
│ │ │ │ │ └── R.java
│ │ │ │ ├── graphics
│ │ │ │ │ └── drawable
│ │ │ │ │ ├── animated
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── R.java
│ │ │ │ ├── mediacompat
│ │ │ │ │ └── R.java
│ │ │ │ ├── v4
│ │ │ │ │ └── R.java
│ │ │ │ └── v7
│ │ │ │ └── appcompat
│ │ │ │ └── R.java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── onwaier
│ │ │ └── game2048pic
│ │ │ └── R.java
│ │ ├── intermediates
│ │ │ ├── blame
│ │ │ │ └── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── multi-v2
│ │ │ │ │ │ ├── debug.json
│ │ │ │ │ │ ├── values-af.json
│ │ │ │ │ │ ├── values-am.json
│ │ │ │ │ │ ├── values-ar.json
│ │ │ │ │ │ ├── values-az.json
│ │ │ │ │ │ ├── values-be.json
│ │ │ │ │ │ ├── values-bg.json
│ │ │ │ │ │ ├── values-bn.json
│ │ │ │ │ │ ├── values-bs.json
│ │ │ │ │ │ ├── values-b+sr+Latn.json
│ │ │ │ │ │ ├── values-ca.json
│ │ │ │ │ │ ├── values-cs.json
│ │ │ │ │ │ ├── values-da.json
│ │ │ │ │ │ ├── values-de.json
│ │ │ │ │ │ ├── values-el.json
│ │ │ │ │ │ ├── values-en-rAU.json
│ │ │ │ │ │ ├── values-en-rGB.json
│ │ │ │ │ │ ├── values-en-rIN.json
│ │ │ │ │ │ ├── values-es.json
│ │ │ │ │ │ ├── values-es-rUS.json
│ │ │ │ │ │ ├── values-et.json
│ │ │ │ │ │ ├── values-eu.json
│ │ │ │ │ │ ├── values-fa.json
│ │ │ │ │ │ ├── values-fi.json
│ │ │ │ │ │ ├── values-fr.json
│ │ │ │ │ │ ├── values-fr-rCA.json
│ │ │ │ │ │ ├── values-gl.json
│ │ │ │ │ │ ├── values-gu.json
│ │ │ │ │ │ ├── values-h720dp-v13.json
│ │ │ │ │ │ ├── values-hdpi-v4.json
│ │ │ │ │ │ ├── values-hi.json
│ │ │ │ │ │ ├── values-hr.json
│ │ │ │ │ │ ├── values-hu.json
│ │ │ │ │ │ ├── values-hy.json
│ │ │ │ │ │ ├── values-in.json
│ │ │ │ │ │ ├── values-is.json
│ │ │ │ │ │ ├── values-it.json
│ │ │ │ │ │ ├── values-iw.json
│ │ │ │ │ │ ├── values-ja.json
│ │ │ │ │ │ ├── values.json
│ │ │ │ │ │ ├── values-ka.json
│ │ │ │ │ │ ├── values-kk.json
│ │ │ │ │ │ ├── values-km.json
│ │ │ │ │ │ ├── values-kn.json
│ │ │ │ │ │ ├── values-ko.json
│ │ │ │ │ │ ├── values-ky.json
│ │ │ │ │ │ ├── values-land.json
│ │ │ │ │ │ ├── values-large-v4.json
│ │ │ │ │ │ ├── values-ldltr-v21.json
│ │ │ │ │ │ ├── values-lo.json
│ │ │ │ │ │ ├── values-lt.json
│ │ │ │ │ │ ├── values-lv.json
│ │ │ │ │ │ ├── values-mk.json
│ │ │ │ │ │ ├── values-ml.json
│ │ │ │ │ │ ├── values-mn.json
│ │ │ │ │ │ ├── values-mr.json
│ │ │ │ │ │ ├── values-ms.json
│ │ │ │ │ │ ├── values-my.json
│ │ │ │ │ │ ├── values-nb.json
│ │ │ │ │ │ ├── values-ne.json
│ │ │ │ │ │ ├── values-night-v8.json
│ │ │ │ │ │ ├── values-nl.json
│ │ │ │ │ │ ├── values-pa.json
│ │ │ │ │ │ ├── values-pl.json
│ │ │ │ │ │ ├── values-port.json
│ │ │ │ │ │ ├── values-pt.json
│ │ │ │ │ │ ├── values-pt-rBR.json
│ │ │ │ │ │ ├── values-pt-rPT.json
│ │ │ │ │ │ ├── values-ro.json
│ │ │ │ │ │ ├── values-ru.json
│ │ │ │ │ │ ├── values-si.json
│ │ │ │ │ │ ├── values-sk.json
│ │ │ │ │ │ ├── values-sl.json
│ │ │ │ │ │ ├── values-sq.json
│ │ │ │ │ │ ├── values-sr.json
│ │ │ │ │ │ ├── values-sv.json
│ │ │ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ │ │ ├── values-sw.json
│ │ │ │ │ │ ├── values-ta.json
│ │ │ │ │ │ ├── values-te.json
│ │ │ │ │ │ ├── values-th.json
│ │ │ │ │ │ ├── values-tl.json
│ │ │ │ │ │ ├── values-tr.json
│ │ │ │ │ │ ├── values-uk.json
│ │ │ │ │ │ ├── values-ur.json
│ │ │ │ │ │ ├── values-uz.json
│ │ │ │ │ │ ├── values-v11.json
│ │ │ │ │ │ ├── values-v12.json
│ │ │ │ │ │ ├── values-v13.json
│ │ │ │ │ │ ├── values-v14.json
│ │ │ │ │ │ ├── values-v16.json
│ │ │ │ │ │ ├── values-v17.json
│ │ │ │ │ │ ├── values-v18.json
│ │ │ │ │ │ ├── values-v21.json
│ │ │ │ │ │ ├── values-v22.json
│ │ │ │ │ │ ├── values-v23.json
│ │ │ │ │ │ ├── values-v24.json
│ │ │ │ │ │ ├── values-v25.json
│ │ │ │ │ │ ├── values-v26.json
│ │ │ │ │ │ ├── values-vi.json
│ │ │ │ │ │ ├── values-xlarge-v4.json
│ │ │ │ │ │ ├── values-zh-rCN.json
│ │ │ │ │ │ ├── values-zh-rHK.json
│ │ │ │ │ │ ├── values-zh-rTW.json
│ │ │ │ │ │ └── values-zu.json
│ │ │ │ │ └── single
│ │ │ │ │ └── debug.json
│ │ │ │ └── debug
│ │ │ │ ├── multi-v2
│ │ │ │ │ ├── debug.json
│ │ │ │ │ ├── values-af.json
│ │ │ │ │ ├── values-am.json
│ │ │ │ │ ├── values-ar.json
│ │ │ │ │ ├── values-az.json
│ │ │ │ │ ├── values-be.json
│ │ │ │ │ ├── values-bg.json
│ │ │ │ │ ├── values-bn.json
│ │ │ │ │ ├── values-bs.json
│ │ │ │ │ ├── values-b+sr+Latn.json
│ │ │ │ │ ├── values-ca.json
│ │ │ │ │ ├── values-cs.json
│ │ │ │ │ ├── values-da.json
│ │ │ │ │ ├── values-de.json
│ │ │ │ │ ├── values-el.json
│ │ │ │ │ ├── values-en-rAU.json
│ │ │ │ │ ├── values-en-rGB.json
│ │ │ │ │ ├── values-en-rIN.json
│ │ │ │ │ ├── values-es.json
│ │ │ │ │ ├── values-es-rUS.json
│ │ │ │ │ ├── values-et.json
│ │ │ │ │ ├── values-eu.json
│ │ │ │ │ ├── values-fa.json
│ │ │ │ │ ├── values-fi.json
│ │ │ │ │ ├── values-fr.json
│ │ │ │ │ ├── values-fr-rCA.json
│ │ │ │ │ ├── values-gl.json
│ │ │ │ │ ├── values-gu.json
│ │ │ │ │ ├── values-h720dp-v13.json
│ │ │ │ │ ├── values-hdpi-v4.json
│ │ │ │ │ ├── values-hi.json
│ │ │ │ │ ├── values-hr.json
│ │ │ │ │ ├── values-hu.json
│ │ │ │ │ ├── values-hy.json
│ │ │ │ │ ├── values-in.json
│ │ │ │ │ ├── values-is.json
│ │ │ │ │ ├── values-it.json
│ │ │ │ │ ├── values-iw.json
│ │ │ │ │ ├── values-ja.json
│ │ │ │ │ ├── values.json
│ │ │ │ │ ├── values-ka.json
│ │ │ │ │ ├── values-kk.json
│ │ │ │ │ ├── values-km.json
│ │ │ │ │ ├── values-kn.json
│ │ │ │ │ ├── values-ko.json
│ │ │ │ │ ├── values-ky.json
│ │ │ │ │ ├── values-land.json
│ │ │ │ │ ├── values-large-v4.json
│ │ │ │ │ ├── values-ldltr-v21.json
│ │ │ │ │ ├── values-lo.json
│ │ │ │ │ ├── values-lt.json
│ │ │ │ │ ├── values-lv.json
│ │ │ │ │ ├── values-mk.json
│ │ │ │ │ ├── values-ml.json
│ │ │ │ │ ├── values-mn.json
│ │ │ │ │ ├── values-mr.json
│ │ │ │ │ ├── values-ms.json
│ │ │ │ │ ├── values-my.json
│ │ │ │ │ ├── values-nb.json
│ │ │ │ │ ├── values-ne.json
│ │ │ │ │ ├── values-night-v8.json
│ │ │ │ │ ├── values-nl.json
│ │ │ │ │ ├── values-pa.json
│ │ │ │ │ ├── values-pl.json
│ │ │ │ │ ├── values-port.json
│ │ │ │ │ ├── values-pt.json
│ │ │ │ │ ├── values-pt-rBR.json
│ │ │ │ │ ├── values-pt-rPT.json
│ │ │ │ │ ├── values-ro.json
│ │ │ │ │ ├── values-ru.json
│ │ │ │ │ ├── values-si.json
│ │ │ │ │ ├── values-sk.json
│ │ │ │ │ ├── values-sl.json
│ │ │ │ │ ├── values-sq.json
│ │ │ │ │ ├── values-sr.json
│ │ │ │ │ ├── values-sv.json
│ │ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ │ ├── values-sw.json
│ │ │ │ │ ├── values-ta.json
│ │ │ │ │ ├── values-te.json
│ │ │ │ │ ├── values-th.json
│ │ │ │ │ ├── values-tl.json
│ │ │ │ │ ├── values-tr.json
│ │ │ │ │ ├── values-uk.json
│ │ │ │ │ ├── values-ur.json
│ │ │ │ │ ├── values-uz.json
│ │ │ │ │ ├── values-v11.json
│ │ │ │ │ ├── values-v12.json
│ │ │ │ │ ├── values-v13.json
│ │ │ │ │ ├── values-v14.json
│ │ │ │ │ ├── values-v16.json
│ │ │ │ │ ├── values-v17.json
│ │ │ │ │ ├── values-v18.json
│ │ │ │ │ ├── values-v21.json
│ │ │ │ │ ├── values-v22.json
│ │ │ │ │ ├── values-v23.json
│ │ │ │ │ ├── values-v24.json
│ │ │ │ │ ├── values-v25.json
│ │ │ │ │ ├── values-v26.json
│ │ │ │ │ ├── values-vi.json
│ │ │ │ │ ├── values-xlarge-v4.json
│ │ │ │ │ ├── values-zh-rCN.json
│ │ │ │ │ ├── values-zh-rHK.json
│ │ │ │ │ ├── values-zh-rTW.json
│ │ │ │ │ └── values-zu.json
│ │ │ │ └── single
│ │ │ │ └── debug.json
│ │ │ ├── build-info
│ │ │ │ └── debug
│ │ │ │ └── build-info.xml
│ │ │ ├── classes
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── test
│ │ │ │ │ │ ├── espresso
│ │ │ │ │ │ │ ├── idling
│ │ │ │ │ │ │ │ └── concurrent
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── rules
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── runner
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── onwaier
│ │ │ │ │ └── game2048pic
│ │ │ │ │ ├── ExampleInstrumentedTest.class
│ │ │ │ │ └── test
│ │ │ │ │ ├── BuildConfig.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$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── debug
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── arch
│ │ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── constraint
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── coreui
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── drawable
│ │ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ └── appcompat
│ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── onwaier
│ │ │ │ │ └── game2048pic
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── CardView.class
│ │ │ │ │ ├── ChooseActivity$ButtonListener.class
│ │ │ │ │ ├── ChooseActivity.class
│ │ │ │ │ ├── CreateUserDialog$1.class
│ │ │ │ │ ├── CreateUserDialog.class
│ │ │ │ │ ├── GameView$1.class
│ │ │ │ │ ├── GameView$2.class
│ │ │ │ │ ├── GameView$3.class
│ │ │ │ │ ├── GameView$4.class
│ │ │ │ │ ├── GameView$5.class
│ │ │ │ │ ├── GameView.class
│ │ │ │ │ ├── MainActivity$1.class
│ │ │ │ │ ├── MainActivity$2$1.class
│ │ │ │ │ ├── MainActivity$2$2.class
│ │ │ │ │ ├── MainActivity$2.class
│ │ │ │ │ ├── MainActivity$3.class
│ │ │ │ │ ├── MainActivity$4.class
│ │ │ │ │ ├── MainActivity$5.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── MyDBHelper.class
│ │ │ │ │ ├── MyPlayer.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$raw.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── WelcomeActivity$1.class
│ │ │ │ │ ├── WelcomeActivity$MyCountdownTimer.class
│ │ │ │ │ └── WelcomeActivity.class
│ │ │ │ └── test
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── onwaier
│ │ │ │ └── game2048pic
│ │ │ │ └── ExampleUnitTest.class
│ │ │ ├── classes-jar
│ │ │ │ └── debug
│ │ │ │ └── classes.jar
│ │ │ ├── incremental
│ │ │ │ ├── compileDebugAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── debug-mergeJavaRes
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── _5G6_CtM9k8crXkSovhB0B_xG_w=
│ │ │ │ │ ├── 6WDoqD40YUQo5aeyiRX95gjHt9s=
│ │ │ │ │ ├── _E_4tyLr9CWeRjzgFtMafjJ8vmk=
│ │ │ │ │ ├── f4G5a6Y0mjfXc1Jec4UMjlrHZdg=
│ │ │ │ │ ├── HNdUFJXUb5OMACEqWUcwIL77N6c=
│ │ │ │ │ ├── iwOSj2CaXo2vgszFwl+Rs4FrXeU=
│ │ │ │ │ ├── mGBdU9Ps1C08QOsFBxMCxaGIgHg=
│ │ │ │ │ ├── P0Xu0aTtaOUskD2jK3muwR2boc4=
│ │ │ │ │ ├── qBVwk6qpLsfVb8clT5TbfBOi_z0=
│ │ │ │ │ ├── sWHlZ72C_kY6ghj0adQ0Oa9lGI4=
│ │ │ │ │ ├── uR5ZGgjKQiy7GwDm+8Ch7YgEyOA=
│ │ │ │ │ ├── ux7YftulXwwPwdwKl944LSJvnG8=
│ │ │ │ │ ├── Xo2j4s80kM2gclQ5iTq67ZyDNJs=
│ │ │ │ │ ├── XqX65gh1DiEAgWgbYYizBS6KJKk=
│ │ │ │ │ └── Y3LtF9GUDeQisoXjZrhOXFt5O48=
│ │ │ │ ├── debug-mergeJniLibs
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── _5G6_CtM9k8crXkSovhB0B_xG_w=
│ │ │ │ │ ├── 6WDoqD40YUQo5aeyiRX95gjHt9s=
│ │ │ │ │ ├── _E_4tyLr9CWeRjzgFtMafjJ8vmk=
│ │ │ │ │ ├── f4G5a6Y0mjfXc1Jec4UMjlrHZdg=
│ │ │ │ │ ├── HNdUFJXUb5OMACEqWUcwIL77N6c=
│ │ │ │ │ ├── iwOSj2CaXo2vgszFwl+Rs4FrXeU=
│ │ │ │ │ ├── mGBdU9Ps1C08QOsFBxMCxaGIgHg=
│ │ │ │ │ ├── P0Xu0aTtaOUskD2jK3muwR2boc4=
│ │ │ │ │ ├── qBVwk6qpLsfVb8clT5TbfBOi_z0=
│ │ │ │ │ ├── sWHlZ72C_kY6ghj0adQ0Oa9lGI4=
│ │ │ │ │ ├── uR5ZGgjKQiy7GwDm+8Ch7YgEyOA=
│ │ │ │ │ ├── ux7YftulXwwPwdwKl944LSJvnG8=
│ │ │ │ │ ├── Xo2j4s80kM2gclQ5iTq67ZyDNJs=
│ │ │ │ │ ├── XqX65gh1DiEAgWgbYYizBS6KJKk=
│ │ │ │ │ └── Y3LtF9GUDeQisoXjZrhOXFt5O48=
│ │ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.xml
│ │ │ │ │ │ ├── values-ca
│ │ │ │ │ │ │ └── values-ca.xml
│ │ │ │ │ │ ├── values-cs
│ │ │ │ │ │ │ └── values-cs.xml
│ │ │ │ │ │ ├── values-da
│ │ │ │ │ │ │ └── values-da.xml
│ │ │ │ │ │ ├── values-de
│ │ │ │ │ │ │ └── values-de.xml
│ │ │ │ │ │ ├── values-el
│ │ │ │ │ │ │ └── values-el.xml
│ │ │ │ │ │ ├── values-en-rAU
│ │ │ │ │ │ │ └── values-en-rAU.xml
│ │ │ │ │ │ ├── values-en-rGB
│ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.xml
│ │ │ │ │ │ ├── values-gl
│ │ │ │ │ │ │ └── values-gl.xml
│ │ │ │ │ │ ├── values-gu
│ │ │ │ │ │ │ └── values-gu.xml
│ │ │ │ │ │ ├── values-h720dp-v13
│ │ │ │ │ │ │ └── values-h720dp-v13.xml
│ │ │ │ │ │ ├── values-hdpi-v4
│ │ │ │ │ │ │ └── values-hdpi-v4.xml
│ │ │ │ │ │ ├── values-hi
│ │ │ │ │ │ │ └── values-hi.xml
│ │ │ │ │ │ ├── values-hr
│ │ │ │ │ │ │ └── values-hr.xml
│ │ │ │ │ │ ├── values-hu
│ │ │ │ │ │ │ └── values-hu.xml
│ │ │ │ │ │ ├── values-hy
│ │ │ │ │ │ │ └── values-hy.xml
│ │ │ │ │ │ ├── values-in
│ │ │ │ │ │ │ └── values-in.xml
│ │ │ │ │ │ ├── values-is
│ │ │ │ │ │ │ └── values-is.xml
│ │ │ │ │ │ ├── values-it
│ │ │ │ │ │ │ └── values-it.xml
│ │ │ │ │ │ ├── values-iw
│ │ │ │ │ │ │ └── values-iw.xml
│ │ │ │ │ │ ├── values-ja
│ │ │ │ │ │ │ └── values-ja.xml
│ │ │ │ │ │ ├── values-ka
│ │ │ │ │ │ │ └── values-ka.xml
│ │ │ │ │ │ ├── values-kk
│ │ │ │ │ │ │ └── values-kk.xml
│ │ │ │ │ │ ├── values-km
│ │ │ │ │ │ │ └── values-km.xml
│ │ │ │ │ │ ├── values-kn
│ │ │ │ │ │ │ └── values-kn.xml
│ │ │ │ │ │ ├── values-ko
│ │ │ │ │ │ │ └── values-ko.xml
│ │ │ │ │ │ ├── values-ky
│ │ │ │ │ │ │ └── values-ky.xml
│ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ ├── values-large-v4
│ │ │ │ │ │ │ └── values-large-v4.xml
│ │ │ │ │ │ ├── values-ldltr-v21
│ │ │ │ │ │ │ └── values-ldltr-v21.xml
│ │ │ │ │ │ ├── values-lo
│ │ │ │ │ │ │ └── values-lo.xml
│ │ │ │ │ │ ├── values-lt
│ │ │ │ │ │ │ └── values-lt.xml
│ │ │ │ │ │ ├── values-lv
│ │ │ │ │ │ │ └── values-lv.xml
│ │ │ │ │ │ ├── values-mk
│ │ │ │ │ │ │ └── values-mk.xml
│ │ │ │ │ │ ├── values-ml
│ │ │ │ │ │ │ └── values-ml.xml
│ │ │ │ │ │ ├── values-mn
│ │ │ │ │ │ │ └── values-mn.xml
│ │ │ │ │ │ ├── values-mr
│ │ │ │ │ │ │ └── values-mr.xml
│ │ │ │ │ │ ├── values-ms
│ │ │ │ │ │ │ └── values-ms.xml
│ │ │ │ │ │ ├── values-my
│ │ │ │ │ │ │ └── values-my.xml
│ │ │ │ │ │ ├── values-nb
│ │ │ │ │ │ │ └── values-nb.xml
│ │ │ │ │ │ ├── values-ne
│ │ │ │ │ │ │ └── values-ne.xml
│ │ │ │ │ │ ├── values-night-v8
│ │ │ │ │ │ │ └── values-night-v8.xml
│ │ │ │ │ │ ├── values-nl
│ │ │ │ │ │ │ └── values-nl.xml
│ │ │ │ │ │ ├── values-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.xml
│ │ │ │ │ │ ├── values-ro
│ │ │ │ │ │ │ └── values-ro.xml
│ │ │ │ │ │ ├── values-ru
│ │ │ │ │ │ │ └── values-ru.xml
│ │ │ │ │ │ ├── values-si
│ │ │ │ │ │ │ └── values-si.xml
│ │ │ │ │ │ ├── values-sk
│ │ │ │ │ │ │ └── values-sk.xml
│ │ │ │ │ │ ├── values-sl
│ │ │ │ │ │ │ └── values-sl.xml
│ │ │ │ │ │ ├── values-sq
│ │ │ │ │ │ │ └── values-sq.xml
│ │ │ │ │ │ ├── values-sr
│ │ │ │ │ │ │ └── values-sr.xml
│ │ │ │ │ │ ├── values-sv
│ │ │ │ │ │ │ └── values-sv.xml
│ │ │ │ │ │ ├── values-sw
│ │ │ │ │ │ │ └── values-sw.xml
│ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ ├── values-ta
│ │ │ │ │ │ │ └── values-ta.xml
│ │ │ │ │ │ ├── values-te
│ │ │ │ │ │ │ └── values-te.xml
│ │ │ │ │ │ ├── values-th
│ │ │ │ │ │ │ └── values-th.xml
│ │ │ │ │ │ ├── values-tl
│ │ │ │ │ │ │ └── values-tl.xml
│ │ │ │ │ │ ├── values-tr
│ │ │ │ │ │ │ └── values-tr.xml
│ │ │ │ │ │ ├── values-uk
│ │ │ │ │ │ │ └── values-uk.xml
│ │ │ │ │ │ ├── values-ur
│ │ │ │ │ │ │ └── values-ur.xml
│ │ │ │ │ │ ├── values-uz
│ │ │ │ │ │ │ └── values-uz.xml
│ │ │ │ │ │ ├── values-v11
│ │ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ │ ├── values-v12
│ │ │ │ │ │ │ └── values-v12.xml
│ │ │ │ │ │ ├── values-v13
│ │ │ │ │ │ │ └── values-v13.xml
│ │ │ │ │ │ ├── values-v14
│ │ │ │ │ │ │ └── values-v14.xml
│ │ │ │ │ │ ├── values-v16
│ │ │ │ │ │ │ └── values-v16.xml
│ │ │ │ │ │ ├── values-v17
│ │ │ │ │ │ │ └── values-v17.xml
│ │ │ │ │ │ ├── values-v18
│ │ │ │ │ │ │ └── values-v18.xml
│ │ │ │ │ │ ├── values-v21
│ │ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ │ ├── values-v22
│ │ │ │ │ │ │ └── values-v22.xml
│ │ │ │ │ │ ├── values-v23
│ │ │ │ │ │ │ └── values-v23.xml
│ │ │ │ │ │ ├── values-v24
│ │ │ │ │ │ │ └── values-v24.xml
│ │ │ │ │ │ ├── values-v25
│ │ │ │ │ │ │ └── values-v25.xml
│ │ │ │ │ │ ├── values-v26
│ │ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ │ ├── values-vi
│ │ │ │ │ │ │ └── values-vi.xml
│ │ │ │ │ │ ├── values-xlarge-v4
│ │ │ │ │ │ │ └── values-xlarge-v4.xml
│ │ │ │ │ │ ├── values-zh-rCN
│ │ │ │ │ │ │ └── values-zh-rCN.xml
│ │ │ │ │ │ ├── values-zh-rHK
│ │ │ │ │ │ │ └── values-zh-rHK.xml
│ │ │ │ │ │ ├── values-zh-rTW
│ │ │ │ │ │ │ └── values-zh-rTW.xml
│ │ │ │ │ │ └── values-zu
│ │ │ │ │ │ └── values-zu.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── packageDebug
│ │ │ │ │ └── debug
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ ├── file-input-save-data.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ └── jhfWD+XnQSYyPkk2apbzDXKExeE=
│ │ │ │ └── packageInstantRunResourcesDebug
│ │ │ │ └── debug
│ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ ├── file-input-save-data.txt
│ │ │ │ └── zip-cache
│ │ │ │ └── jhfWD+XnQSYyPkk2apbzDXKExeE=
│ │ │ ├── incremental-classes
│ │ │ │ └── debug
│ │ │ │ └── instant-run-bootstrap.jar
│ │ │ ├── incremental-runtime-classes
│ │ │ │ └── debug
│ │ │ │ └── instant-run.jar
│ │ │ ├── incremental-verifier
│ │ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ │ ├── arch
│ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreui
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── coreutils
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── fragment
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── v4
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── v7
│ │ │ │ │ └── appcompat
│ │ │ │ │ ├── R$anim.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$bool.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$integer.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── onwaier
│ │ │ │ └── game2048pic
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── CardView.class
│ │ │ │ ├── ChooseActivity$ButtonListener.class
│ │ │ │ ├── ChooseActivity.class
│ │ │ │ ├── CreateUserDialog$1.class
│ │ │ │ ├── CreateUserDialog.class
│ │ │ │ ├── GameView$1.class
│ │ │ │ ├── GameView$2.class
│ │ │ │ ├── GameView$3.class
│ │ │ │ ├── GameView$4.class
│ │ │ │ ├── GameView$5.class
│ │ │ │ ├── GameView.class
│ │ │ │ ├── MainActivity$1.class
│ │ │ │ ├── MainActivity$2$1.class
│ │ │ │ ├── MainActivity$2$2.class
│ │ │ │ ├── MainActivity$2.class
│ │ │ │ ├── MainActivity$3.class
│ │ │ │ ├── MainActivity$4.class
│ │ │ │ ├── MainActivity$5.class
│ │ │ │ ├── MainActivity.class
│ │ │ │ ├── MyDBHelper.class
│ │ │ │ ├── MyPlayer.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$raw.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R.class
│ │ │ │ ├── WelcomeActivity$1.class
│ │ │ │ ├── WelcomeActivity$MyCountdownTimer.class
│ │ │ │ └── WelcomeActivity.class
│ │ │ ├── instant-run-resources
│ │ │ │ ├── output.json
│ │ │ │ └── resources-debug.ir.ap_
│ │ │ ├── instant-run-support
│ │ │ │ └── debug
│ │ │ │ ├── dependencies
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── manifestChecker
│ │ │ │ │ ├── manifest.crc
│ │ │ │ │ └── manifest.xml
│ │ │ │ ├── package_dependencies
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── 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
│ │ │ ├── javaPrecompile
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── annotationProcessors.json
│ │ │ │ ├── debug
│ │ │ │ │ └── annotationProcessors.json
│ │ │ │ └── test
│ │ │ │ └── debug
│ │ │ │ └── annotationProcessors.json
│ │ │ ├── manifest
│ │ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ └── output.json
│ │ │ ├── manifests
│ │ │ │ ├── density
│ │ │ │ │ └── debug
│ │ │ │ │ └── output.json
│ │ │ │ ├── full
│ │ │ │ │ └── debug
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ └── output.json
│ │ │ │ └── instant-run
│ │ │ │ └── debug
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ └── output.json
│ │ │ ├── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-debugAndroidTest.ap_
│ │ │ │ ├── debug
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-debug.ap_
│ │ │ │ ├── merged
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── 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_tooltip_enter.xml.flat
│ │ │ │ │ │ ├── anim_tooltip_exit.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-v11_abc_background_cache_hint_selector_material_dark.xml.flat
│ │ │ │ │ │ ├── color-v11_abc_background_cache_hint_selector_material_light.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_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-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-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-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_edit_text_material.xml.flat
│ │ │ │ │ │ ├── drawable-v21_notification_action_background.xml.flat
│ │ │ │ │ │ ├── drawable-v23_abc_control_background_material.xml.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-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-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_bar_view_list_nav_layout.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_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_notification_action_tombstone.xml.flat
│ │ │ │ │ │ ├── layout_notification_action.xml.flat
│ │ │ │ │ │ ├── layout_notification_media_action.xml.flat
│ │ │ │ │ │ ├── layout_notification_media_cancel_action.xml.flat
│ │ │ │ │ │ ├── layout_notification_template_big_media_custom.xml.flat
│ │ │ │ │ │ ├── layout_notification_template_big_media_narrow_custom.xml.flat
│ │ │ │ │ │ ├── layout_notification_template_big_media_narrow.xml.flat
│ │ │ │ │ │ ├── layout_notification_template_big_media.xml.flat
│ │ │ │ │ │ ├── layout_notification_template_custom_big.xml.flat
│ │ │ │ │ │ ├── layout_notification_template_icon_group.xml.flat
│ │ │ │ │ │ ├── layout_notification_template_lines_media.xml.flat
│ │ │ │ │ │ ├── layout_notification_template_media_custom.xml.flat
│ │ │ │ │ │ ├── layout_notification_template_media.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_tooltip.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
│ │ │ │ │ │ ├── values-af_values-af.arsc.flat
│ │ │ │ │ │ ├── values-am_values-am.arsc.flat
│ │ │ │ │ │ ├── values-ar_values-ar.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-rGB_values-en-rGB.arsc.flat
│ │ │ │ │ │ ├── values-en-rIN_values-en-rIN.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-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-v11_values-v11.arsc.flat
│ │ │ │ │ │ ├── values-v12_values-v12.arsc.flat
│ │ │ │ │ │ ├── values-v13_values-v13.arsc.flat
│ │ │ │ │ │ ├── values-v14_values-v14.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_values.arsc.flat
│ │ │ │ │ │ ├── values-vi_values-vi.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
│ │ │ │ │ └── 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_tooltip_enter.xml.flat
│ │ │ │ │ ├── anim_tooltip_exit.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-v11_abc_background_cache_hint_selector_material_dark.xml.flat
│ │ │ │ │ ├── color-v11_abc_background_cache_hint_selector_material_light.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_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_launcher_background.xml.flat
│ │ │ │ │ ├── drawable_background.jpg.flat
│ │ │ │ │ ├── drawable_beauty.jpg.flat
│ │ │ │ │ ├── drawable_bleach0.jpg.flat
│ │ │ │ │ ├── drawable_bleach1024.png.flat
│ │ │ │ │ ├── drawable_bleach128.jpg.flat
│ │ │ │ │ ├── drawable_bleach16.jpg.flat
│ │ │ │ │ ├── drawable_bleach2048.jpg.flat
│ │ │ │ │ ├── drawable_bleach_2048.png.flat
│ │ │ │ │ ├── drawable_bleach256.jpg.flat
│ │ │ │ │ ├── drawable_bleach2.jpg.flat
│ │ │ │ │ ├── drawable_bleach32.jpeg.flat
│ │ │ │ │ ├── drawable_bleach4.jpg.flat
│ │ │ │ │ ├── drawable_bleach512.jpeg.flat
│ │ │ │ │ ├── drawable_bleach64.jpg.flat
│ │ │ │ │ ├── drawable_bleach8.jpg.flat
│ │ │ │ │ ├── drawable-hdpi_ic_launcher_background.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_launcher_background.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_launcher_background.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_moon1024.jpg.flat
│ │ │ │ │ ├── drawable_moon128.jpg.flat
│ │ │ │ │ ├── drawable_moon16.jpg.flat
│ │ │ │ │ ├── drawable_moon2048.jpg.flat
│ │ │ │ │ ├── drawable_moon_2048.png.flat
│ │ │ │ │ ├── drawable_moon256.jpg.flat
│ │ │ │ │ ├── drawable_moon2.jpg.flat
│ │ │ │ │ ├── drawable_moon32.jpg.flat
│ │ │ │ │ ├── drawable_moon4.jpg.flat
│ │ │ │ │ ├── drawable_moon512.jpg.flat
│ │ │ │ │ ├── drawable_moon64.jpg.flat
│ │ │ │ │ ├── drawable_moon8.jpg.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_num0.jpg.flat
│ │ │ │ │ ├── drawable_num1024.jpg.flat
│ │ │ │ │ ├── drawable_num128.jpg.flat
│ │ │ │ │ ├── drawable_num16.jpg.flat
│ │ │ │ │ ├── drawable_num2048.jpg.flat
│ │ │ │ │ ├── drawable_num2048_model4.png.flat
│ │ │ │ │ ├── drawable_num2048_model5.png.flat
│ │ │ │ │ ├── drawable_num2048_model6.png.flat
│ │ │ │ │ ├── drawable_num256.jpg.flat
│ │ │ │ │ ├── drawable_num2.jpg.flat
│ │ │ │ │ ├── drawable_num32.jpg.flat
│ │ │ │ │ ├── drawable_num4.jpg.flat
│ │ │ │ │ ├── drawable_num512.jpg.flat
│ │ │ │ │ ├── drawable_num64.jpg.flat
│ │ │ │ │ ├── drawable_num8.jpg.flat
│ │ │ │ │ ├── drawable_pause.png.flat
│ │ │ │ │ ├── drawable_restart.jpg.flat
│ │ │ │ │ ├── drawable_start.png.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_edit_text_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_welcome1.jpeg.flat
│ │ │ │ │ ├── drawable_welcome.jpg.flat
│ │ │ │ │ ├── drawable-xhdpi_ic_launcher_background.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_ic_launcher_background.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_launcher_background.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_bar_view_list_nav_layout.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_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_activity_choose.xml.flat
│ │ │ │ │ ├── layout_activity_main.xml.flat
│ │ │ │ │ ├── layout_activity_welcome.xml.flat
│ │ │ │ │ ├── layout_create_user_dialog.xml.flat
│ │ │ │ │ ├── layout_notification_action_tombstone.xml.flat
│ │ │ │ │ ├── layout_notification_action.xml.flat
│ │ │ │ │ ├── layout_notification_media_action.xml.flat
│ │ │ │ │ ├── layout_notification_media_cancel_action.xml.flat
│ │ │ │ │ ├── layout_notification_template_big_media_custom.xml.flat
│ │ │ │ │ ├── layout_notification_template_big_media_narrow_custom.xml.flat
│ │ │ │ │ ├── layout_notification_template_big_media_narrow.xml.flat
│ │ │ │ │ ├── layout_notification_template_big_media.xml.flat
│ │ │ │ │ ├── layout_notification_template_custom_big.xml.flat
│ │ │ │ │ ├── layout_notification_template_icon_group.xml.flat
│ │ │ │ │ ├── layout_notification_template_lines_media.xml.flat
│ │ │ │ │ ├── layout_notification_template_media_custom.xml.flat
│ │ │ │ │ ├── layout_notification_template_media.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_simple_list_item_layout.xml.flat
│ │ │ │ │ ├── layout_support_simple_spinner_dropdown_item.xml.flat
│ │ │ │ │ ├── layout_tooltip.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
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_2048_launcher_round.xml.flat
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_2048_launcher.xml.flat
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher.xml.flat
│ │ │ │ │ ├── mipmap-hdpi_game_icon.jpg.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_2048_launcher.png.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_2048_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_launcher_foreground.png.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-mdpi_game_icon.jpg.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_2048_launcher.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_2048_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_launcher_foreground.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_game_icon.jpg.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_2048_launcher.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_2048_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_launcher_foreground.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_game_icon.jpg.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_2048_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_2048_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_foreground.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_game_icon.jpg.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_2048_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_2048_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_foreground.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── raw_bleach.mp3.flat
│ │ │ │ │ ├── raw_del.wav.flat
│ │ │ │ │ ├── raw_moon.mp3.flat
│ │ │ │ │ ├── raw_move.mp3.flat
│ │ │ │ │ ├── raw_num.mp3.flat
│ │ │ │ │ ├── raw_test.mp3.flat
│ │ │ │ │ ├── values-af_values-af.arsc.flat
│ │ │ │ │ ├── values-am_values-am.arsc.flat
│ │ │ │ │ ├── values-ar_values-ar.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-rGB_values-en-rGB.arsc.flat
│ │ │ │ │ ├── values-en-rIN_values-en-rIN.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-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-v11_values-v11.arsc.flat
│ │ │ │ │ ├── values-v12_values-v12.arsc.flat
│ │ │ │ │ ├── values-v13_values-v13.arsc.flat
│ │ │ │ │ ├── values-v14_values-v14.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_values.arsc.flat
│ │ │ │ │ ├── values-vi_values-vi.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
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── package-aware-r.txt
│ │ │ │ └── debug
│ │ │ │ └── package-aware-r.txt
│ │ │ ├── split-apk
│ │ │ │ └── debug
│ │ │ │ ├── dep
│ │ │ │ │ └── dependencies.apk
│ │ │ │ └── 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
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── split-list.gson
│ │ │ │ └── debug
│ │ │ │ └── split-list.gson
│ │ │ ├── symbols
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── R.txt
│ │ │ │ └── debug
│ │ │ │ └── R.txt
│ │ │ └── transforms
│ │ │ ├── dexBuilder
│ │ │ │ └── debug
│ │ │ │ ├── 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
│ │ │ │ ├── 179
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── arch
│ │ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── constraint
│ │ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ │ └── R.dex
│ │ │ │ │ │ ├── coreui
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── drawable
│ │ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ └── 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
│ │ │ │ │ └── example
│ │ │ │ │ └── onwaier
│ │ │ │ │ └── game2048pic
│ │ │ │ │ ├── BuildConfig.dex
│ │ │ │ │ ├── CardView.dex
│ │ │ │ │ ├── ChooseActivity$ButtonListener.dex
│ │ │ │ │ ├── ChooseActivity.dex
│ │ │ │ │ ├── CreateUserDialog$1.dex
│ │ │ │ │ ├── CreateUserDialog.dex
│ │ │ │ │ ├── GameView$1.dex
│ │ │ │ │ ├── GameView$2.dex
│ │ │ │ │ ├── GameView$3.dex
│ │ │ │ │ ├── GameView$4.dex
│ │ │ │ │ ├── GameView$5.dex
│ │ │ │ │ ├── GameView.dex
│ │ │ │ │ ├── MainActivity$1.dex
│ │ │ │ │ ├── MainActivity$2$1.dex
│ │ │ │ │ ├── MainActivity$2$2.dex
│ │ │ │ │ ├── MainActivity$2.dex
│ │ │ │ │ ├── MainActivity$3.dex
│ │ │ │ │ ├── MainActivity$4.dex
│ │ │ │ │ ├── MainActivity$5.dex
│ │ │ │ │ ├── MainActivity.dex
│ │ │ │ │ ├── MyDBHelper.dex
│ │ │ │ │ ├── MyPlayer.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$raw.dex
│ │ │ │ │ ├── R$string.dex
│ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ ├── R$style.dex
│ │ │ │ │ ├── R.dex
│ │ │ │ │ ├── WelcomeActivity$1.dex
│ │ │ │ │ ├── WelcomeActivity$MyCountdownTimer.dex
│ │ │ │ │ └── WelcomeActivity.dex
│ │ │ │ └── __content__.json
│ │ │ ├── dexMerger
│ │ │ │ └── debug
│ │ │ │ ├── 63
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── externalLibsDexMerger
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── extractJars
│ │ │ │ └── debug
│ │ │ │ └── __content__.json
│ │ │ ├── instantRun
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── arch
│ │ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── constraint
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── coreui
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── drawable
│ │ │ │ │ │ │ ├── animated
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ └── appcompat
│ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── onwaier
│ │ │ │ │ └── game2048pic
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── CardView.class
│ │ │ │ │ ├── ChooseActivity$ButtonListener.class
│ │ │ │ │ ├── ChooseActivity.class
│ │ │ │ │ ├── CreateUserDialog$1.class
│ │ │ │ │ ├── CreateUserDialog.class
│ │ │ │ │ ├── GameView$1.class
│ │ │ │ │ ├── GameView$2.class
│ │ │ │ │ ├── GameView$3.class
│ │ │ │ │ ├── GameView$4.class
│ │ │ │ │ ├── GameView$5.class
│ │ │ │ │ ├── GameView.class
│ │ │ │ │ ├── MainActivity$1.class
│ │ │ │ │ ├── MainActivity$2$1.class
│ │ │ │ │ ├── MainActivity$2$2.class
│ │ │ │ │ ├── MainActivity$2.class
│ │ │ │ │ ├── MainActivity$3.class
│ │ │ │ │ ├── MainActivity$4.class
│ │ │ │ │ ├── MainActivity$5.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── MyDBHelper.class
│ │ │ │ │ ├── MyPlayer.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$raw.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── WelcomeActivity$1.class
│ │ │ │ │ ├── WelcomeActivity$MyCountdownTimer.class
│ │ │ │ │ └── WelcomeActivity.class
│ │ │ │ └── __content__.json
│ │ │ ├── instantRunDependenciesApk
│ │ │ │ └── debug
│ │ │ │ └── __content__.json
│ │ │ ├── instantRunSlicer
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── fragment
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── mediacompat
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_0.class
│ │ │ │ ├── 1
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── arch
│ │ │ │ │ │ └── lifecycle
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_1.class
│ │ │ │ ├── 2
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── coreutils
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ └── appcompat
│ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_2.class
│ │ │ │ ├── 3
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_3.class
│ │ │ │ ├── 4
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_4.class
│ │ │ │ ├── 5
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_5.class
│ │ │ │ ├── 6
│ │ │ │ │ └── com
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── tools
│ │ │ │ │ │ └── ir
│ │ │ │ │ │ └── dummy
│ │ │ │ │ │ └── slice_6.class
│ │ │ │ │ └── example
│ │ │ │ │ └── onwaier
│ │ │ │ │ └── game2048pic
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── CardView.class
│ │ │ │ │ ├── ChooseActivity$ButtonListener.class
│ │ │ │ │ ├── ChooseActivity.class
│ │ │ │ │ ├── CreateUserDialog$1.class
│ │ │ │ │ ├── CreateUserDialog.class
│ │ │ │ │ ├── GameView$1.class
│ │ │ │ │ ├── GameView$2.class
│ │ │ │ │ ├── GameView$3.class
│ │ │ │ │ ├── GameView$4.class
│ │ │ │ │ ├── GameView$5.class
│ │ │ │ │ ├── GameView.class
│ │ │ │ │ ├── MainActivity$1.class
│ │ │ │ │ ├── MainActivity$2$1.class
│ │ │ │ │ ├── MainActivity$2$2.class
│ │ │ │ │ ├── MainActivity$2.class
│ │ │ │ │ ├── MainActivity$3.class
│ │ │ │ │ ├── MainActivity$4.class
│ │ │ │ │ ├── MainActivity$5.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── MyDBHelper.class
│ │ │ │ │ ├── MyPlayer.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$raw.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ ├── R.class
│ │ │ │ │ ├── WelcomeActivity$1.class
│ │ │ │ │ ├── WelcomeActivity$MyCountdownTimer.class
│ │ │ │ │ └── WelcomeActivity.class
│ │ │ │ ├── 7
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── coreui
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_7.class
│ │ │ │ ├── 8
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── graphics
│ │ │ │ │ │ └── drawable
│ │ │ │ │ │ └── animated
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_8.class
│ │ │ │ ├── 9
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_9.class
│ │ │ │ └── __content__.json
│ │ │ ├── instantRunSlicesApk
│ │ │ │ └── debug
│ │ │ │ └── __content__.json
│ │ │ ├── mergeJavaRes
│ │ │ │ └── debug
│ │ │ │ ├── 0.jar
│ │ │ │ └── __content__.json
│ │ │ └── mergeJniLibs
│ │ │ └── debug
│ │ │ └── __content__.json
│ │ ├── outputs
│ │ │ ├── apk
│ │ │ │ └── debug
│ │ │ │ ├── app-debug.apk
│ │ │ │ └── output.json
│ │ │ └── logs
│ │ │ └── manifest-merger-debug-report.txt
│ │ └── tmp
│ │ └── bundleAppClassesDebug
│ │ └── MANIFEST.MF
│ ├── build.gradle
│ ├── proguard-rules.pro
│ └── src
│ ├── androidTest
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── onwaier
│ │ └── game2048pic
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── ic_2048_launcher-web.png
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── onwaier
│ │ │ └── game2048pic
│ │ │ ├── CardView.java
│ │ │ ├── ChooseActivity.java
│ │ │ ├── CreateUserDialog.java
│ │ │ ├── GameView.java
│ │ │ ├── MainActivity.java
│ │ │ ├── MyDBHelper.java
│ │ │ ├── MyPlayer.java
│ │ │ └── WelcomeActivity.java
│ │ └── res
│ │ ├── bleach_2048.png
│ │ ├── drawable
│ │ │ ├── background.jpg
│ │ │ ├── beauty.jpg
│ │ │ ├── bleach0.jpg
│ │ │ ├── bleach1024.png
│ │ │ ├── bleach128.jpg
│ │ │ ├── bleach16.jpg
│ │ │ ├── bleach2048.jpg
│ │ │ ├── bleach_2048.png
│ │ │ ├── bleach256.jpg
│ │ │ ├── bleach2.jpg
│ │ │ ├── bleach32.jpeg
│ │ │ ├── bleach4.jpg
│ │ │ ├── bleach512.jpeg
│ │ │ ├── bleach64.jpg
│ │ │ ├── bleach8.jpg
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── moon1024.jpg
│ │ │ ├── moon128.jpg
│ │ │ ├── moon16.jpg
│ │ │ ├── moon2048.jpg
│ │ │ ├── moon_2048.png
│ │ │ ├── moon256.jpg
│ │ │ ├── moon2.jpg
│ │ │ ├── moon32.jpg
│ │ │ ├── moon4.jpg
│ │ │ ├── moon512.jpg
│ │ │ ├── moon64.jpg
│ │ │ ├── moon8.jpg
│ │ │ ├── num0.jpg
│ │ │ ├── num1024.jpg
│ │ │ ├── num128.jpg
│ │ │ ├── num16.jpg
│ │ │ ├── num2048.jpg
│ │ │ ├── num2048_model4.png
│ │ │ ├── num2048_model5.png
│ │ │ ├── num2048_model6.png
│ │ │ ├── num256.jpg
│ │ │ ├── num2.jpg
│ │ │ ├── num32.jpg
│ │ │ ├── num4.jpg
│ │ │ ├── num512.jpg
│ │ │ ├── num64.jpg
│ │ │ ├── num8.jpg
│ │ │ ├── pause.png
│ │ │ ├── restart.jpg
│ │ │ ├── start.png
│ │ │ ├── Thumbs.db
│ │ │ ├── welcome1.jpeg
│ │ │ └── welcome.jpg
│ │ ├── drawable-v24
│ │ │ └── ic_launcher_foreground.xml
│ │ ├── layout
│ │ │ ├── activity_choose.xml
│ │ │ ├── activity_main.xml
│ │ │ ├── activity_welcome.xml
│ │ │ ├── create_user_dialog.xml
│ │ │ └── simple_list_item_layout.xml
│ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_2048_launcher_round.xml
│ │ │ ├── ic_2048_launcher.xml
│ │ │ ├── ic_launcher_round.xml
│ │ │ └── ic_launcher.xml
│ │ ├── mipmap-hdpi
│ │ │ ├── game_icon.jpg
│ │ │ ├── ic_2048_launcher.png
│ │ │ ├── ic_2048_launcher_round.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-mdpi
│ │ │ ├── game_icon.jpg
│ │ │ ├── ic_2048_launcher.png
│ │ │ ├── ic_2048_launcher_round.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-xhdpi
│ │ │ ├── game_icon.jpg
│ │ │ ├── ic_2048_launcher.png
│ │ │ ├── ic_2048_launcher_round.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxhdpi
│ │ │ ├── game_icon.jpg
│ │ │ ├── ic_2048_launcher.png
│ │ │ ├── ic_2048_launcher_round.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxxhdpi
│ │ │ ├── game_icon.jpg
│ │ │ ├── ic_2048_launcher.png
│ │ │ ├── ic_2048_launcher_round.png
│ │ │ ├── ic_launcher_foreground.png
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── moon_2048.png
│ │ ├── num2048_model4.png
│ │ ├── num2048_model5.png
│ │ ├── num2048_model6.png
│ │ ├── raw
│ │ │ ├── bleach.mp3
│ │ │ ├── del.wav
│ │ │ ├── moon.mp3
│ │ │ ├── move.mp3
│ │ │ ├── num.mp3
│ │ │ └── test.mp3
│ │ └── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── example
│ └── onwaier
│ └── game2048pic
│ └── ExampleUnitTest.java
├── build
│ └── android-profile
│ ├── profile-2018-04-07-17-25-56-222.json
│ ├── profile-2018-04-07-17-25-56-222.rawproto
│ ├── profile-2018-04-07-17-27-11-896.json
│ ├── profile-2018-04-07-17-27-11-896.rawproto
│ ├── profile-2018-04-07-17-30-11-113.json
│ ├── profile-2018-04-07-17-30-11-113.rawproto
│ ├── profile-2018-04-07-17-30-42-463.json
│ ├── profile-2018-04-07-17-30-42-463.rawproto
│ ├── profile-2018-04-07-17-31-12-882.json
│ ├── profile-2018-04-07-17-31-12-882.rawproto
│ ├── profile-2018-04-07-17-31-28-887.json
│ ├── profile-2018-04-07-17-31-28-887.rawproto
│ ├── profile-2018-04-07-17-37-17-097.json
│ ├── profile-2018-04-07-17-37-17-097.rawproto
│ ├── profile-2018-04-07-18-38-57-271.json
│ ├── profile-2018-04-07-18-38-57-271.rawproto
│ ├── profile-2018-04-07-18-39-39-440.json
│ ├── profile-2018-04-07-18-39-39-440.rawproto
│ ├── profile-2018-04-07-19-47-37-174.json
│ ├── profile-2018-04-07-19-47-37-174.rawproto
│ ├── profile-2018-04-07-19-52-11-512.json
│ ├── profile-2018-04-07-19-52-11-512.rawproto
│ ├── profile-2018-04-07-19-53-16-036.json
│ ├── profile-2018-04-07-19-53-16-036.rawproto
│ ├── profile-2018-04-07-19-55-24-708.json
│ ├── profile-2018-04-07-19-55-24-708.rawproto
│ ├── profile-2018-04-07-19-56-17-033.json
│ ├── profile-2018-04-07-19-56-17-033.rawproto
│ ├── profile-2018-04-07-19-59-09-401.json
│ ├── profile-2018-04-07-19-59-09-401.rawproto
│ ├── profile-2018-04-07-20-01-46-976.json
│ ├── profile-2018-04-07-20-01-46-976.rawproto
│ ├── profile-2018-04-07-20-04-13-234.json
│ ├── profile-2018-04-07-20-04-13-234.rawproto
│ ├── profile-2018-04-07-20-20-25-960.json
│ ├── profile-2018-04-07-20-20-25-960.rawproto
│ ├── profile-2018-04-07-20-50-30-441.json
│ ├── profile-2018-04-07-20-50-30-441.rawproto
│ ├── profile-2018-04-07-20-50-52-274.json
│ ├── profile-2018-04-07-20-50-52-274.rawproto
│ ├── profile-2018-04-07-20-55-32-488.json
│ ├── profile-2018-04-07-20-55-32-488.rawproto
│ ├── profile-2018-04-07-20-57-07-910.json
│ ├── profile-2018-04-07-20-57-07-910.rawproto
│ ├── profile-2018-04-07-21-01-13-830.json
│ ├── profile-2018-04-07-21-01-13-830.rawproto
│ ├── profile-2018-04-07-21-02-46-241.json
│ ├── profile-2018-04-07-21-02-46-241.rawproto
│ ├── profile-2018-04-07-21-04-01-178.json
│ ├── profile-2018-04-07-21-04-01-178.rawproto
│ ├── profile-2018-04-07-21-10-50-857.json
│ ├── profile-2018-04-07-21-10-50-857.rawproto
│ ├── profile-2018-04-07-21-12-08-368.json
│ ├── profile-2018-04-07-21-12-08-368.rawproto
│ ├── profile-2018-04-07-21-13-22-104.json
│ ├── profile-2018-04-07-21-13-22-104.rawproto
│ ├── profile-2018-04-07-21-18-05-351.json
│ ├── profile-2018-04-07-21-18-05-351.rawproto
│ ├── profile-2018-04-07-21-20-18-184.json
│ ├── profile-2018-04-07-21-20-18-184.rawproto
│ ├── profile-2018-04-07-21-21-32-283.json
│ ├── profile-2018-04-07-21-21-32-283.rawproto
│ ├── profile-2018-04-07-21-23-06-690.json
│ ├── profile-2018-04-07-21-23-06-690.rawproto
│ ├── profile-2018-04-07-21-34-25-042.json
│ ├── profile-2018-04-07-21-34-25-042.rawproto
│ ├── profile-2018-04-07-21-48-47-676.json
│ ├── profile-2018-04-07-21-48-47-676.rawproto
│ ├── profile-2018-04-07-21-52-48-864.json
│ ├── profile-2018-04-07-21-52-48-864.rawproto
│ ├── profile-2018-04-07-21-59-19-164.json
│ ├── profile-2018-04-07-21-59-19-164.rawproto
│ ├── profile-2018-04-07-22-16-24-209.json
│ ├── profile-2018-04-07-22-16-24-209.rawproto
│ ├── profile-2018-04-07-22-23-44-021.json
│ ├── profile-2018-04-07-22-23-44-021.rawproto
│ ├── profile-2018-04-07-22-27-00-314.json
│ ├── profile-2018-04-07-22-27-00-314.rawproto
│ ├── profile-2018-04-07-22-30-51-135.json
│ ├── profile-2018-04-07-22-30-51-135.rawproto
│ ├── profile-2018-04-07-22-34-39-234.json
│ ├── profile-2018-04-07-22-34-39-234.rawproto
│ ├── profile-2018-04-08-15-21-18-861.json
│ ├── profile-2018-04-08-15-21-18-861.rawproto
│ ├── profile-2018-04-08-15-22-33-993.json
│ ├── profile-2018-04-08-15-22-33-993.rawproto
│ ├── profile-2018-04-08-15-23-34-653.json
│ ├── profile-2018-04-08-15-23-34-653.rawproto
│ ├── profile-2018-04-08-17-16-15-163.json
│ ├── profile-2018-04-08-17-16-15-163.rawproto
│ ├── profile-2018-04-08-17-17-28-437.json
│ ├── profile-2018-04-08-17-17-28-437.rawproto
│ ├── profile-2018-04-08-17-26-15-363.json
│ ├── profile-2018-04-08-17-26-15-363.rawproto
│ ├── profile-2018-04-08-17-36-27-588.json
│ ├── profile-2018-04-08-17-36-27-588.rawproto
│ ├── profile-2018-04-08-17-55-31-979.json
│ ├── profile-2018-04-08-17-55-31-979.rawproto
│ ├── profile-2018-04-08-17-59-04-205.json
│ ├── profile-2018-04-08-17-59-04-205.rawproto
│ ├── profile-2018-04-08-21-48-59-289.json
│ ├── profile-2018-04-08-21-48-59-289.rawproto
│ ├── profile-2018-04-08-21-52-16-279.json
│ ├── profile-2018-04-08-21-52-16-279.rawproto
│ ├── profile-2018-04-08-21-53-42-549.json
│ ├── profile-2018-04-08-21-53-42-549.rawproto
│ ├── profile-2018-04-08-21-54-23-543.json
│ ├── profile-2018-04-08-21-54-23-543.rawproto
│ ├── profile-2018-04-08-21-57-28-721.json
│ ├── profile-2018-04-08-21-57-28-721.rawproto
│ ├── profile-2018-04-08-22-01-13-626.json
│ ├── profile-2018-04-08-22-01-13-626.rawproto
│ ├── profile-2018-04-08-22-06-51-326.json
│ ├── profile-2018-04-08-22-06-51-326.rawproto
│ ├── profile-2018-04-08-22-23-49-924.json
│ ├── profile-2018-04-08-22-23-49-924.rawproto
│ ├── profile-2018-04-08-22-43-53-534.json
│ ├── profile-2018-04-08-22-43-53-534.rawproto
│ ├── profile-2018-04-08-22-53-02-004.json
│ ├── profile-2018-04-08-22-53-02-004.rawproto
│ ├── profile-2018-04-08-22-55-01-245.json
│ ├── profile-2018-04-08-22-55-01-245.rawproto
│ ├── profile-2018-04-08-23-01-55-328.json
│ ├── profile-2018-04-08-23-01-55-328.rawproto
│ ├── profile-2018-04-08-23-05-27-074.json
│ ├── profile-2018-04-08-23-05-27-074.rawproto
│ ├── profile-2018-04-08-23-09-51-849.json
│ ├── profile-2018-04-08-23-09-51-849.rawproto
│ ├── profile-2018-04-08-23-24-12-041.json
│ ├── profile-2018-04-08-23-24-12-041.rawproto
│ ├── profile-2018-04-08-23-48-48-315.json
│ ├── profile-2018-04-08-23-48-48-315.rawproto
│ ├── profile-2018-04-09-00-11-03-045.json
│ ├── profile-2018-04-09-00-11-03-045.rawproto
│ ├── profile-2018-04-09-19-03-19-598.json
│ ├── profile-2018-04-09-19-03-19-598.rawproto
│ ├── profile-2018-04-09-19-04-45-825.json
│ ├── profile-2018-04-09-19-04-45-825.rawproto
│ ├── profile-2018-04-09-19-37-12-513.json
│ ├── profile-2018-04-09-19-37-12-513.rawproto
│ ├── profile-2018-04-09-19-37-59-663.json
│ ├── profile-2018-04-09-19-37-59-663.rawproto
│ ├── profile-2018-04-09-19-43-11-887.json
│ ├── profile-2018-04-09-19-43-11-887.rawproto
│ ├── profile-2018-04-09-19-58-18-038.json
│ ├── profile-2018-04-09-19-58-18-038.rawproto
│ ├── profile-2018-04-09-20-06-57-627.json
│ ├── profile-2018-04-09-20-06-57-627.rawproto
│ ├── profile-2018-04-09-20-13-02-610.json
│ ├── profile-2018-04-09-20-13-02-610.rawproto
│ ├── profile-2018-04-09-20-44-01-055.json
│ ├── profile-2018-04-09-20-44-01-055.rawproto
│ ├── profile-2018-04-09-20-45-34-186.json
│ ├── profile-2018-04-09-20-45-34-186.rawproto
│ ├── profile-2018-04-09-20-59-38-927.json
│ ├── profile-2018-04-09-20-59-38-927.rawproto
│ ├── profile-2018-04-09-21-05-26-850.json
│ ├── profile-2018-04-09-21-05-26-850.rawproto
│ ├── profile-2018-04-09-21-29-45-970.json
│ ├── profile-2018-04-09-21-29-45-970.rawproto
│ ├── profile-2018-04-09-21-32-17-784.json
│ ├── profile-2018-04-09-21-32-17-784.rawproto
│ ├── profile-2018-04-09-21-34-59-069.json
│ ├── profile-2018-04-09-21-34-59-069.rawproto
│ ├── profile-2018-04-09-21-36-03-405.json
│ ├── profile-2018-04-09-21-36-03-405.rawproto
│ ├── profile-2018-04-09-23-29-18-632.json
│ ├── profile-2018-04-09-23-29-18-632.rawproto
│ ├── profile-2018-04-09-23-30-58-425.json
│ ├── profile-2018-04-09-23-30-58-425.rawproto
│ ├── profile-2018-04-09-23-32-20-914.json
│ ├── profile-2018-04-09-23-32-20-914.rawproto
│ ├── profile-2018-04-09-23-37-35-022.json
│ ├── profile-2018-04-09-23-37-35-022.rawproto
│ ├── profile-2018-04-10-12-45-12-127.json
│ ├── profile-2018-04-10-12-45-12-127.rawproto
│ ├── profile-2018-04-10-12-45-52-863.json
│ ├── profile-2018-04-10-12-45-52-863.rawproto
│ ├── profile-2018-04-10-12-50-51-677.json
│ ├── profile-2018-04-10-12-50-51-677.rawproto
│ ├── profile-2018-04-10-12-53-30-993.json
│ ├── profile-2018-04-10-12-53-30-993.rawproto
│ ├── profile-2018-04-10-20-05-39-538.json
│ ├── profile-2018-04-10-20-05-39-538.rawproto
│ ├── profile-2018-04-10-20-05-51-341.json
│ ├── profile-2018-04-10-20-05-51-341.rawproto
│ ├── profile-2018-04-10-20-18-22-455.json
│ ├── profile-2018-04-10-20-18-22-455.rawproto
│ ├── profile-2018-04-10-20-20-47-353.json
│ ├── profile-2018-04-10-20-20-47-353.rawproto
│ ├── profile-2018-04-10-20-22-01-699.json
│ ├── profile-2018-04-10-20-22-01-699.rawproto
│ ├── profile-2018-04-10-20-28-46-748.json
│ ├── profile-2018-04-10-20-28-46-748.rawproto
│ ├── profile-2018-04-10-20-29-23-014.json
│ ├── profile-2018-04-10-20-29-23-014.rawproto
│ ├── profile-2018-04-10-20-29-57-283.json
│ ├── profile-2018-04-10-20-29-57-283.rawproto
│ ├── profile-2018-04-10-20-35-47-705.json
│ ├── profile-2018-04-10-20-35-47-705.rawproto
│ ├── profile-2018-04-10-20-38-04-397.json
│ ├── profile-2018-04-10-20-38-04-397.rawproto
│ ├── profile-2018-04-10-20-39-19-997.json
│ ├── profile-2018-04-10-20-39-19-997.rawproto
│ ├── profile-2018-04-10-20-41-12-749.json
│ ├── profile-2018-04-10-20-41-12-749.rawproto
│ ├── profile-2018-04-10-20-41-30-737.json
│ ├── profile-2018-04-10-20-41-30-737.rawproto
│ ├── profile-2018-04-10-20-43-25-037.json
│ ├── profile-2018-04-10-20-43-25-037.rawproto
│ ├── profile-2018-04-11-19-13-50-869.json
│ ├── profile-2018-04-11-19-13-50-869.rawproto
│ ├── profile-2018-04-11-19-14-34-480.json
│ ├── profile-2018-04-11-19-14-34-480.rawproto
│ ├── profile-2018-04-11-19-45-45-906.json
│ ├── profile-2018-04-11-19-45-45-906.rawproto
│ ├── profile-2018-04-11-19-51-41-742.json
│ ├── profile-2018-04-11-19-51-41-742.rawproto
│ ├── profile-2018-04-11-20-05-00-504.json
│ ├── profile-2018-04-11-20-05-00-504.rawproto
│ ├── profile-2018-04-11-20-19-02-103.json
│ ├── profile-2018-04-11-20-19-02-103.rawproto
│ ├── profile-2018-04-11-20-21-55-367.json
│ ├── profile-2018-04-11-20-21-55-367.rawproto
│ ├── profile-2018-04-11-20-24-16-524.json
│ ├── profile-2018-04-11-20-24-16-524.rawproto
│ ├── profile-2018-04-11-20-26-17-172.json
│ ├── profile-2018-04-11-20-26-17-172.rawproto
│ ├── profile-2018-04-11-20-27-29-177.json
│ ├── profile-2018-04-11-20-27-29-177.rawproto
│ ├── profile-2018-04-11-20-31-26-461.json
│ ├── profile-2018-04-11-20-31-26-461.rawproto
│ ├── profile-2018-04-11-20-36-11-643.json
│ ├── profile-2018-04-11-20-36-11-643.rawproto
│ ├── profile-2018-04-11-20-39-24-998.json
│ ├── profile-2018-04-11-20-39-24-998.rawproto
│ ├── profile-2018-04-11-20-45-37-400.json
│ ├── profile-2018-04-11-20-45-37-400.rawproto
│ ├── profile-2018-04-12-19-20-24-480.json
│ ├── profile-2018-04-12-19-20-24-480.rawproto
│ ├── profile-2018-04-12-19-21-02-137.json
│ ├── profile-2018-04-12-19-21-02-137.rawproto
│ ├── profile-2018-04-12-19-39-59-406.json
│ ├── profile-2018-04-12-19-39-59-406.rawproto
│ ├── profile-2018-04-12-19-42-10-635.json
│ ├── profile-2018-04-12-19-42-10-635.rawproto
│ ├── profile-2018-04-12-19-45-22-315.json
│ ├── profile-2018-04-12-19-45-22-315.rawproto
│ ├── profile-2018-04-12-19-47-56-659.json
│ ├── profile-2018-04-12-19-47-56-659.rawproto
│ ├── profile-2018-04-12-19-56-16-470.json
│ ├── profile-2018-04-12-19-56-16-470.rawproto
│ ├── profile-2018-04-12-20-00-36-807.json
│ ├── profile-2018-04-12-20-00-36-807.rawproto
│ ├── profile-2018-04-12-20-03-05-773.json
│ ├── profile-2018-04-12-20-03-05-773.rawproto
│ ├── profile-2018-04-12-20-15-59-812.json
│ ├── profile-2018-04-12-20-15-59-812.rawproto
│ ├── profile-2018-04-12-22-58-44-612.json
│ ├── profile-2018-04-12-22-58-44-612.rawproto
│ ├── profile-2018-04-12-23-07-17-308.json
│ ├── profile-2018-04-12-23-07-17-308.rawproto
│ ├── profile-2018-04-13-16-29-29-636.json
│ ├── profile-2018-04-13-16-29-29-636.rawproto
│ ├── profile-2018-04-13-16-30-59-105.json
│ ├── profile-2018-04-13-16-30-59-105.rawproto
│ ├── profile-2018-04-14-00-34-18-018.json
│ ├── profile-2018-04-14-00-34-18-018.rawproto
│ ├── profile-2018-04-14-00-35-16-046.json
│ ├── profile-2018-04-14-00-35-16-046.rawproto
│ ├── profile-2018-04-14-00-38-15-191.json
│ ├── profile-2018-04-14-00-38-15-191.rawproto
│ ├── profile-2018-04-14-00-39-27-837.json
│ ├── profile-2018-04-14-00-39-27-837.rawproto
│ ├── profile-2018-04-14-00-43-15-143.json
│ ├── profile-2018-04-14-00-43-15-143.rawproto
│ ├── profile-2018-04-14-00-50-13-285.json
│ ├── profile-2018-04-14-00-50-13-285.rawproto
│ ├── profile-2018-04-14-00-53-39-919.json
│ ├── profile-2018-04-14-00-53-39-919.rawproto
│ ├── profile-2018-04-14-00-58-56-987.json
│ ├── profile-2018-04-14-00-58-56-987.rawproto
│ ├── profile-2018-04-14-01-02-41-503.json
│ ├── profile-2018-04-14-01-02-41-503.rawproto
│ ├── profile-2018-04-14-01-06-23-569.json
│ ├── profile-2018-04-14-01-06-23-569.rawproto
│ ├── profile-2018-04-14-01-08-12-746.json
│ ├── profile-2018-04-14-01-08-12-746.rawproto
│ ├── profile-2018-04-14-01-09-05-733.json
│ ├── profile-2018-04-14-01-09-05-733.rawproto
│ ├── profile-2018-04-14-01-12-08-790.json
│ ├── profile-2018-04-14-01-12-08-790.rawproto
│ ├── profile-2018-04-14-01-14-22-282.json
│ ├── profile-2018-04-14-01-14-22-282.rawproto
│ ├── profile-2018-04-14-01-20-53-108.json
│ ├── profile-2018-04-14-01-20-53-108.rawproto
│ ├── profile-2018-04-14-01-23-54-517.json
│ ├── profile-2018-04-14-01-23-54-517.rawproto
│ ├── profile-2018-04-14-01-25-02-247.json
│ ├── profile-2018-04-14-01-25-02-247.rawproto
│ ├── profile-2018-04-14-01-26-27-864.json
│ ├── profile-2018-04-14-01-26-27-864.rawproto
│ ├── profile-2018-04-14-01-27-46-076.json
│ ├── profile-2018-04-14-01-27-46-076.rawproto
│ ├── profile-2018-04-14-01-40-16-867.json
│ ├── profile-2018-04-14-01-40-16-867.rawproto
│ ├── profile-2018-04-14-01-41-50-733.json
│ ├── profile-2018-04-14-01-41-50-733.rawproto
│ ├── profile-2018-04-14-02-09-51-087.json
│ ├── profile-2018-04-14-02-09-51-087.rawproto
│ ├── profile-2018-04-14-02-14-00-189.json
│ ├── profile-2018-04-14-02-14-00-189.rawproto
│ ├── profile-2018-04-14-02-16-09-746.json
│ ├── profile-2018-04-14-02-16-09-746.rawproto
│ ├── profile-2018-04-14-02-16-21-890.json
│ ├── profile-2018-04-14-02-16-21-890.rawproto
│ ├── profile-2018-04-14-02-17-43-651.json
│ ├── profile-2018-04-14-02-17-43-651.rawproto
│ ├── profile-2018-04-14-18-34-55-323.json
│ ├── profile-2018-04-14-18-34-55-323.rawproto
│ ├── profile-2018-04-14-18-35-59-263.json
│ ├── profile-2018-04-14-18-35-59-263.rawproto
│ ├── profile-2018-04-14-19-36-21-741.json
│ ├── profile-2018-04-14-19-36-21-741.rawproto
│ ├── profile-2018-04-14-19-37-35-681.json
│ ├── profile-2018-04-14-19-37-35-681.rawproto
│ ├── profile-2018-04-14-19-44-06-613.json
│ ├── profile-2018-04-14-19-44-06-613.rawproto
│ ├── profile-2018-04-14-19-44-33-649.json
│ ├── profile-2018-04-14-19-44-33-649.rawproto
│ ├── profile-2018-04-14-19-46-06-728.json
│ ├── profile-2018-04-14-19-46-06-728.rawproto
│ ├── profile-2018-04-14-19-47-19-251.json
│ ├── profile-2018-04-14-19-47-19-251.rawproto
│ ├── profile-2018-04-14-19-49-54-665.json
│ ├── profile-2018-04-14-19-49-54-665.rawproto
│ ├── profile-2018-04-14-19-52-36-107.json
│ ├── profile-2018-04-14-19-52-36-107.rawproto
│ ├── profile-2018-04-14-19-54-49-884.json
│ ├── profile-2018-04-14-19-54-49-884.rawproto
│ ├── profile-2018-04-14-20-06-52-533.json
│ ├── profile-2018-04-14-20-06-52-533.rawproto
│ ├── profile-2018-04-14-20-08-12-494.json
│ ├── profile-2018-04-14-20-08-12-494.rawproto
│ ├── profile-2018-04-14-20-12-57-246.json
│ ├── profile-2018-04-14-20-12-57-246.rawproto
│ ├── profile-2018-04-14-20-45-14-733.json
│ ├── profile-2018-04-14-20-45-14-733.rawproto
│ ├── profile-2018-04-14-20-47-06-574.json
│ ├── profile-2018-04-14-20-47-06-574.rawproto
│ ├── profile-2018-04-14-20-47-10-336.json
│ ├── profile-2018-04-14-20-47-10-336.rawproto
│ ├── profile-2018-04-14-20-58-45-943.json
│ ├── profile-2018-04-14-20-58-45-943.rawproto
│ ├── profile-2018-04-14-21-05-38-440.json
│ ├── profile-2018-04-14-21-05-38-440.rawproto
│ ├── profile-2018-04-14-21-09-00-963.json
│ ├── profile-2018-04-14-21-09-00-963.rawproto
│ ├── profile-2018-04-14-21-20-50-097.json
│ ├── profile-2018-04-14-21-20-50-097.rawproto
│ ├── profile-2018-04-14-21-22-31-085.json
│ ├── profile-2018-04-14-21-22-31-085.rawproto
│ ├── profile-2018-04-14-21-36-43-626.json
│ ├── profile-2018-04-14-21-36-43-626.rawproto
│ ├── profile-2018-04-14-21-39-21-908.json
│ ├── profile-2018-04-14-21-39-21-908.rawproto
│ ├── profile-2018-04-14-21-41-36-450.json
│ ├── profile-2018-04-14-21-41-36-450.rawproto
│ ├── profile-2018-04-14-21-44-27-603.json
│ ├── profile-2018-04-14-21-44-27-603.rawproto
│ ├── profile-2018-04-14-21-47-55-410.json
│ ├── profile-2018-04-14-21-47-55-410.rawproto
│ ├── profile-2018-04-14-21-50-28-904.json
│ ├── profile-2018-04-14-21-50-28-904.rawproto
│ ├── profile-2018-04-14-21-54-17-634.json
│ ├── profile-2018-04-14-21-54-17-634.rawproto
│ ├── profile-2018-04-14-21-57-39-909.json
│ ├── profile-2018-04-14-21-57-39-909.rawproto
│ ├── profile-2018-04-14-22-07-35-791.json
│ ├── profile-2018-04-14-22-07-35-791.rawproto
│ ├── profile-2018-04-14-22-09-41-225.json
│ ├── profile-2018-04-14-22-09-41-225.rawproto
│ ├── profile-2018-04-14-22-14-12-029.json
│ ├── profile-2018-04-14-22-14-12-029.rawproto
│ ├── profile-2018-04-14-22-18-03-385.json
│ ├── profile-2018-04-14-22-18-03-385.rawproto
│ ├── profile-2018-04-14-22-21-18-975.json
│ ├── profile-2018-04-14-22-21-18-975.rawproto
│ ├── profile-2018-04-14-22-25-03-201.json
│ ├── profile-2018-04-14-22-25-03-201.rawproto
│ ├── profile-2018-04-14-22-29-26-228.json
│ ├── profile-2018-04-14-22-29-26-228.rawproto
│ ├── profile-2018-04-14-22-35-56-204.json
│ ├── profile-2018-04-14-22-35-56-204.rawproto
│ ├── profile-2018-04-14-22-37-25-162.json
│ ├── profile-2018-04-14-22-37-25-162.rawproto
│ ├── profile-2018-04-14-22-42-10-998.json
│ ├── profile-2018-04-14-22-42-10-998.rawproto
│ ├── profile-2018-04-14-22-43-20-885.json
│ ├── profile-2018-04-14-22-43-20-885.rawproto
│ ├── profile-2018-04-14-22-44-46-330.json
│ ├── profile-2018-04-14-22-44-46-330.rawproto
│ ├── profile-2018-04-14-22-46-56-865.json
│ ├── profile-2018-04-14-22-46-56-865.rawproto
│ ├── profile-2018-04-14-22-49-24-768.json
│ ├── profile-2018-04-14-22-49-24-768.rawproto
│ ├── profile-2018-04-14-22-50-42-260.json
│ ├── profile-2018-04-14-22-50-42-260.rawproto
│ ├── profile-2018-04-14-22-52-23-163.json
│ ├── profile-2018-04-14-22-52-23-163.rawproto
│ ├── profile-2018-04-14-22-55-21-122.json
│ ├── profile-2018-04-14-22-55-21-122.rawproto
│ ├── profile-2018-04-14-23-04-49-127.json
│ ├── profile-2018-04-14-23-04-49-127.rawproto
│ ├── profile-2018-04-14-23-21-07-643.json
│ ├── profile-2018-04-14-23-21-07-643.rawproto
│ ├── profile-2018-04-14-23-24-48-270.json
│ ├── profile-2018-04-14-23-24-48-270.rawproto
│ ├── profile-2018-04-14-23-29-21-770.json
│ ├── profile-2018-04-14-23-29-21-770.rawproto
│ ├── profile-2018-04-15-00-02-39-813.json
│ ├── profile-2018-04-15-00-02-39-813.rawproto
│ ├── profile-2018-04-15-00-03-16-350.json
│ ├── profile-2018-04-15-00-03-16-350.rawproto
│ ├── profile-2018-04-15-00-06-50-578.json
│ ├── profile-2018-04-15-00-06-50-578.rawproto
│ ├── profile-2018-04-15-00-08-37-824.json
│ ├── profile-2018-04-15-00-08-37-824.rawproto
│ ├── profile-2018-04-15-00-16-54-041.json
│ ├── profile-2018-04-15-00-16-54-041.rawproto
│ ├── profile-2018-04-15-00-20-07-283.json
│ ├── profile-2018-04-15-00-20-07-283.rawproto
│ ├── profile-2018-04-15-19-18-05-248.json
│ ├── profile-2018-04-15-19-18-05-248.rawproto
│ ├── profile-2018-04-15-19-18-59-491.json
│ ├── profile-2018-04-15-19-18-59-491.rawproto
│ ├── profile-2018-04-15-19-40-24-318.json
│ ├── profile-2018-04-15-19-40-24-318.rawproto
│ ├── profile-2018-04-15-19-43-26-234.json
│ ├── profile-2018-04-15-19-43-26-234.rawproto
│ ├── profile-2018-04-15-19-48-27-979.json
│ ├── profile-2018-04-15-19-48-27-979.rawproto
│ ├── profile-2018-04-15-19-48-49-661.json
│ ├── profile-2018-04-15-19-48-49-661.rawproto
│ ├── profile-2018-04-15-19-49-08-901.json
│ ├── profile-2018-04-15-19-49-08-901.rawproto
│ ├── profile-2018-04-15-19-59-17-512.json
│ ├── profile-2018-04-15-19-59-17-512.rawproto
│ ├── profile-2018-04-15-20-03-16-237.json
│ ├── profile-2018-04-15-20-03-16-237.rawproto
│ ├── profile-2018-04-15-20-03-25-682.json
│ ├── profile-2018-04-15-20-03-25-682.rawproto
│ ├── profile-2018-04-15-20-12-13-728.json
│ ├── profile-2018-04-15-20-12-13-728.rawproto
│ ├── profile-2018-04-15-20-12-50-778.json
│ ├── profile-2018-04-15-20-12-50-778.rawproto
│ ├── profile-2018-04-15-20-29-09-934.json
│ ├── profile-2018-04-15-20-29-09-934.rawproto
│ ├── profile-2018-04-15-20-56-29-846.json
│ ├── profile-2018-04-15-20-56-29-846.rawproto
│ ├── profile-2018-04-15-21-05-32-048.json
│ ├── profile-2018-04-15-21-05-32-048.rawproto
│ ├── profile-2018-04-15-21-13-37-713.json
│ ├── profile-2018-04-15-21-13-37-713.rawproto
│ ├── profile-2018-04-15-21-28-23-035.json
│ ├── profile-2018-04-15-21-28-23-035.rawproto
│ ├── profile-2018-04-15-21-31-48-152.json
│ ├── profile-2018-04-15-21-31-48-152.rawproto
│ ├── profile-2018-04-15-21-34-33-538.json
│ ├── profile-2018-04-15-21-34-33-538.rawproto
│ ├── profile-2018-04-15-22-35-07-672.json
│ ├── profile-2018-04-15-22-35-07-672.rawproto
│ ├── profile-2018-04-15-22-38-37-414.json
│ ├── profile-2018-04-15-22-38-37-414.rawproto
│ ├── profile-2018-04-15-22-43-38-855.json
│ ├── profile-2018-04-15-22-43-38-855.rawproto
│ ├── profile-2018-04-15-22-44-21-345.json
│ ├── profile-2018-04-15-22-44-21-345.rawproto
│ ├── profile-2018-04-15-22-46-48-844.json
│ ├── profile-2018-04-15-22-46-48-844.rawproto
│ ├── profile-2018-04-15-23-23-40-576.json
│ ├── profile-2018-04-15-23-23-40-576.rawproto
│ ├── profile-2018-04-15-23-28-31-026.json
│ ├── profile-2018-04-15-23-28-31-026.rawproto
│ ├── profile-2018-04-15-23-35-10-764.json
│ ├── profile-2018-04-15-23-35-10-764.rawproto
│ ├── profile-2018-04-15-23-36-00-560.json
│ ├── profile-2018-04-15-23-36-00-560.rawproto
│ ├── profile-2018-04-15-23-37-26-186.json
│ ├── profile-2018-04-15-23-37-26-186.rawproto
│ ├── profile-2018-04-15-23-43-57-271.json
│ ├── profile-2018-04-15-23-43-57-271.rawproto
│ ├── profile-2018-04-15-23-52-10-872.json
│ ├── profile-2018-04-15-23-52-10-872.rawproto
│ ├── profile-2018-04-15-23-55-19-650.json
│ ├── profile-2018-04-15-23-55-19-650.rawproto
│ ├── profile-2018-04-17-19-59-58-369.json
│ ├── profile-2018-04-17-19-59-58-369.rawproto
│ ├── profile-2018-04-17-20-01-35-145.json
│ ├── profile-2018-04-17-20-01-35-145.rawproto
│ ├── profile-2018-04-17-20-04-01-679.json
│ ├── profile-2018-04-17-20-04-01-679.rawproto
│ ├── profile-2018-04-17-20-06-33-623.json
│ ├── profile-2018-04-17-20-06-33-623.rawproto
│ ├── profile-2018-04-17-20-06-53-962.json
│ ├── profile-2018-04-17-20-06-53-962.rawproto
│ ├── profile-2018-04-17-20-11-59-149.json
│ ├── profile-2018-04-17-20-11-59-149.rawproto
│ ├── profile-2018-04-17-20-13-27-941.json
│ ├── profile-2018-04-17-20-13-27-941.rawproto
│ ├── profile-2018-04-17-20-20-19-963.json
│ ├── profile-2018-04-17-20-20-19-963.rawproto
│ ├── profile-2018-04-19-20-14-05-308.json
│ ├── profile-2018-04-19-20-14-05-308.rawproto
│ ├── profile-2018-04-19-20-15-15-601.json
│ ├── profile-2018-04-19-20-15-15-601.rawproto
│ ├── profile-2018-04-19-20-19-59-461.json
│ ├── profile-2018-04-19-20-19-59-461.rawproto
│ ├── profile-2018-04-19-20-31-12-672.json
│ ├── profile-2018-04-19-20-31-12-672.rawproto
│ ├── profile-2018-04-19-20-32-03-256.json
│ ├── profile-2018-04-19-20-32-03-256.rawproto
│ ├── profile-2018-04-19-20-33-55-822.json
│ ├── profile-2018-04-19-20-33-55-822.rawproto
│ ├── profile-2018-04-19-20-38-05-770.json
│ ├── profile-2018-04-19-20-38-05-770.rawproto
│ ├── profile-2018-04-19-20-38-23-080.json
│ ├── profile-2018-04-19-20-38-23-080.rawproto
│ ├── profile-2018-04-20-09-22-12-969.json
│ ├── profile-2018-04-20-09-22-12-969.rawproto
│ ├── profile-2018-04-20-09-23-13-570.json
│ ├── profile-2018-04-20-09-23-13-570.rawproto
│ ├── profile-2018-04-20-11-20-03-081.json
│ ├── profile-2018-04-20-11-20-03-081.rawproto
│ ├── profile-2018-04-20-17-12-34-499.json
│ ├── profile-2018-04-20-17-12-34-499.rawproto
│ ├── profile-2018-04-20-17-12-45-817.json
│ ├── profile-2018-04-20-17-12-45-817.rawproto
│ ├── profile-2018-04-20-17-15-50-403.json
│ ├── profile-2018-04-20-17-15-50-403.rawproto
│ ├── profile-2018-04-20-17-22-22-903.json
│ ├── profile-2018-04-20-17-22-22-903.rawproto
│ ├── profile-2018-04-20-19-03-49-294.json
│ ├── profile-2018-04-20-19-03-49-294.rawproto
│ ├── profile-2018-04-20-19-08-45-231.json
│ ├── profile-2018-04-20-19-08-45-231.rawproto
│ ├── profile-2018-04-20-19-20-52-815.json
│ ├── profile-2018-04-20-19-20-52-815.rawproto
│ ├── profile-2018-04-20-20-21-02-549.json
│ ├── profile-2018-04-20-20-21-02-549.rawproto
│ ├── profile-2018-04-20-20-24-07-322.json
│ ├── profile-2018-04-20-20-24-07-322.rawproto
│ ├── profile-2018-04-20-20-24-56-491.json
│ ├── profile-2018-04-20-20-24-56-491.rawproto
│ ├── profile-2018-04-20-20-56-10-417.json
│ ├── profile-2018-04-20-20-56-10-417.rawproto
│ ├── profile-2018-04-20-20-57-30-293.json
│ ├── profile-2018-04-20-20-57-30-293.rawproto
│ ├── profile-2018-04-20-21-01-47-559.json
│ ├── profile-2018-04-20-21-01-47-559.rawproto
│ ├── profile-2018-04-20-21-13-59-538.json
│ ├── profile-2018-04-20-21-13-59-538.rawproto
│ ├── profile-2018-04-20-21-37-32-515.json
│ ├── profile-2018-04-20-21-37-32-515.rawproto
│ ├── profile-2018-04-20-21-38-06-062.json
│ ├── profile-2018-04-20-21-38-06-062.rawproto
│ ├── profile-2018-04-20-21-41-35-354.json
│ ├── profile-2018-04-20-21-41-35-354.rawproto
│ ├── profile-2018-04-20-21-43-13-932.json
│ ├── profile-2018-04-20-21-43-13-932.rawproto
│ ├── profile-2018-04-20-21-46-19-836.json
│ ├── profile-2018-04-20-21-46-19-836.rawproto
│ ├── profile-2018-04-20-22-00-43-044.json
│ ├── profile-2018-04-20-22-00-43-044.rawproto
│ ├── profile-2018-04-20-22-03-37-491.json
│ ├── profile-2018-04-20-22-03-37-491.rawproto
│ ├── profile-2018-04-20-22-04-35-750.json
│ ├── profile-2018-04-20-22-04-35-750.rawproto
│ ├── profile-2018-04-20-22-17-44-783.json
│ ├── profile-2018-04-20-22-17-44-783.rawproto
│ ├── profile-2018-04-20-22-36-38-002.json
│ ├── profile-2018-04-20-22-36-38-002.rawproto
│ ├── profile-2018-04-20-22-39-43-751.json
│ ├── profile-2018-04-20-22-39-43-751.rawproto
│ ├── profile-2018-04-20-22-41-17-408.json
│ ├── profile-2018-04-20-22-41-17-408.rawproto
│ ├── profile-2018-04-20-22-44-10-207.json
│ ├── profile-2018-04-20-22-44-10-207.rawproto
│ ├── profile-2018-04-20-22-44-43-114.json
│ ├── profile-2018-04-20-22-44-43-114.rawproto
│ ├── profile-2018-04-20-22-52-59-080.json
│ ├── profile-2018-04-20-22-52-59-080.rawproto
│ ├── profile-2018-04-20-22-54-32-676.json
│ ├── profile-2018-04-20-22-54-32-676.rawproto
│ ├── profile-2018-04-20-22-58-13-733.json
│ ├── profile-2018-04-20-22-58-13-733.rawproto
│ ├── profile-2018-04-20-23-00-18-418.json
│ ├── profile-2018-04-20-23-00-18-418.rawproto
│ ├── profile-2018-04-20-23-01-37-749.json
│ ├── profile-2018-04-20-23-01-37-749.rawproto
│ ├── profile-2018-04-20-23-12-39-822.json
│ ├── profile-2018-04-20-23-12-39-822.rawproto
│ ├── profile-2018-04-20-23-15-35-781.json
│ ├── profile-2018-04-20-23-15-35-781.rawproto
│ ├── profile-2018-04-20-23-17-55-322.json
│ ├── profile-2018-04-20-23-17-55-322.rawproto
│ ├── profile-2018-04-20-23-25-38-446.json
│ ├── profile-2018-04-20-23-25-38-446.rawproto
│ ├── profile-2018-04-20-23-26-21-124.json
│ ├── profile-2018-04-20-23-26-21-124.rawproto
│ ├── profile-2018-04-20-23-36-41-706.json
│ ├── profile-2018-04-20-23-36-41-706.rawproto
│ ├── profile-2018-04-20-23-38-42-250.json
│ ├── profile-2018-04-20-23-38-42-250.rawproto
│ ├── profile-2018-04-20-23-46-42-299.json
│ ├── profile-2018-04-20-23-46-42-299.rawproto
│ ├── profile-2018-04-20-23-47-16-902.json
│ ├── profile-2018-04-20-23-47-16-902.rawproto
│ ├── profile-2018-04-20-23-56-08-445.json
│ ├── profile-2018-04-20-23-56-08-445.rawproto
│ ├── profile-2018-04-21-00-00-31-415.json
│ ├── profile-2018-04-21-00-00-31-415.rawproto
│ ├── profile-2018-04-21-00-03-09-339.json
│ ├── profile-2018-04-21-00-03-09-339.rawproto
│ ├── profile-2018-04-21-00-06-57-497.json
│ ├── profile-2018-04-21-00-06-57-497.rawproto
│ ├── profile-2018-04-21-08-43-51-359.json
│ ├── profile-2018-04-21-08-43-51-359.rawproto
│ ├── profile-2018-04-21-09-12-26-307.json
│ ├── profile-2018-04-21-09-12-26-307.rawproto
│ ├── profile-2018-04-21-09-13-11-513.json
│ ├── profile-2018-04-21-09-13-11-513.rawproto
│ ├── profile-2018-04-21-09-14-36-406.json
│ ├── profile-2018-04-21-09-14-36-406.rawproto
│ ├── profile-2018-04-21-09-25-07-536.json
│ ├── profile-2018-04-21-09-25-07-536.rawproto
│ ├── profile-2018-04-21-09-26-58-919.json
│ ├── profile-2018-04-21-09-26-58-919.rawproto
│ ├── profile-2018-04-21-09-33-41-446.json
│ ├── profile-2018-04-21-09-33-41-446.rawproto
│ ├── profile-2018-04-21-21-40-20-874.json
│ ├── profile-2018-04-21-21-40-20-874.rawproto
│ ├── profile-2018-04-21-21-41-24-847.json
│ ├── profile-2018-04-21-21-41-24-847.rawproto
│ ├── profile-2018-04-21-21-43-56-555.json
│ ├── profile-2018-04-21-21-43-56-555.rawproto
│ ├── profile-2018-04-21-21-47-33-152.json
│ ├── profile-2018-04-21-21-47-33-152.rawproto
│ ├── profile-2018-04-21-21-51-23-396.json
│ ├── profile-2018-04-21-21-51-23-396.rawproto
│ ├── profile-2018-04-21-22-00-23-343.json
│ ├── profile-2018-04-21-22-00-23-343.rawproto
│ ├── profile-2018-04-21-22-06-33-050.json
│ ├── profile-2018-04-21-22-06-33-050.rawproto
│ ├── profile-2018-04-25-21-12-49-948.json
│ ├── profile-2018-04-25-21-12-49-948.rawproto
│ ├── profile-2018-04-25-21-14-16-941.json
│ ├── profile-2018-04-25-21-14-16-941.rawproto
│ ├── profile-2018-04-25-21-14-27-296.json
│ ├── profile-2018-04-25-21-14-27-296.rawproto
│ ├── profile-2018-04-25-21-23-42-971.json
│ ├── profile-2018-04-25-21-23-42-971.rawproto
│ ├── profile-2018-04-25-21-28-42-699.json
│ ├── profile-2018-04-25-21-28-42-699.rawproto
│ ├── profile-2018-04-25-21-31-41-847.json
│ ├── profile-2018-04-25-21-31-41-847.rawproto
│ ├── profile-2018-04-25-21-32-20-507.json
│ ├── profile-2018-04-25-21-32-20-507.rawproto
│ ├── profile-2018-04-25-21-35-54-265.json
│ ├── profile-2018-04-25-21-35-54-265.rawproto
│ ├── profile-2018-04-25-21-39-42-965.json
│ ├── profile-2018-04-25-21-39-42-965.rawproto
│ ├── profile-2018-04-25-21-51-08-945.json
│ ├── profile-2018-04-25-21-51-08-945.rawproto
│ ├── profile-2018-04-25-22-19-56-897.json
│ ├── profile-2018-04-25-22-19-56-897.rawproto
│ ├── profile-2018-04-25-22-22-44-144.json
│ ├── profile-2018-04-25-22-22-44-144.rawproto
│ ├── profile-2018-04-25-22-29-25-371.json
│ ├── profile-2018-04-25-22-29-25-371.rawproto
│ ├── profile-2018-04-26-10-53-40-003.json
│ ├── profile-2018-04-26-10-53-40-003.rawproto
│ ├── profile-2018-04-26-10-54-56-414.json
│ ├── profile-2018-04-26-10-54-56-414.rawproto
│ ├── profile-2018-04-26-11-59-52-380.json
│ ├── profile-2018-04-26-11-59-52-380.rawproto
│ ├── profile-2018-04-26-12-00-18-171.json
│ ├── profile-2018-04-26-12-00-18-171.rawproto
│ ├── profile-2018-04-27-00-06-23-857.json
│ ├── profile-2018-04-27-00-06-23-857.rawproto
│ ├── profile-2018-04-27-00-06-44-284.json
│ └── profile-2018-04-27-00-06-44-284.rawproto
├── build.gradle
├── Game2048pic.iml
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── local.properties
└── settings.gradle
536 directories, 3178 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论