├── Android ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── leancloud │ │ │ └── freechat │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── leancloud │ │ │ │ └── freechat │ │ │ │ ├── Application.java │ │ │ │ ├── ContactFragment.java │ │ │ │ ├── LeanProfileProvider.java │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MyContactsRecyclerViewAdapter.java │ │ │ │ ├── OpenRoomFragment.java │ │ │ │ ├── OpenRoomRecyclerViewAdapter.java │ │ │ │ ├── SignupActivity.java │ │ │ │ └── dummy │ │ │ │ └── DummyContent.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_login.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_signup.xml │ │ │ ├── fragment_contact.xml │ │ │ ├── fragment_contact_list.xml │ │ │ ├── fragment_main.xml │ │ │ ├── fragment_openroom.xml │ │ │ └── fragment_openroom_list.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── leancloud │ │ └── freechat │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── leancloudchatkit │ ├── build.gradle │ ├── build │ │ ├── generated │ │ │ └── source │ │ │ │ ├── buildConfig │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── cn │ │ │ │ │ │ └── leancloud │ │ │ │ │ │ └── chatkit │ │ │ │ │ │ └── test │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ ├── debug │ │ │ │ │ └── cn │ │ │ │ │ │ └── leancloud │ │ │ │ │ │ └── chatkit │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── release │ │ │ │ │ └── cn │ │ │ │ │ └── leancloud │ │ │ │ │ └── chatkit │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── r │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ └── v7 │ │ │ │ │ │ ├── appcompat │ │ │ │ │ │ └── R.java │ │ │ │ │ │ └── recyclerview │ │ │ │ │ │ └── R.java │ │ │ │ │ ├── cn │ │ │ │ │ └── leancloud │ │ │ │ │ │ └── chatkit │ │ │ │ │ │ ├── R.java │ │ │ │ │ │ └── test │ │ │ │ │ │ └── R.java │ │ │ │ │ └── com │ │ │ │ │ └── avos │ │ │ │ │ └── avospush │ │ │ │ │ └── R.java │ │ │ │ ├── debug │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ └── v7 │ │ │ │ │ │ ├── appcompat │ │ │ │ │ │ └── R.java │ │ │ │ │ │ └── recyclerview │ │ │ │ │ │ └── R.java │ │ │ │ ├── cn │ │ │ │ │ └── leancloud │ │ │ │ │ │ └── chatkit │ │ │ │ │ │ └── R.java │ │ │ │ └── com │ │ │ │ │ └── avos │ │ │ │ │ └── avospush │ │ │ │ │ └── R.java │ │ │ │ └── release │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ └── v7 │ │ │ │ │ ├── appcompat │ │ │ │ │ └── R.java │ │ │ │ │ └── recyclerview │ │ │ │ │ └── R.java │ │ │ │ ├── cn │ │ │ │ └── leancloud │ │ │ │ │ └── chatkit │ │ │ │ │ └── R.java │ │ │ │ └── com │ │ │ │ └── avos │ │ │ │ └── avospush │ │ │ │ └── R.java │ │ ├── intermediates │ │ │ ├── blame │ │ │ │ └── res │ │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ ├── multi │ │ │ │ │ │ ├── values-af.json │ │ │ │ │ │ ├── values-am.json │ │ │ │ │ │ ├── values-ar.json │ │ │ │ │ │ ├── values-az-rAZ.json │ │ │ │ │ │ ├── values-bg.json │ │ │ │ │ │ ├── values-bn-rBD.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-rUS.json │ │ │ │ │ │ ├── values-es.json │ │ │ │ │ │ ├── values-et-rEE.json │ │ │ │ │ │ ├── values-eu-rES.json │ │ │ │ │ │ ├── values-fa.json │ │ │ │ │ │ ├── values-fi.json │ │ │ │ │ │ ├── values-fr-rCA.json │ │ │ │ │ │ ├── values-fr.json │ │ │ │ │ │ ├── values-gl-rES.json │ │ │ │ │ │ ├── values-gu-rIN.json │ │ │ │ │ │ ├── values-h320dp-v13.json │ │ │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ │ │ ├── values-hi.json │ │ │ │ │ │ ├── values-hr.json │ │ │ │ │ │ ├── values-hu.json │ │ │ │ │ │ ├── values-hy-rAM.json │ │ │ │ │ │ ├── values-in.json │ │ │ │ │ │ ├── values-is-rIS.json │ │ │ │ │ │ ├── values-it.json │ │ │ │ │ │ ├── values-iw.json │ │ │ │ │ │ ├── values-ja.json │ │ │ │ │ │ ├── values-ka-rGE.json │ │ │ │ │ │ ├── values-kk-rKZ.json │ │ │ │ │ │ ├── values-km-rKH.json │ │ │ │ │ │ ├── values-kn-rIN.json │ │ │ │ │ │ ├── values-ko.json │ │ │ │ │ │ ├── values-ky-rKG.json │ │ │ │ │ │ ├── values-land.json │ │ │ │ │ │ ├── values-large-v4.json │ │ │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ │ │ ├── values-lo-rLA.json │ │ │ │ │ │ ├── values-lt.json │ │ │ │ │ │ ├── values-lv.json │ │ │ │ │ │ ├── values-mk-rMK.json │ │ │ │ │ │ ├── values-ml-rIN.json │ │ │ │ │ │ ├── values-mn-rMN.json │ │ │ │ │ │ ├── values-mr-rIN.json │ │ │ │ │ │ ├── values-ms-rMY.json │ │ │ │ │ │ ├── values-my-rMM.json │ │ │ │ │ │ ├── values-nb.json │ │ │ │ │ │ ├── values-ne-rNP.json │ │ │ │ │ │ ├── values-night-v8.json │ │ │ │ │ │ ├── values-nl.json │ │ │ │ │ │ ├── values-pa-rIN.json │ │ │ │ │ │ ├── values-pl.json │ │ │ │ │ │ ├── values-port.json │ │ │ │ │ │ ├── values-pt-rBR.json │ │ │ │ │ │ ├── values-pt-rPT.json │ │ │ │ │ │ ├── values-pt.json │ │ │ │ │ │ ├── values-ro.json │ │ │ │ │ │ ├── values-ru.json │ │ │ │ │ │ ├── values-si-rLK.json │ │ │ │ │ │ ├── values-sk.json │ │ │ │ │ │ ├── values-sl.json │ │ │ │ │ │ ├── values-sq-rAL.json │ │ │ │ │ │ ├── values-sr.json │ │ │ │ │ │ ├── values-sv.json │ │ │ │ │ │ ├── values-sw.json │ │ │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ │ │ ├── values-ta-rIN.json │ │ │ │ │ │ ├── values-te-rIN.json │ │ │ │ │ │ ├── values-th.json │ │ │ │ │ │ ├── values-tl.json │ │ │ │ │ │ ├── values-tr.json │ │ │ │ │ │ ├── values-uk.json │ │ │ │ │ │ ├── values-ur-rPK.json │ │ │ │ │ │ ├── values-uz-rUZ.json │ │ │ │ │ │ ├── values-v11.json │ │ │ │ │ │ ├── values-v12.json │ │ │ │ │ │ ├── values-v13.json │ │ │ │ │ │ ├── values-v14.json │ │ │ │ │ │ ├── values-v17.json │ │ │ │ │ │ ├── values-v18.json │ │ │ │ │ │ ├── values-v21.json │ │ │ │ │ │ ├── values-v22.json │ │ │ │ │ │ ├── values-v23.json │ │ │ │ │ │ ├── values-vi.json │ │ │ │ │ │ ├── values-w360dp-v13.json │ │ │ │ │ │ ├── values-w480dp-v13.json │ │ │ │ │ │ ├── values-w500dp-v13.json │ │ │ │ │ │ ├── values-w600dp-v13.json │ │ │ │ │ │ ├── values-w720dp-v13.json │ │ │ │ │ │ ├── values-xlarge-land-v4.json │ │ │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ │ │ ├── values-zh-rCN.json │ │ │ │ │ │ ├── values-zh-rHK.json │ │ │ │ │ │ ├── values-zh-rTW.json │ │ │ │ │ │ ├── values-zu.json │ │ │ │ │ │ └── values.json │ │ │ │ │ │ └── single │ │ │ │ │ │ ├── anim.json │ │ │ │ │ │ ├── color-v11.json │ │ │ │ │ │ ├── color-v23.json │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17.json │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17.json │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17.json │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17.json │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17.json │ │ │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ │ │ ├── drawable-v21.json │ │ │ │ │ │ ├── drawable-v23.json │ │ │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ │ │ ├── drawable-xxxhdpi-v4.json │ │ │ │ │ │ ├── drawable.json │ │ │ │ │ │ └── layout.json │ │ │ │ │ ├── debug │ │ │ │ │ ├── multi │ │ │ │ │ │ ├── values-af.json │ │ │ │ │ │ ├── values-am.json │ │ │ │ │ │ ├── values-ar.json │ │ │ │ │ │ ├── values-az-rAZ.json │ │ │ │ │ │ ├── values-bg.json │ │ │ │ │ │ ├── values-bn-rBD.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-rUS.json │ │ │ │ │ │ ├── values-es.json │ │ │ │ │ │ ├── values-et-rEE.json │ │ │ │ │ │ ├── values-eu-rES.json │ │ │ │ │ │ ├── values-fa.json │ │ │ │ │ │ ├── values-fi.json │ │ │ │ │ │ ├── values-fr-rCA.json │ │ │ │ │ │ ├── values-fr.json │ │ │ │ │ │ ├── values-gl-rES.json │ │ │ │ │ │ ├── values-gu-rIN.json │ │ │ │ │ │ ├── values-h320dp-v13.json │ │ │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ │ │ ├── values-hi.json │ │ │ │ │ │ ├── values-hr.json │ │ │ │ │ │ ├── values-hu.json │ │ │ │ │ │ ├── values-hy-rAM.json │ │ │ │ │ │ ├── values-in.json │ │ │ │ │ │ ├── values-is-rIS.json │ │ │ │ │ │ ├── values-it.json │ │ │ │ │ │ ├── values-iw.json │ │ │ │ │ │ ├── values-ja.json │ │ │ │ │ │ ├── values-ka-rGE.json │ │ │ │ │ │ ├── values-kk-rKZ.json │ │ │ │ │ │ ├── values-km-rKH.json │ │ │ │ │ │ ├── values-kn-rIN.json │ │ │ │ │ │ ├── values-ko.json │ │ │ │ │ │ ├── values-ky-rKG.json │ │ │ │ │ │ ├── values-land.json │ │ │ │ │ │ ├── values-large-v4.json │ │ │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ │ │ ├── values-lo-rLA.json │ │ │ │ │ │ ├── values-lt.json │ │ │ │ │ │ ├── values-lv.json │ │ │ │ │ │ ├── values-mk-rMK.json │ │ │ │ │ │ ├── values-ml-rIN.json │ │ │ │ │ │ ├── values-mn-rMN.json │ │ │ │ │ │ ├── values-mr-rIN.json │ │ │ │ │ │ ├── values-ms-rMY.json │ │ │ │ │ │ ├── values-my-rMM.json │ │ │ │ │ │ ├── values-nb.json │ │ │ │ │ │ ├── values-ne-rNP.json │ │ │ │ │ │ ├── values-night-v8.json │ │ │ │ │ │ ├── values-nl.json │ │ │ │ │ │ ├── values-pa-rIN.json │ │ │ │ │ │ ├── values-pl.json │ │ │ │ │ │ ├── values-port.json │ │ │ │ │ │ ├── values-pt-rBR.json │ │ │ │ │ │ ├── values-pt-rPT.json │ │ │ │ │ │ ├── values-pt.json │ │ │ │ │ │ ├── values-ro.json │ │ │ │ │ │ ├── values-ru.json │ │ │ │ │ │ ├── values-si-rLK.json │ │ │ │ │ │ ├── values-sk.json │ │ │ │ │ │ ├── values-sl.json │ │ │ │ │ │ ├── values-sq-rAL.json │ │ │ │ │ │ ├── values-sr.json │ │ │ │ │ │ ├── values-sv.json │ │ │ │ │ │ ├── values-sw.json │ │ │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ │ │ ├── values-ta-rIN.json │ │ │ │ │ │ ├── values-te-rIN.json │ │ │ │ │ │ ├── values-th.json │ │ │ │ │ │ ├── values-tl.json │ │ │ │ │ │ ├── values-tr.json │ │ │ │ │ │ ├── values-uk.json │ │ │ │ │ │ ├── values-ur-rPK.json │ │ │ │ │ │ ├── values-uz-rUZ.json │ │ │ │ │ │ ├── values-v11.json │ │ │ │ │ │ ├── values-v12.json │ │ │ │ │ │ ├── values-v13.json │ │ │ │ │ │ ├── values-v14.json │ │ │ │ │ │ ├── values-v17.json │ │ │ │ │ │ ├── values-v18.json │ │ │ │ │ │ ├── values-v21.json │ │ │ │ │ │ ├── values-v22.json │ │ │ │ │ │ ├── values-v23.json │ │ │ │ │ │ ├── values-vi.json │ │ │ │ │ │ ├── values-w360dp-v13.json │ │ │ │ │ │ ├── values-w480dp-v13.json │ │ │ │ │ │ ├── values-w500dp-v13.json │ │ │ │ │ │ ├── values-w600dp-v13.json │ │ │ │ │ │ ├── values-w720dp-v13.json │ │ │ │ │ │ ├── values-xlarge-land-v4.json │ │ │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ │ │ ├── values-zh-rCN.json │ │ │ │ │ │ ├── values-zh-rHK.json │ │ │ │ │ │ ├── values-zh-rTW.json │ │ │ │ │ │ ├── values-zu.json │ │ │ │ │ │ └── values.json │ │ │ │ │ └── single │ │ │ │ │ │ ├── anim.json │ │ │ │ │ │ ├── color-v11.json │ │ │ │ │ │ ├── color-v23.json │ │ │ │ │ │ ├── color.json │ │ │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17.json │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17.json │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17.json │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17.json │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17.json │ │ │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ │ │ ├── drawable-v21.json │ │ │ │ │ │ ├── drawable-v23.json │ │ │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ │ │ ├── drawable-xxxhdpi-v4.json │ │ │ │ │ │ ├── drawable.json │ │ │ │ │ │ └── layout.json │ │ │ │ │ └── release │ │ │ │ │ ├── multi │ │ │ │ │ ├── values-af.json │ │ │ │ │ ├── values-am.json │ │ │ │ │ ├── values-ar.json │ │ │ │ │ ├── values-az-rAZ.json │ │ │ │ │ ├── values-bg.json │ │ │ │ │ ├── values-bn-rBD.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-rUS.json │ │ │ │ │ ├── values-es.json │ │ │ │ │ ├── values-et-rEE.json │ │ │ │ │ ├── values-eu-rES.json │ │ │ │ │ ├── values-fa.json │ │ │ │ │ ├── values-fi.json │ │ │ │ │ ├── values-fr-rCA.json │ │ │ │ │ ├── values-fr.json │ │ │ │ │ ├── values-gl-rES.json │ │ │ │ │ ├── values-gu-rIN.json │ │ │ │ │ ├── values-h320dp-v13.json │ │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ │ ├── values-hi.json │ │ │ │ │ ├── values-hr.json │ │ │ │ │ ├── values-hu.json │ │ │ │ │ ├── values-hy-rAM.json │ │ │ │ │ ├── values-in.json │ │ │ │ │ ├── values-is-rIS.json │ │ │ │ │ ├── values-it.json │ │ │ │ │ ├── values-iw.json │ │ │ │ │ ├── values-ja.json │ │ │ │ │ ├── values-ka-rGE.json │ │ │ │ │ ├── values-kk-rKZ.json │ │ │ │ │ ├── values-km-rKH.json │ │ │ │ │ ├── values-kn-rIN.json │ │ │ │ │ ├── values-ko.json │ │ │ │ │ ├── values-ky-rKG.json │ │ │ │ │ ├── values-land.json │ │ │ │ │ ├── values-large-v4.json │ │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ │ ├── values-lo-rLA.json │ │ │ │ │ ├── values-lt.json │ │ │ │ │ ├── values-lv.json │ │ │ │ │ ├── values-mk-rMK.json │ │ │ │ │ ├── values-ml-rIN.json │ │ │ │ │ ├── values-mn-rMN.json │ │ │ │ │ ├── values-mr-rIN.json │ │ │ │ │ ├── values-ms-rMY.json │ │ │ │ │ ├── values-my-rMM.json │ │ │ │ │ ├── values-nb.json │ │ │ │ │ ├── values-ne-rNP.json │ │ │ │ │ ├── values-night-v8.json │ │ │ │ │ ├── values-nl.json │ │ │ │ │ ├── values-pa-rIN.json │ │ │ │ │ ├── values-pl.json │ │ │ │ │ ├── values-port.json │ │ │ │ │ ├── values-pt-rBR.json │ │ │ │ │ ├── values-pt-rPT.json │ │ │ │ │ ├── values-pt.json │ │ │ │ │ ├── values-ro.json │ │ │ │ │ ├── values-ru.json │ │ │ │ │ ├── values-si-rLK.json │ │ │ │ │ ├── values-sk.json │ │ │ │ │ ├── values-sl.json │ │ │ │ │ ├── values-sq-rAL.json │ │ │ │ │ ├── values-sr.json │ │ │ │ │ ├── values-sv.json │ │ │ │ │ ├── values-sw.json │ │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ │ ├── values-ta-rIN.json │ │ │ │ │ ├── values-te-rIN.json │ │ │ │ │ ├── values-th.json │ │ │ │ │ ├── values-tl.json │ │ │ │ │ ├── values-tr.json │ │ │ │ │ ├── values-uk.json │ │ │ │ │ ├── values-ur-rPK.json │ │ │ │ │ ├── values-uz-rUZ.json │ │ │ │ │ ├── values-v11.json │ │ │ │ │ ├── values-v12.json │ │ │ │ │ ├── values-v13.json │ │ │ │ │ ├── values-v14.json │ │ │ │ │ ├── values-v17.json │ │ │ │ │ ├── values-v18.json │ │ │ │ │ ├── values-v21.json │ │ │ │ │ ├── values-v22.json │ │ │ │ │ ├── values-v23.json │ │ │ │ │ ├── values-vi.json │ │ │ │ │ ├── values-w360dp-v13.json │ │ │ │ │ ├── values-w480dp-v13.json │ │ │ │ │ ├── values-w500dp-v13.json │ │ │ │ │ ├── values-w600dp-v13.json │ │ │ │ │ ├── values-w720dp-v13.json │ │ │ │ │ ├── values-xlarge-land-v4.json │ │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ │ ├── values-zh-rCN.json │ │ │ │ │ ├── values-zh-rHK.json │ │ │ │ │ ├── values-zh-rTW.json │ │ │ │ │ ├── values-zu.json │ │ │ │ │ └── values.json │ │ │ │ │ └── single │ │ │ │ │ ├── anim.json │ │ │ │ │ ├── color-v11.json │ │ │ │ │ ├── color-v23.json │ │ │ │ │ ├── color.json │ │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17.json │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17.json │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17.json │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17.json │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17.json │ │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ │ ├── drawable-v21.json │ │ │ │ │ ├── drawable-v23.json │ │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ │ ├── drawable-xxxhdpi-v4.json │ │ │ │ │ ├── drawable.json │ │ │ │ │ └── layout.json │ │ │ ├── bundles │ │ │ │ ├── debug │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_pressed.png │ │ │ │ │ │ ├── lcim_chat_icon_voice0.png │ │ │ │ │ │ ├── lcim_chat_icon_voice1.png │ │ │ │ │ │ ├── lcim_chat_icon_voice2.png │ │ │ │ │ │ ├── lcim_chat_icon_voice3.png │ │ │ │ │ │ ├── lcim_chat_icon_voice4.png │ │ │ │ │ │ ├── lcim_chat_icon_voice5.png │ │ │ │ │ │ ├── lcim_chat_item_left_bg.9.png │ │ │ │ │ │ ├── lcim_chat_item_location_default.9.png │ │ │ │ │ │ ├── lcim_chat_item_right_bg.9.png │ │ │ │ │ │ ├── lcim_chat_resend_normal.png │ │ │ │ │ │ ├── lcim_chat_resend_pressed.png │ │ │ │ │ │ ├── lcim_chat_top_voice_bg.9.png │ │ │ │ │ │ ├── lcim_chat_voice_bg.9.png │ │ │ │ │ │ ├── lcim_chat_voice_bg_pressed.9.png │ │ │ │ │ │ ├── lcim_chat_voice_left.png │ │ │ │ │ │ ├── lcim_chat_voice_left1.png │ │ │ │ │ │ ├── lcim_chat_voice_left2.png │ │ │ │ │ │ ├── lcim_chat_voice_left3.png │ │ │ │ │ │ ├── lcim_chat_voice_right.png │ │ │ │ │ │ ├── lcim_chat_voice_right1.png │ │ │ │ │ │ ├── lcim_chat_voice_right2.png │ │ │ │ │ │ ├── lcim_chat_voice_right3.png │ │ │ │ │ │ ├── lcim_default_avatar_icon.png │ │ │ │ │ │ ├── lcim_group_icon.png │ │ │ │ │ │ ├── lcim_record_icon_voice0.png │ │ │ │ │ │ ├── lcim_record_icon_voice1.png │ │ │ │ │ │ ├── lcim_record_icon_voice2.png │ │ │ │ │ │ ├── lcim_record_icon_voice3.png │ │ │ │ │ │ ├── lcim_record_icon_voice4.png │ │ │ │ │ │ └── lcim_record_icon_voice5.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_bg.xml │ │ │ │ │ │ ├── lcim_chat_anim_voice_left.xml │ │ │ │ │ │ ├── lcim_chat_anim_voice_right.xml │ │ │ │ │ │ ├── lcim_chat_record_button_round_background.xml │ │ │ │ │ │ ├── lcim_chat_resend_bg.xml │ │ │ │ │ │ ├── lcim_read_badge.xml │ │ │ │ │ │ └── lcim_textview_bg.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── lcim_bottom_bar_action_layout.xml │ │ │ │ │ │ ├── lcim_bottom_bar_more_layout.xml │ │ │ │ │ │ ├── lcim_bottom_bar_text_layout.xml │ │ │ │ │ │ ├── lcim_chat_image_brower_layout.xml │ │ │ │ │ │ ├── lcim_chat_input_bottom_bar_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_image_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_left_audio_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_left_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_left_text_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_location.xml │ │ │ │ │ │ ├── lcim_chat_item_right_audio_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_right_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_right_text_layout.xml │ │ │ │ │ │ ├── lcim_chat_record_layout.xml │ │ │ │ │ │ ├── lcim_common_footer_item_layout.xml │ │ │ │ │ │ ├── lcim_common_header_item_layout.xml │ │ │ │ │ │ ├── lcim_conversation_activity.xml │ │ │ │ │ │ ├── lcim_conversation_fragment.xml │ │ │ │ │ │ ├── lcim_conversation_item.xml │ │ │ │ │ │ ├── lcim_conversation_list_fragment.xml │ │ │ │ │ │ └── lcim_load_more_footer_layout.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── release │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── lcim_bottom_bar_action_button_normal.png │ │ │ │ │ ├── lcim_bottom_bar_action_button_pressed.png │ │ │ │ │ ├── lcim_bottom_bar_camera_button_normal.png │ │ │ │ │ ├── lcim_bottom_bar_camera_button_pressed.png │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_normal.png │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_pressed.png │ │ │ │ │ ├── lcim_bottom_bar_location_button_normal.png │ │ │ │ │ ├── lcim_bottom_bar_location_button_pressed.png │ │ │ │ │ ├── lcim_bottom_bar_picture_button_normal.png │ │ │ │ │ ├── lcim_bottom_bar_picture_button_pressed.png │ │ │ │ │ ├── lcim_bottom_bar_send_button_normal.png │ │ │ │ │ ├── lcim_bottom_bar_send_button_pressed.png │ │ │ │ │ ├── lcim_bottom_bar_voice_button_normal.png │ │ │ │ │ ├── lcim_bottom_bar_voice_button_pressed.png │ │ │ │ │ ├── lcim_chat_icon_voice0.png │ │ │ │ │ ├── lcim_chat_icon_voice1.png │ │ │ │ │ ├── lcim_chat_icon_voice2.png │ │ │ │ │ ├── lcim_chat_icon_voice3.png │ │ │ │ │ ├── lcim_chat_icon_voice4.png │ │ │ │ │ ├── lcim_chat_icon_voice5.png │ │ │ │ │ ├── lcim_chat_item_left_bg.9.png │ │ │ │ │ ├── lcim_chat_item_location_default.9.png │ │ │ │ │ ├── lcim_chat_item_right_bg.9.png │ │ │ │ │ ├── lcim_chat_resend_normal.png │ │ │ │ │ ├── lcim_chat_resend_pressed.png │ │ │ │ │ ├── lcim_chat_top_voice_bg.9.png │ │ │ │ │ ├── lcim_chat_voice_bg.9.png │ │ │ │ │ ├── lcim_chat_voice_bg_pressed.9.png │ │ │ │ │ ├── lcim_chat_voice_left.png │ │ │ │ │ ├── lcim_chat_voice_left1.png │ │ │ │ │ ├── lcim_chat_voice_left2.png │ │ │ │ │ ├── lcim_chat_voice_left3.png │ │ │ │ │ ├── lcim_chat_voice_right.png │ │ │ │ │ ├── lcim_chat_voice_right1.png │ │ │ │ │ ├── lcim_chat_voice_right2.png │ │ │ │ │ ├── lcim_chat_voice_right3.png │ │ │ │ │ ├── lcim_default_avatar_icon.png │ │ │ │ │ ├── lcim_group_icon.png │ │ │ │ │ ├── lcim_record_icon_voice0.png │ │ │ │ │ ├── lcim_record_icon_voice1.png │ │ │ │ │ ├── lcim_record_icon_voice2.png │ │ │ │ │ ├── lcim_record_icon_voice3.png │ │ │ │ │ ├── lcim_record_icon_voice4.png │ │ │ │ │ └── lcim_record_icon_voice5.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── lcim_bottom_bar_action_button_bg.xml │ │ │ │ │ ├── lcim_bottom_bar_camera_button_bg.xml │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_bg.xml │ │ │ │ │ ├── lcim_bottom_bar_location_button_bg.xml │ │ │ │ │ ├── lcim_bottom_bar_picture_button_bg.xml │ │ │ │ │ ├── lcim_bottom_bar_send_button_bg.xml │ │ │ │ │ ├── lcim_bottom_bar_voice_button_bg.xml │ │ │ │ │ ├── lcim_chat_anim_voice_left.xml │ │ │ │ │ ├── lcim_chat_anim_voice_right.xml │ │ │ │ │ ├── lcim_chat_record_button_round_background.xml │ │ │ │ │ ├── lcim_chat_resend_bg.xml │ │ │ │ │ ├── lcim_read_badge.xml │ │ │ │ │ └── lcim_textview_bg.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── lcim_bottom_bar_action_layout.xml │ │ │ │ │ ├── lcim_bottom_bar_more_layout.xml │ │ │ │ │ ├── lcim_bottom_bar_text_layout.xml │ │ │ │ │ ├── lcim_chat_image_brower_layout.xml │ │ │ │ │ ├── lcim_chat_input_bottom_bar_layout.xml │ │ │ │ │ ├── lcim_chat_item_image_layout.xml │ │ │ │ │ ├── lcim_chat_item_left_audio_layout.xml │ │ │ │ │ ├── lcim_chat_item_left_layout.xml │ │ │ │ │ ├── lcim_chat_item_left_text_layout.xml │ │ │ │ │ ├── lcim_chat_item_location.xml │ │ │ │ │ ├── lcim_chat_item_right_audio_layout.xml │ │ │ │ │ ├── lcim_chat_item_right_layout.xml │ │ │ │ │ ├── lcim_chat_item_right_text_layout.xml │ │ │ │ │ ├── lcim_chat_record_layout.xml │ │ │ │ │ ├── lcim_common_footer_item_layout.xml │ │ │ │ │ ├── lcim_common_header_item_layout.xml │ │ │ │ │ ├── lcim_conversation_activity.xml │ │ │ │ │ ├── lcim_conversation_fragment.xml │ │ │ │ │ ├── lcim_conversation_item.xml │ │ │ │ │ ├── lcim_conversation_list_fragment.xml │ │ │ │ │ └── lcim_load_more_footer_layout.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── classes │ │ │ │ ├── debug │ │ │ │ │ ├── android │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── v7 │ │ │ │ │ │ │ ├── appcompat │ │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ │ └── recyclerview │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ ├── cn │ │ │ │ │ │ └── leancloud │ │ │ │ │ │ │ └── chatkit │ │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ │ ├── LCChatKit$1$1.class │ │ │ │ │ │ │ ├── LCChatKit$1.class │ │ │ │ │ │ │ ├── LCChatKit$2.class │ │ │ │ │ │ │ ├── LCChatKit.class │ │ │ │ │ │ │ ├── LCChatKitUser.class │ │ │ │ │ │ │ ├── LCChatProfileProvider.class │ │ │ │ │ │ │ ├── LCChatProfilesCallBack.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$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ │ ├── activity │ │ │ │ │ │ │ ├── LCIMConversationActivity$1.class │ │ │ │ │ │ │ ├── LCIMConversationActivity$2.class │ │ │ │ │ │ │ ├── LCIMConversationActivity.class │ │ │ │ │ │ │ ├── LCIMConversationFragment$1$1.class │ │ │ │ │ │ │ ├── LCIMConversationFragment$1.class │ │ │ │ │ │ │ ├── LCIMConversationFragment$2.class │ │ │ │ │ │ │ ├── LCIMConversationFragment$3.class │ │ │ │ │ │ │ ├── LCIMConversationFragment$4.class │ │ │ │ │ │ │ ├── LCIMConversationFragment.class │ │ │ │ │ │ │ ├── LCIMConversationListFragment.class │ │ │ │ │ │ │ └── LCIMImageActivity.class │ │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ │ ├── LCIMChatAdapter.class │ │ │ │ │ │ │ └── LCIMCommonListAdapter.class │ │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ ├── LCIMConversationItem.class │ │ │ │ │ │ │ ├── LCIMConversationItemCache$1$1.class │ │ │ │ │ │ │ ├── LCIMConversationItemCache$1.class │ │ │ │ │ │ │ ├── LCIMConversationItemCache.class │ │ │ │ │ │ │ ├── LCIMLocalCacheUtils$1.class │ │ │ │ │ │ │ ├── LCIMLocalCacheUtils$DownLoadCallback.class │ │ │ │ │ │ │ ├── LCIMLocalCacheUtils.class │ │ │ │ │ │ │ ├── LCIMLocalStorage$1.class │ │ │ │ │ │ │ ├── LCIMLocalStorage$2.class │ │ │ │ │ │ │ ├── LCIMLocalStorage$3.class │ │ │ │ │ │ │ ├── LCIMLocalStorage$4.class │ │ │ │ │ │ │ ├── LCIMLocalStorage.class │ │ │ │ │ │ │ ├── LCIMProfileCache$1.class │ │ │ │ │ │ │ ├── LCIMProfileCache$2.class │ │ │ │ │ │ │ ├── LCIMProfileCache$3.class │ │ │ │ │ │ │ ├── LCIMProfileCache$4.class │ │ │ │ │ │ │ ├── LCIMProfileCache$5.class │ │ │ │ │ │ │ └── LCIMProfileCache.class │ │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ ├── LCIMConnectionChangeEvent.class │ │ │ │ │ │ │ ├── LCIMIMTypeMessageEvent.class │ │ │ │ │ │ │ ├── LCIMInputBottomBarEvent.class │ │ │ │ │ │ │ ├── LCIMInputBottomBarLocationClickEvent.class │ │ │ │ │ │ │ ├── LCIMInputBottomBarRecordEvent.class │ │ │ │ │ │ │ ├── LCIMInputBottomBarTextEvent.class │ │ │ │ │ │ │ ├── LCIMLocationItemClickEvent.class │ │ │ │ │ │ │ ├── LCIMMessageResendEvent.class │ │ │ │ │ │ │ └── LCIMOfflineMessageCountChangeEvent.class │ │ │ │ │ │ │ ├── handler │ │ │ │ │ │ │ ├── LCIMClientEventHandler.class │ │ │ │ │ │ │ ├── LCIMConversationHandler.class │ │ │ │ │ │ │ ├── LCIMMessageHandler$1.class │ │ │ │ │ │ │ └── LCIMMessageHandler.class │ │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ ├── LCIMAudioHelper$1.class │ │ │ │ │ │ │ ├── LCIMAudioHelper.class │ │ │ │ │ │ │ ├── LCIMConstants.class │ │ │ │ │ │ │ ├── LCIMConversationUtils$1.class │ │ │ │ │ │ │ ├── LCIMConversationUtils.class │ │ │ │ │ │ │ ├── LCIMLogUtils.class │ │ │ │ │ │ │ ├── LCIMNotificationUtils.class │ │ │ │ │ │ │ ├── LCIMPathUtils.class │ │ │ │ │ │ │ └── LCIMSoftInputUtils.class │ │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── LCIMDividerItemDecoration.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$1.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$10.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$2.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$3.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$4.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$5$1.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$5.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$6.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$7.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$8.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar$9.class │ │ │ │ │ │ │ ├── LCIMInputBottomBar.class │ │ │ │ │ │ │ ├── LCIMPlayButton$1.class │ │ │ │ │ │ │ ├── LCIMPlayButton.class │ │ │ │ │ │ │ ├── LCIMRecordButton$1.class │ │ │ │ │ │ │ ├── LCIMRecordButton$ObtainDecibelThread.class │ │ │ │ │ │ │ ├── LCIMRecordButton$RecordEventListener.class │ │ │ │ │ │ │ ├── LCIMRecordButton$ShowVolumeHandler.class │ │ │ │ │ │ │ └── LCIMRecordButton.class │ │ │ │ │ │ │ └── viewholder │ │ │ │ │ │ │ ├── LCIMChatItemAudioHolder.class │ │ │ │ │ │ │ ├── LCIMChatItemHolder$1.class │ │ │ │ │ │ │ ├── LCIMChatItemHolder$2.class │ │ │ │ │ │ │ ├── LCIMChatItemHolder$3.class │ │ │ │ │ │ │ ├── LCIMChatItemHolder$4.class │ │ │ │ │ │ │ ├── LCIMChatItemHolder.class │ │ │ │ │ │ │ ├── LCIMChatItemImageHolder$1.class │ │ │ │ │ │ │ ├── LCIMChatItemImageHolder.class │ │ │ │ │ │ │ ├── LCIMChatItemLocationHolder$1.class │ │ │ │ │ │ │ ├── LCIMChatItemLocationHolder.class │ │ │ │ │ │ │ ├── LCIMChatItemTextHolder.class │ │ │ │ │ │ │ ├── LCIMCommonViewHolder$ViewHolderCreator.class │ │ │ │ │ │ │ ├── LCIMCommonViewHolder.class │ │ │ │ │ │ │ ├── LCIMConversationItemHolder$1.class │ │ │ │ │ │ │ ├── LCIMConversationItemHolder$2.class │ │ │ │ │ │ │ ├── LCIMConversationItemHolder$3.class │ │ │ │ │ │ │ ├── LCIMConversationItemHolder$4.class │ │ │ │ │ │ │ ├── LCIMConversationItemHolder$5$1.class │ │ │ │ │ │ │ ├── LCIMConversationItemHolder$5.class │ │ │ │ │ │ │ ├── LCIMConversationItemHolder$6.class │ │ │ │ │ │ │ ├── LCIMConversationItemHolder$7.class │ │ │ │ │ │ │ └── LCIMConversationItemHolder.class │ │ │ │ │ └── com │ │ │ │ │ │ └── avos │ │ │ │ │ │ └── avospush │ │ │ │ │ │ ├── R$raw.class │ │ │ │ │ │ └── R.class │ │ │ │ └── release │ │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ └── v7 │ │ │ │ │ │ ├── appcompat │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ └── recyclerview │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ ├── cn │ │ │ │ │ └── leancloud │ │ │ │ │ │ └── chatkit │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── LCChatKit$1$1.class │ │ │ │ │ │ ├── LCChatKit$1.class │ │ │ │ │ │ ├── LCChatKit$2.class │ │ │ │ │ │ ├── LCChatKit.class │ │ │ │ │ │ ├── LCChatKitUser.class │ │ │ │ │ │ ├── LCChatProfileProvider.class │ │ │ │ │ │ ├── LCChatProfilesCallBack.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$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ ├── activity │ │ │ │ │ │ ├── LCIMConversationActivity$1.class │ │ │ │ │ │ ├── LCIMConversationActivity$2.class │ │ │ │ │ │ ├── LCIMConversationActivity.class │ │ │ │ │ │ ├── LCIMConversationFragment$1$1.class │ │ │ │ │ │ ├── LCIMConversationFragment$1.class │ │ │ │ │ │ ├── LCIMConversationFragment$2.class │ │ │ │ │ │ ├── LCIMConversationFragment$3.class │ │ │ │ │ │ ├── LCIMConversationFragment$4.class │ │ │ │ │ │ ├── LCIMConversationFragment.class │ │ │ │ │ │ ├── LCIMConversationListFragment.class │ │ │ │ │ │ └── LCIMImageActivity.class │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── LCIMChatAdapter.class │ │ │ │ │ │ └── LCIMCommonListAdapter.class │ │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── LCIMConversationItem.class │ │ │ │ │ │ ├── LCIMConversationItemCache$1$1.class │ │ │ │ │ │ ├── LCIMConversationItemCache$1.class │ │ │ │ │ │ ├── LCIMConversationItemCache.class │ │ │ │ │ │ ├── LCIMLocalCacheUtils$1.class │ │ │ │ │ │ ├── LCIMLocalCacheUtils$DownLoadCallback.class │ │ │ │ │ │ ├── LCIMLocalCacheUtils.class │ │ │ │ │ │ ├── LCIMLocalStorage$1.class │ │ │ │ │ │ ├── LCIMLocalStorage$2.class │ │ │ │ │ │ ├── LCIMLocalStorage$3.class │ │ │ │ │ │ ├── LCIMLocalStorage$4.class │ │ │ │ │ │ ├── LCIMLocalStorage.class │ │ │ │ │ │ ├── LCIMProfileCache$1.class │ │ │ │ │ │ ├── LCIMProfileCache$2.class │ │ │ │ │ │ ├── LCIMProfileCache$3.class │ │ │ │ │ │ ├── LCIMProfileCache$4.class │ │ │ │ │ │ ├── LCIMProfileCache$5.class │ │ │ │ │ │ └── LCIMProfileCache.class │ │ │ │ │ │ ├── event │ │ │ │ │ │ ├── LCIMConnectionChangeEvent.class │ │ │ │ │ │ ├── LCIMIMTypeMessageEvent.class │ │ │ │ │ │ ├── LCIMInputBottomBarEvent.class │ │ │ │ │ │ ├── LCIMInputBottomBarLocationClickEvent.class │ │ │ │ │ │ ├── LCIMInputBottomBarRecordEvent.class │ │ │ │ │ │ ├── LCIMInputBottomBarTextEvent.class │ │ │ │ │ │ ├── LCIMLocationItemClickEvent.class │ │ │ │ │ │ ├── LCIMMessageResendEvent.class │ │ │ │ │ │ └── LCIMOfflineMessageCountChangeEvent.class │ │ │ │ │ │ ├── handler │ │ │ │ │ │ ├── LCIMClientEventHandler.class │ │ │ │ │ │ ├── LCIMConversationHandler.class │ │ │ │ │ │ ├── LCIMMessageHandler$1.class │ │ │ │ │ │ └── LCIMMessageHandler.class │ │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── LCIMAudioHelper$1.class │ │ │ │ │ │ ├── LCIMAudioHelper.class │ │ │ │ │ │ ├── LCIMConstants.class │ │ │ │ │ │ ├── LCIMConversationUtils$1.class │ │ │ │ │ │ ├── LCIMConversationUtils.class │ │ │ │ │ │ ├── LCIMLogUtils.class │ │ │ │ │ │ ├── LCIMNotificationUtils.class │ │ │ │ │ │ ├── LCIMPathUtils.class │ │ │ │ │ │ └── LCIMSoftInputUtils.class │ │ │ │ │ │ ├── view │ │ │ │ │ │ ├── LCIMDividerItemDecoration.class │ │ │ │ │ │ ├── LCIMInputBottomBar$1.class │ │ │ │ │ │ ├── LCIMInputBottomBar$10.class │ │ │ │ │ │ ├── LCIMInputBottomBar$2.class │ │ │ │ │ │ ├── LCIMInputBottomBar$3.class │ │ │ │ │ │ ├── LCIMInputBottomBar$4.class │ │ │ │ │ │ ├── LCIMInputBottomBar$5$1.class │ │ │ │ │ │ ├── LCIMInputBottomBar$5.class │ │ │ │ │ │ ├── LCIMInputBottomBar$6.class │ │ │ │ │ │ ├── LCIMInputBottomBar$7.class │ │ │ │ │ │ ├── LCIMInputBottomBar$8.class │ │ │ │ │ │ ├── LCIMInputBottomBar$9.class │ │ │ │ │ │ ├── LCIMInputBottomBar.class │ │ │ │ │ │ ├── LCIMPlayButton$1.class │ │ │ │ │ │ ├── LCIMPlayButton.class │ │ │ │ │ │ ├── LCIMRecordButton$1.class │ │ │ │ │ │ ├── LCIMRecordButton$ObtainDecibelThread.class │ │ │ │ │ │ ├── LCIMRecordButton$RecordEventListener.class │ │ │ │ │ │ ├── LCIMRecordButton$ShowVolumeHandler.class │ │ │ │ │ │ └── LCIMRecordButton.class │ │ │ │ │ │ └── viewholder │ │ │ │ │ │ ├── LCIMChatItemAudioHolder.class │ │ │ │ │ │ ├── LCIMChatItemHolder$1.class │ │ │ │ │ │ ├── LCIMChatItemHolder$2.class │ │ │ │ │ │ ├── LCIMChatItemHolder$3.class │ │ │ │ │ │ ├── LCIMChatItemHolder$4.class │ │ │ │ │ │ ├── LCIMChatItemHolder.class │ │ │ │ │ │ ├── LCIMChatItemImageHolder$1.class │ │ │ │ │ │ ├── LCIMChatItemImageHolder.class │ │ │ │ │ │ ├── LCIMChatItemLocationHolder$1.class │ │ │ │ │ │ ├── LCIMChatItemLocationHolder.class │ │ │ │ │ │ ├── LCIMChatItemTextHolder.class │ │ │ │ │ │ ├── LCIMCommonViewHolder$ViewHolderCreator.class │ │ │ │ │ │ ├── LCIMCommonViewHolder.class │ │ │ │ │ │ ├── LCIMConversationItemHolder$1.class │ │ │ │ │ │ ├── LCIMConversationItemHolder$2.class │ │ │ │ │ │ ├── LCIMConversationItemHolder$3.class │ │ │ │ │ │ ├── LCIMConversationItemHolder$4.class │ │ │ │ │ │ ├── LCIMConversationItemHolder$5$1.class │ │ │ │ │ │ ├── LCIMConversationItemHolder$5.class │ │ │ │ │ │ ├── LCIMConversationItemHolder$6.class │ │ │ │ │ │ ├── LCIMConversationItemHolder$7.class │ │ │ │ │ │ └── LCIMConversationItemHolder.class │ │ │ │ │ └── com │ │ │ │ │ └── avos │ │ │ │ │ └── avospush │ │ │ │ │ ├── R$raw.class │ │ │ │ │ └── R.class │ │ │ ├── exploded-aar │ │ │ │ ├── cn.leancloud.android │ │ │ │ │ └── avoscloud-push │ │ │ │ │ │ └── v3.13.15 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ └── com.android.support │ │ │ │ │ ├── animated-vector-drawable │ │ │ │ │ └── 23.4.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── appcompat-v7 │ │ │ │ │ └── 23.4.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ └── abc_slide_out_top.xml │ │ │ │ │ │ ├── color-v11 │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ └── abc_color_highlight_material.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ └── abc_edit_text_material.xml │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ ├── abc_dialog_material_background_dark.xml │ │ │ │ │ │ ├── abc_dialog_material_background_light.xml │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ ├── abc_ratingbar_full_material.xml │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ └── abc_textfield_search_material.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ ├── notification_template_lines.xml │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ └── values-bn-rBD.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-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ │ ├── values-h320dp-v13 │ │ │ │ │ │ └── values-h320dp-v13.xml │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ │ ├── values-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-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-w360dp-v13 │ │ │ │ │ │ └── values-w360dp-v13.xml │ │ │ │ │ │ ├── values-w480dp-v13 │ │ │ │ │ │ └── values-w480dp-v13.xml │ │ │ │ │ │ ├── values-w500dp-v13 │ │ │ │ │ │ └── values-w500dp-v13.xml │ │ │ │ │ │ ├── values-w600dp-v13 │ │ │ │ │ │ └── values-w600dp-v13.xml │ │ │ │ │ │ ├── values-w720dp-v13 │ │ │ │ │ │ └── values-w720dp-v13.xml │ │ │ │ │ │ ├── values-xlarge-land-v4 │ │ │ │ │ │ └── values-xlarge-land-v4.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 │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── recyclerview-v7 │ │ │ │ │ └── 23.1.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── support-v4 │ │ │ │ │ └── 23.4.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ └── android │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ ├── MediaMetadataCompat.aidl │ │ │ │ │ │ │ ├── RatingCompat.aidl │ │ │ │ │ │ │ └── session │ │ │ │ │ │ │ │ ├── MediaSessionCompat.aidl │ │ │ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl │ │ │ │ │ │ │ │ └── PlaybackStateCompat.aidl │ │ │ │ │ │ │ └── os │ │ │ │ │ │ │ └── ResultReceiver.aidl │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ └── jars │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── libs │ │ │ │ │ │ └── internal_impl-23.4.0.jar │ │ │ │ │ └── support-vector-drawable │ │ │ │ │ └── 23.4.0 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ └── jars │ │ │ │ │ └── classes.jar │ │ │ ├── incremental-safeguard │ │ │ │ ├── debug │ │ │ │ │ └── tag.txt │ │ │ │ └── release │ │ │ │ │ └── tag.txt │ │ │ ├── incremental │ │ │ │ ├── compileDebugAidl │ │ │ │ │ └── dependency.store │ │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ │ └── dependency.store │ │ │ │ ├── compileReleaseAidl │ │ │ │ │ └── dependency.store │ │ │ │ ├── mergeDebugAndroidTestAssets │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeDebugAndroidTestShaders │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeDebugAssets │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeDebugResources │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeDebugShaders │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeReleaseAssets │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeReleaseJniLibFolders │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeReleaseResources │ │ │ │ │ └── merger.xml │ │ │ │ ├── mergeReleaseShaders │ │ │ │ │ └── merger.xml │ │ │ │ ├── packageDebugResources │ │ │ │ │ └── merger.xml │ │ │ │ └── packageReleaseResources │ │ │ │ │ └── merger.xml │ │ │ ├── manifest │ │ │ │ └── androidTest │ │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── res │ │ │ │ ├── merged │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ │ └── abc_slide_out_top.xml │ │ │ │ │ │ │ ├── color-v11 │ │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ │ └── abc_color_highlight_material.xml │ │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ └── abc_edit_text_material.xml │ │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_pressed.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice0.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice1.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice2.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice3.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice4.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice5.png │ │ │ │ │ │ │ ├── lcim_chat_item_left_bg.9.png │ │ │ │ │ │ │ ├── lcim_chat_item_location_default.9.png │ │ │ │ │ │ │ ├── lcim_chat_item_right_bg.9.png │ │ │ │ │ │ │ ├── lcim_chat_resend_normal.png │ │ │ │ │ │ │ ├── lcim_chat_resend_pressed.png │ │ │ │ │ │ │ ├── lcim_chat_top_voice_bg.9.png │ │ │ │ │ │ │ ├── lcim_chat_voice_bg.9.png │ │ │ │ │ │ │ ├── lcim_chat_voice_bg_pressed.9.png │ │ │ │ │ │ │ ├── lcim_chat_voice_left.png │ │ │ │ │ │ │ ├── lcim_chat_voice_left1.png │ │ │ │ │ │ │ ├── lcim_chat_voice_left2.png │ │ │ │ │ │ │ ├── lcim_chat_voice_left3.png │ │ │ │ │ │ │ ├── lcim_chat_voice_right.png │ │ │ │ │ │ │ ├── lcim_chat_voice_right1.png │ │ │ │ │ │ │ ├── lcim_chat_voice_right2.png │ │ │ │ │ │ │ ├── lcim_chat_voice_right3.png │ │ │ │ │ │ │ ├── lcim_default_avatar_icon.png │ │ │ │ │ │ │ ├── lcim_group_icon.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice0.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice1.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice2.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice3.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice4.png │ │ │ │ │ │ │ └── lcim_record_icon_voice5.png │ │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ │ ├── abc_dialog_material_background_dark.xml │ │ │ │ │ │ │ ├── abc_dialog_material_background_light.xml │ │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ │ ├── abc_ratingbar_full_material.xml │ │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_bg.xml │ │ │ │ │ │ │ ├── lcim_chat_anim_voice_left.xml │ │ │ │ │ │ │ ├── lcim_chat_anim_voice_right.xml │ │ │ │ │ │ │ ├── lcim_chat_record_button_round_background.xml │ │ │ │ │ │ │ ├── lcim_chat_resend_bg.xml │ │ │ │ │ │ │ ├── lcim_read_badge.xml │ │ │ │ │ │ │ └── lcim_textview_bg.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_action_layout.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_more_layout.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_text_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_image_brower_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_input_bottom_bar_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_image_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_left_audio_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_left_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_left_text_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_location.xml │ │ │ │ │ │ │ ├── lcim_chat_item_right_audio_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_right_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_right_text_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_record_layout.xml │ │ │ │ │ │ │ ├── lcim_common_footer_item_layout.xml │ │ │ │ │ │ │ ├── lcim_common_header_item_layout.xml │ │ │ │ │ │ │ ├── lcim_conversation_activity.xml │ │ │ │ │ │ │ ├── lcim_conversation_fragment.xml │ │ │ │ │ │ │ ├── lcim_conversation_item.xml │ │ │ │ │ │ │ ├── lcim_conversation_list_fragment.xml │ │ │ │ │ │ │ ├── lcim_load_more_footer_layout.xml │ │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ │ ├── notification_template_lines.xml │ │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ │ └── values-bn-rBD.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-rUS │ │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ │ │ ├── values-h320dp-v13 │ │ │ │ │ │ │ └── values-h320dp-v13.xml │ │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ │ │ ├── values-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-vi │ │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ │ ├── values-w360dp-v13 │ │ │ │ │ │ │ └── values-w360dp-v13.xml │ │ │ │ │ │ │ ├── values-w480dp-v13 │ │ │ │ │ │ │ └── values-w480dp-v13.xml │ │ │ │ │ │ │ ├── values-w500dp-v13 │ │ │ │ │ │ │ └── values-w500dp-v13.xml │ │ │ │ │ │ │ ├── values-w600dp-v13 │ │ │ │ │ │ │ └── values-w600dp-v13.xml │ │ │ │ │ │ │ ├── values-w720dp-v13 │ │ │ │ │ │ │ └── values-w720dp-v13.xml │ │ │ │ │ │ │ ├── values-xlarge-land-v4 │ │ │ │ │ │ │ └── values-xlarge-land-v4.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 │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ │ └── abc_slide_out_top.xml │ │ │ │ │ │ ├── color-v11 │ │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ │ └── abc_color_highlight_material.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ └── abc_edit_text_material.xml │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_pressed.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_normal.png │ │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_pressed.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice0.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice1.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice2.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice3.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice4.png │ │ │ │ │ │ │ ├── lcim_chat_icon_voice5.png │ │ │ │ │ │ │ ├── lcim_chat_item_left_bg.9.png │ │ │ │ │ │ │ ├── lcim_chat_item_location_default.9.png │ │ │ │ │ │ │ ├── lcim_chat_item_right_bg.9.png │ │ │ │ │ │ │ ├── lcim_chat_resend_normal.png │ │ │ │ │ │ │ ├── lcim_chat_resend_pressed.png │ │ │ │ │ │ │ ├── lcim_chat_top_voice_bg.9.png │ │ │ │ │ │ │ ├── lcim_chat_voice_bg.9.png │ │ │ │ │ │ │ ├── lcim_chat_voice_bg_pressed.9.png │ │ │ │ │ │ │ ├── lcim_chat_voice_left.png │ │ │ │ │ │ │ ├── lcim_chat_voice_left1.png │ │ │ │ │ │ │ ├── lcim_chat_voice_left2.png │ │ │ │ │ │ │ ├── lcim_chat_voice_left3.png │ │ │ │ │ │ │ ├── lcim_chat_voice_right.png │ │ │ │ │ │ │ ├── lcim_chat_voice_right1.png │ │ │ │ │ │ │ ├── lcim_chat_voice_right2.png │ │ │ │ │ │ │ ├── lcim_chat_voice_right3.png │ │ │ │ │ │ │ ├── lcim_default_avatar_icon.png │ │ │ │ │ │ │ ├── lcim_group_icon.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice0.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice1.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice2.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice3.png │ │ │ │ │ │ │ ├── lcim_record_icon_voice4.png │ │ │ │ │ │ │ └── lcim_record_icon_voice5.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ │ ├── abc_dialog_material_background_dark.xml │ │ │ │ │ │ │ ├── abc_dialog_material_background_light.xml │ │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ │ ├── abc_ratingbar_full_material.xml │ │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_bg.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_bg.xml │ │ │ │ │ │ │ ├── lcim_chat_anim_voice_left.xml │ │ │ │ │ │ │ ├── lcim_chat_anim_voice_right.xml │ │ │ │ │ │ │ ├── lcim_chat_record_button_round_background.xml │ │ │ │ │ │ │ ├── lcim_chat_resend_bg.xml │ │ │ │ │ │ │ ├── lcim_read_badge.xml │ │ │ │ │ │ │ └── lcim_textview_bg.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_action_layout.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_more_layout.xml │ │ │ │ │ │ │ ├── lcim_bottom_bar_text_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_image_brower_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_input_bottom_bar_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_image_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_left_audio_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_left_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_left_text_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_location.xml │ │ │ │ │ │ │ ├── lcim_chat_item_right_audio_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_right_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_item_right_text_layout.xml │ │ │ │ │ │ │ ├── lcim_chat_record_layout.xml │ │ │ │ │ │ │ ├── lcim_common_footer_item_layout.xml │ │ │ │ │ │ │ ├── lcim_common_header_item_layout.xml │ │ │ │ │ │ │ ├── lcim_conversation_activity.xml │ │ │ │ │ │ │ ├── lcim_conversation_fragment.xml │ │ │ │ │ │ │ ├── lcim_conversation_item.xml │ │ │ │ │ │ │ ├── lcim_conversation_list_fragment.xml │ │ │ │ │ │ │ ├── lcim_load_more_footer_layout.xml │ │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ │ ├── notification_template_lines.xml │ │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ │ └── values-bn-rBD.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-rUS │ │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ │ ├── values-h320dp-v13 │ │ │ │ │ │ │ └── values-h320dp-v13.xml │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ │ ├── values-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-vi │ │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-w360dp-v13 │ │ │ │ │ │ │ └── values-w360dp-v13.xml │ │ │ │ │ │ ├── values-w480dp-v13 │ │ │ │ │ │ │ └── values-w480dp-v13.xml │ │ │ │ │ │ ├── values-w500dp-v13 │ │ │ │ │ │ │ └── values-w500dp-v13.xml │ │ │ │ │ │ ├── values-w600dp-v13 │ │ │ │ │ │ │ └── values-w600dp-v13.xml │ │ │ │ │ │ ├── values-w720dp-v13 │ │ │ │ │ │ │ └── values-w720dp-v13.xml │ │ │ │ │ │ ├── values-xlarge-land-v4 │ │ │ │ │ │ │ └── values-xlarge-land-v4.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 │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ └── release │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ └── abc_slide_out_top.xml │ │ │ │ │ │ ├── color-v11 │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ └── abc_color_highlight_material.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ └── abc_edit_text_material.xml │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_pressed.png │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_normal.png │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_pressed.png │ │ │ │ │ │ ├── lcim_chat_icon_voice0.png │ │ │ │ │ │ ├── lcim_chat_icon_voice1.png │ │ │ │ │ │ ├── lcim_chat_icon_voice2.png │ │ │ │ │ │ ├── lcim_chat_icon_voice3.png │ │ │ │ │ │ ├── lcim_chat_icon_voice4.png │ │ │ │ │ │ ├── lcim_chat_icon_voice5.png │ │ │ │ │ │ ├── lcim_chat_item_left_bg.9.png │ │ │ │ │ │ ├── lcim_chat_item_location_default.9.png │ │ │ │ │ │ ├── lcim_chat_item_right_bg.9.png │ │ │ │ │ │ ├── lcim_chat_resend_normal.png │ │ │ │ │ │ ├── lcim_chat_resend_pressed.png │ │ │ │ │ │ ├── lcim_chat_top_voice_bg.9.png │ │ │ │ │ │ ├── lcim_chat_voice_bg.9.png │ │ │ │ │ │ ├── lcim_chat_voice_bg_pressed.9.png │ │ │ │ │ │ ├── lcim_chat_voice_left.png │ │ │ │ │ │ ├── lcim_chat_voice_left1.png │ │ │ │ │ │ ├── lcim_chat_voice_left2.png │ │ │ │ │ │ ├── lcim_chat_voice_left3.png │ │ │ │ │ │ ├── lcim_chat_voice_right.png │ │ │ │ │ │ ├── lcim_chat_voice_right1.png │ │ │ │ │ │ ├── lcim_chat_voice_right2.png │ │ │ │ │ │ ├── lcim_chat_voice_right3.png │ │ │ │ │ │ ├── lcim_default_avatar_icon.png │ │ │ │ │ │ ├── lcim_group_icon.png │ │ │ │ │ │ ├── lcim_record_icon_voice0.png │ │ │ │ │ │ ├── lcim_record_icon_voice1.png │ │ │ │ │ │ ├── lcim_record_icon_voice2.png │ │ │ │ │ │ ├── lcim_record_icon_voice3.png │ │ │ │ │ │ ├── lcim_record_icon_voice4.png │ │ │ │ │ │ └── lcim_record_icon_voice5.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ ├── abc_dialog_material_background_dark.xml │ │ │ │ │ │ ├── abc_dialog_material_background_light.xml │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ ├── abc_ratingbar_full_material.xml │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ │ ├── lcim_bottom_bar_action_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_camera_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_keyboard_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_location_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_picture_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_send_button_bg.xml │ │ │ │ │ │ ├── lcim_bottom_bar_voice_button_bg.xml │ │ │ │ │ │ ├── lcim_chat_anim_voice_left.xml │ │ │ │ │ │ ├── lcim_chat_anim_voice_right.xml │ │ │ │ │ │ ├── lcim_chat_record_button_round_background.xml │ │ │ │ │ │ ├── lcim_chat_resend_bg.xml │ │ │ │ │ │ ├── lcim_read_badge.xml │ │ │ │ │ │ └── lcim_textview_bg.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ ├── lcim_bottom_bar_action_layout.xml │ │ │ │ │ │ ├── lcim_bottom_bar_more_layout.xml │ │ │ │ │ │ ├── lcim_bottom_bar_text_layout.xml │ │ │ │ │ │ ├── lcim_chat_image_brower_layout.xml │ │ │ │ │ │ ├── lcim_chat_input_bottom_bar_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_image_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_left_audio_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_left_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_left_text_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_location.xml │ │ │ │ │ │ ├── lcim_chat_item_right_audio_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_right_layout.xml │ │ │ │ │ │ ├── lcim_chat_item_right_text_layout.xml │ │ │ │ │ │ ├── lcim_chat_record_layout.xml │ │ │ │ │ │ ├── lcim_common_footer_item_layout.xml │ │ │ │ │ │ ├── lcim_common_header_item_layout.xml │ │ │ │ │ │ ├── lcim_conversation_activity.xml │ │ │ │ │ │ ├── lcim_conversation_fragment.xml │ │ │ │ │ │ ├── lcim_conversation_item.xml │ │ │ │ │ │ ├── lcim_conversation_list_fragment.xml │ │ │ │ │ │ ├── lcim_load_more_footer_layout.xml │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ ├── notification_template_lines.xml │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ └── values-bn-rBD.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-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ │ ├── values-h320dp-v13 │ │ │ │ │ │ └── values-h320dp-v13.xml │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ │ ├── values-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-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-w360dp-v13 │ │ │ │ │ │ └── values-w360dp-v13.xml │ │ │ │ │ │ ├── values-w480dp-v13 │ │ │ │ │ │ └── values-w480dp-v13.xml │ │ │ │ │ │ ├── values-w500dp-v13 │ │ │ │ │ │ └── values-w500dp-v13.xml │ │ │ │ │ │ ├── values-w600dp-v13 │ │ │ │ │ │ └── values-w600dp-v13.xml │ │ │ │ │ │ ├── values-w720dp-v13 │ │ │ │ │ │ └── values-w720dp-v13.xml │ │ │ │ │ │ ├── values-xlarge-land-v4 │ │ │ │ │ │ └── values-xlarge-land-v4.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 │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── resources-debug-androidTest.ap_ │ │ │ └── symbols │ │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── R.txt │ │ └── outputs │ │ │ └── aar │ │ │ ├── leancloudchatkit-debug.aar │ │ │ └── leancloudchatkit-release.aar │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── cn │ │ │ └── leancloud │ │ │ └── chatkit │ │ │ ├── LCChatKit.java │ │ │ ├── LCChatKitUser.java │ │ │ ├── LCChatProfileProvider.java │ │ │ ├── LCChatProfilesCallBack.java │ │ │ ├── activity │ │ │ ├── LCIMConversationActivity.java │ │ │ ├── LCIMConversationFragment.java │ │ │ ├── LCIMConversationListFragment.java │ │ │ └── LCIMImageActivity.java │ │ │ ├── adapter │ │ │ ├── LCIMChatAdapter.java │ │ │ └── LCIMCommonListAdapter.java │ │ │ ├── cache │ │ │ ├── LCIMConversationItem.java │ │ │ ├── LCIMConversationItemCache.java │ │ │ ├── LCIMLocalCacheUtils.java │ │ │ ├── LCIMLocalStorage.java │ │ │ └── LCIMProfileCache.java │ │ │ ├── event │ │ │ ├── LCIMConnectionChangeEvent.java │ │ │ ├── LCIMIMTypeMessageEvent.java │ │ │ ├── LCIMInputBottomBarEvent.java │ │ │ ├── LCIMInputBottomBarLocationClickEvent.java │ │ │ ├── LCIMInputBottomBarRecordEvent.java │ │ │ ├── LCIMInputBottomBarTextEvent.java │ │ │ ├── LCIMLocationItemClickEvent.java │ │ │ ├── LCIMMessageResendEvent.java │ │ │ └── LCIMOfflineMessageCountChangeEvent.java │ │ │ ├── handler │ │ │ ├── LCIMClientEventHandler.java │ │ │ ├── LCIMConversationHandler.java │ │ │ └── LCIMMessageHandler.java │ │ │ ├── utils │ │ │ ├── LCIMAudioHelper.java │ │ │ ├── LCIMConstants.java │ │ │ ├── LCIMConversationUtils.java │ │ │ ├── LCIMLogUtils.java │ │ │ ├── LCIMNotificationUtils.java │ │ │ ├── LCIMPathUtils.java │ │ │ └── LCIMSoftInputUtils.java │ │ │ ├── view │ │ │ ├── LCIMDividerItemDecoration.java │ │ │ ├── LCIMInputBottomBar.java │ │ │ ├── LCIMPlayButton.java │ │ │ └── LCIMRecordButton.java │ │ │ └── viewholder │ │ │ ├── LCIMChatItemAudioHolder.java │ │ │ ├── LCIMChatItemHolder.java │ │ │ ├── LCIMChatItemImageHolder.java │ │ │ ├── LCIMChatItemLocationHolder.java │ │ │ ├── LCIMChatItemTextHolder.java │ │ │ ├── LCIMCommonViewHolder.java │ │ │ └── LCIMConversationItemHolder.java │ │ └── res │ │ ├── drawable-xhdpi │ │ ├── lcim_bottom_bar_action_button_normal.png │ │ ├── lcim_bottom_bar_action_button_pressed.png │ │ ├── lcim_bottom_bar_camera_button_normal.png │ │ ├── lcim_bottom_bar_camera_button_pressed.png │ │ ├── lcim_bottom_bar_keyboard_button_normal.png │ │ ├── lcim_bottom_bar_keyboard_button_pressed.png │ │ ├── lcim_bottom_bar_location_button_normal.png │ │ ├── lcim_bottom_bar_location_button_pressed.png │ │ ├── lcim_bottom_bar_picture_button_normal.png │ │ ├── lcim_bottom_bar_picture_button_pressed.png │ │ ├── lcim_bottom_bar_send_button_normal.png │ │ ├── lcim_bottom_bar_send_button_pressed.png │ │ ├── lcim_bottom_bar_voice_button_normal.png │ │ ├── lcim_bottom_bar_voice_button_pressed.png │ │ ├── lcim_chat_icon_voice0.png │ │ ├── lcim_chat_icon_voice1.png │ │ ├── lcim_chat_icon_voice2.png │ │ ├── lcim_chat_icon_voice3.png │ │ ├── lcim_chat_icon_voice4.png │ │ ├── lcim_chat_icon_voice5.png │ │ ├── lcim_chat_item_left_bg.9.png │ │ ├── lcim_chat_item_location_default.9.png │ │ ├── lcim_chat_item_right_bg.9.png │ │ ├── lcim_chat_resend_normal.png │ │ ├── lcim_chat_resend_pressed.png │ │ ├── lcim_chat_top_voice_bg.9.png │ │ ├── lcim_chat_voice_bg.9.png │ │ ├── lcim_chat_voice_bg_pressed.9.png │ │ ├── lcim_chat_voice_left.png │ │ ├── lcim_chat_voice_left1.png │ │ ├── lcim_chat_voice_left2.png │ │ ├── lcim_chat_voice_left3.png │ │ ├── lcim_chat_voice_right.png │ │ ├── lcim_chat_voice_right1.png │ │ ├── lcim_chat_voice_right2.png │ │ ├── lcim_chat_voice_right3.png │ │ ├── lcim_default_avatar_icon.png │ │ ├── lcim_group_icon.png │ │ ├── lcim_record_icon_voice0.png │ │ ├── lcim_record_icon_voice1.png │ │ ├── lcim_record_icon_voice2.png │ │ ├── lcim_record_icon_voice3.png │ │ ├── lcim_record_icon_voice4.png │ │ └── lcim_record_icon_voice5.png │ │ ├── drawable │ │ ├── lcim_bottom_bar_action_button_bg.xml │ │ ├── lcim_bottom_bar_camera_button_bg.xml │ │ ├── lcim_bottom_bar_keyboard_button_bg.xml │ │ ├── lcim_bottom_bar_location_button_bg.xml │ │ ├── lcim_bottom_bar_picture_button_bg.xml │ │ ├── lcim_bottom_bar_send_button_bg.xml │ │ ├── lcim_bottom_bar_voice_button_bg.xml │ │ ├── lcim_chat_anim_voice_left.xml │ │ ├── lcim_chat_anim_voice_right.xml │ │ ├── lcim_chat_record_button_round_background.xml │ │ ├── lcim_chat_resend_bg.xml │ │ ├── lcim_read_badge.xml │ │ └── lcim_textview_bg.xml │ │ ├── layout │ │ ├── lcim_bottom_bar_action_layout.xml │ │ ├── lcim_bottom_bar_more_layout.xml │ │ ├── lcim_bottom_bar_text_layout.xml │ │ ├── lcim_chat_image_brower_layout.xml │ │ ├── lcim_chat_input_bottom_bar_layout.xml │ │ ├── lcim_chat_item_image_layout.xml │ │ ├── lcim_chat_item_left_audio_layout.xml │ │ ├── lcim_chat_item_left_layout.xml │ │ ├── lcim_chat_item_left_text_layout.xml │ │ ├── lcim_chat_item_location.xml │ │ ├── lcim_chat_item_right_audio_layout.xml │ │ ├── lcim_chat_item_right_layout.xml │ │ ├── lcim_chat_item_right_text_layout.xml │ │ ├── lcim_chat_record_layout.xml │ │ ├── lcim_common_footer_item_layout.xml │ │ ├── lcim_common_header_item_layout.xml │ │ ├── lcim_conversation_activity.xml │ │ ├── lcim_conversation_fragment.xml │ │ ├── lcim_conversation_item.xml │ │ ├── lcim_conversation_list_fragment.xml │ │ └── lcim_load_more_footer_layout.xml │ │ └── values │ │ ├── lcim_attrs.xml │ │ ├── lcim_colors.xml │ │ ├── lcim_dimens.xml │ │ ├── lcim_strings.xml │ │ └── lcim_styles.xml └── settings.gradle ├── README.md ├── iOS ├── FreeChat.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── FreeChat │ ├── AVUser+Avatar.h │ ├── AVUser+Avatar.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── ChangeNameViewController.h │ ├── ChangeNameViewController.m │ ├── Constrains.h │ ├── Constrains.m │ ├── ContactsViewController.h │ ├── ContactsViewController.m │ ├── ConversationDetailViewController.h │ ├── ConversationDetailViewController.m │ ├── ConversationListViewController.h │ ├── ConversationListViewController.m │ ├── ConversationUtils.h │ ├── ConversationUtils.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_29@2x.png │ │ │ ├── icon_29@3x.png │ │ │ ├── icon_40@2x.png │ │ │ ├── icon_40@3x.png │ │ │ ├── icon_60@2x.png │ │ │ └── icon_60@3x.png │ ├── Info.plist │ ├── LoginViewController.h │ ├── LoginViewController.m │ ├── MainViewController.h │ ├── MainViewController.m │ ├── OpenConversationViewController.h │ ├── OpenConversationViewController.m │ ├── SettingsViewController.h │ ├── SettingsViewController.m │ ├── SignupViewController.h │ ├── SignupViewController.m │ ├── images │ │ ├── Chat_record_circle.png │ │ ├── Chat_take_picture.png │ │ ├── Contacts@2x.png │ │ ├── Recents@2x.png │ │ ├── add_member.png │ │ ├── chat_animation1.png │ │ ├── chat_animation2.png │ │ ├── chat_animation3.png │ │ ├── chat_animation_white1.png │ │ ├── chat_animation_white2.png │ │ ├── chat_animation_white3.png │ │ ├── chat_ipunt_message.png │ │ ├── chat_message_back.png │ │ ├── chat_send_message.png │ │ ├── chat_voice_record.png │ │ ├── chatfrom_bg_normal.png │ │ ├── chatfrom_doctor_icon.png │ │ ├── chatto_bg_normal.png │ │ ├── default_avatar.png │ │ ├── default_avatar_mal.png │ │ ├── group@2x.png │ │ ├── openchat@2x.png │ │ └── setting@2x.png │ ├── main.m │ ├── model │ │ ├── AVUserStore.h │ │ ├── AVUserStore.m │ │ ├── ConversationStore.h │ │ ├── ConversationStore.m │ │ ├── UserProfile.h │ │ └── UserProfile.m │ ├── third-parties │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperation.m │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPRequestOperationManager.m │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFHTTPSessionManager.m │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFSecurityPolicy.m │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLConnectionOperation.m │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLRequestSerialization.m │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLResponseSerialization.m │ │ │ ├── AFURLSessionManager.h │ │ │ └── AFURLSessionManager.m │ │ ├── LeanCloudFeedback │ │ │ ├── Info.plist │ │ │ ├── LCHttpClient.h │ │ │ ├── LCHttpClient.m │ │ │ ├── LCUserFeedback.h │ │ │ ├── LCUserFeedback.m │ │ │ ├── LCUserFeedbackAgent.h │ │ │ ├── LCUserFeedbackAgent.m │ │ │ ├── LCUserFeedbackLeftCell.h │ │ │ ├── LCUserFeedbackLeftCell.m │ │ │ ├── LCUserFeedbackRightCell.h │ │ │ ├── LCUserFeedbackRightCell.m │ │ │ ├── LCUserFeedbackThread.h │ │ │ ├── LCUserFeedbackThread.m │ │ │ ├── LCUserFeedbackViewController.h │ │ │ ├── LCUserFeedbackViewController.m │ │ │ ├── LCUserFeedback_Internal.h │ │ │ ├── LCUtils.h │ │ │ ├── LCUtils.m │ │ │ ├── LeanCloudFeedback.h │ │ │ ├── back@2x.png │ │ │ ├── bg_1@2x.png │ │ │ ├── bg_2@2x.png │ │ │ ├── btn_feedback@2x.png │ │ │ ├── btn_feedback_new@2x.png │ │ │ └── warning@2x.png │ │ └── UIKit+AFNetworking │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.m │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.m │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.m │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.m │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.m │ │ │ ├── UIWebView+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.m │ ├── utils │ │ ├── MessageDisplayer.h │ │ ├── MessageDisplayer.m │ │ ├── NSDate+Utils.h │ │ └── NSDate+Utils.m │ └── view │ │ ├── ConversationMemberGroupView.h │ │ ├── ConversationMemberGroupView.m │ │ ├── ConversationMuteView.h │ │ └── ConversationMuteView.m ├── FreeChatTests │ ├── FreeChatTests.m │ └── Info.plist ├── Podfile └── Podfile.lock └── images ├── FreeChat.png ├── main.png ├── 最新消息.png ├── 群聊列表.png ├── 聊天室.jpg ├── 聊天室详情.png ├── 联系人.png └── 设置.png /Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /Android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 7 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/classes.jar -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice0.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice4.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_icon_voice5.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_item_left_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_item_left_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_item_right_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_item_right_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_resend_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_resend_normal.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_resend_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_resend_pressed.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_top_voice_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_top_voice_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_bg_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_bg_pressed.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_left.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_left1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_left1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_left2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_left2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_left3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_left3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_right.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_right1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_right1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_right2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_right2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_right3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_chat_voice_right3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_default_avatar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_default_avatar_icon.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_group_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_group_icon.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice0.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice4.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/lcim_record_icon_voice5.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/classes.jar -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice0.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice4.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_icon_voice5.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_item_left_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_item_left_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_item_right_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_item_right_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_resend_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_resend_normal.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_resend_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_resend_pressed.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_top_voice_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_top_voice_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_left.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_left1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_left1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_left2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_left2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_left3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_left3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_right.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_right1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_right1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_right2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_right2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_right3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_chat_voice_right3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_default_avatar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_default_avatar_icon.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_group_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_group_icon.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice0.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice4.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/bundles/release/res/drawable-xhdpi-v4/lcim_record_icon_voice5.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/BuildConfig.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKit$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKit$1$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKit$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKit$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKit$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKit$2.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKit.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKit.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKitUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatKitUser.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatProfileProvider.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatProfileProvider.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatProfilesCallBack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/LCChatProfilesCallBack.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$anim.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$attr.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$bool.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$color.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$dimen.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$drawable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$id.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$integer.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$layout.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$string.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$style.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$styleable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/activity/LCIMImageActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/activity/LCIMImageActivity.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/adapter/LCIMChatAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/adapter/LCIMChatAdapter.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMConversationItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMConversationItem.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalCacheUtils$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalCacheUtils$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalCacheUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalCacheUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage$2.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage$3.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage$4.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMLocalStorage.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$2.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$3.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$4.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache$5.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/cache/LCIMProfileCache.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/handler/LCIMMessageHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/handler/LCIMMessageHandler.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMAudioHelper$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMAudioHelper$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMAudioHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMAudioHelper.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMConstants.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMConversationUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMConversationUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMLogUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMLogUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMNotificationUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMNotificationUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMPathUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMPathUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMSoftInputUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/utils/LCIMSoftInputUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$10.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$10.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$2.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$3.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$4.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$5$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$5$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$5.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$6.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$7.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$8.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar$9.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMInputBottomBar.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMPlayButton$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMPlayButton$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMPlayButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMPlayButton.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMRecordButton$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMRecordButton$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMRecordButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/view/LCIMRecordButton.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/com/avos/avospush/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/com/avos/avospush/R$raw.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/com/avos/avospush/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/debug/com/avos/avospush/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R$attr.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R$dimen.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R$id.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R$styleable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/android/support/v7/recyclerview/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/BuildConfig.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKit$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKit$1$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKit$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKit$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKit$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKit$2.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKit.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKit.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKitUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatKitUser.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatProfileProvider.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatProfileProvider.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatProfilesCallBack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/LCChatProfilesCallBack.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$anim.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$attr.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$bool.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$color.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$dimen.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$drawable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$id.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$integer.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$layout.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$string.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$style.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R$styleable.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/adapter/LCIMChatAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/adapter/LCIMChatAdapter.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalCacheUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalCacheUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage$2.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage$3.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage$4.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMLocalStorage.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$2.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$3.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$4.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache$5.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/cache/LCIMProfileCache.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMAudioHelper$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMAudioHelper$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMAudioHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMAudioHelper.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMConstants.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMLogUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMLogUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMPathUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMPathUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMSoftInputUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/utils/LCIMSoftInputUtils.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$2.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$3.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$4.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$5.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$6.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$7.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$8.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar$9.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMInputBottomBar.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMPlayButton$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMPlayButton$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMPlayButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMPlayButton.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMRecordButton$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMRecordButton$1.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMRecordButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/view/LCIMRecordButton.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/com/avos/avospush/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/com/avos/avospush/R$raw.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/com/avos/avospush/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/classes/release/com/avos/avospush/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/cn.leancloud.android/avoscloud-push/v3.13.15/R.txt: -------------------------------------------------------------------------------- 1 | int raw avoscloud_us_ssl 0x7f020000 2 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/annotations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/annotations.zip -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h320dp-v13/values-h320dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-h720dp-v13/values-h720dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54dip 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-port/values-port.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v13/values-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-v18/values-v18.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0px 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w360dp-v13/values-w360dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 3 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w500dp-v13/values-w500dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-w720dp-v13/values-w720dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.4.0/res/values-xlarge-land-v4/values-xlarge-land-v4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 256dip 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/annotations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/annotations.zip -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/exploded-aar/com.android.support/support-v4/23.4.0/jars/classes.jar -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental-safeguard/debug/tag.txt: -------------------------------------------------------------------------------- 1 | incremental task execution -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental-safeguard/release/tag.txt: -------------------------------------------------------------------------------- 1 | incremental task execution -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/compileReleaseAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/lcim_group_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/5e56aa7a8d0be034a18334b89b707e679b2761d1/Android/leancloudchatkit/build/intermediates/res/merged/androidTest/debug/drawable-xhdpi-v4/lcim_group_icon.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/androidTest/debug/values-h320dp-v13/values-h320dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/androidTest/debug/values-h720dp-v13/values-h720dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54dip 4 | -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/androidTest/debug/values-ldltr-v21/values-ldltr-v21.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |