├── 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/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/build.gradle -------------------------------------------------------------------------------- /Android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/app/src/androidTest/java/com/leancloud/freechat/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/androidTest/java/com/leancloud/freechat/ApplicationTest.java -------------------------------------------------------------------------------- /Android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/Application.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/ContactFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/ContactFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/LeanProfileProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/LeanProfileProvider.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/LoginActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/MainActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/MyContactsRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/MyContactsRecyclerViewAdapter.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/OpenRoomFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/OpenRoomFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/OpenRoomRecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/OpenRoomRecyclerViewAdapter.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/SignupActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/SignupActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/leancloud/freechat/dummy/DummyContent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/java/com/leancloud/freechat/dummy/DummyContent.java -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_signup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/layout/activity_signup.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/fragment_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/layout/fragment_contact.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/fragment_contact_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/layout/fragment_contact_list.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/fragment_openroom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/layout/fragment_openroom.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/fragment_openroom_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/layout/fragment_openroom_list.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/app/src/test/java/com/leancloud/freechat/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/app/src/test/java/com/leancloud/freechat/ExampleUnitTest.java -------------------------------------------------------------------------------- /Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/build.gradle -------------------------------------------------------------------------------- /Android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/gradle.properties -------------------------------------------------------------------------------- /Android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/gradlew -------------------------------------------------------------------------------- /Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/gradlew.bat -------------------------------------------------------------------------------- /Android/leancloudchatkit/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build.gradle -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/generated/source/r/debug/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/generated/source/r/debug/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/generated/source/r/debug/cn/leancloud/chatkit/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/generated/source/r/debug/cn/leancloud/chatkit/R.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/generated/source/r/debug/com/avos/avospush/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/generated/source/r/debug/com/avos/avospush/R.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/generated/source/r/release/cn/leancloud/chatkit/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/generated/source/r/release/cn/leancloud/chatkit/R.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/generated/source/r/release/com/avos/avospush/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/generated/source/r/release/com/avos/avospush/R.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/androidTest/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/androidTest/debug/multi/values.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/androidTest/debug/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/androidTest/debug/single/anim.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/androidTest/debug/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/androidTest/debug/single/color.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/androidTest/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/androidTest/debug/single/layout.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-af.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-am.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ar.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-az-rAZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-az-rAZ.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-bg.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-bn-rBD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-bn-rBD.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ca.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-cs.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-da.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-de.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-el.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-en-rAU.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-en-rGB.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-en-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-es-rUS.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-es.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-et-rEE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-et-rEE.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-eu-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-eu-rES.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-fa.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-fi.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-fr-rCA.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-fr.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-gl-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-gl-rES.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-gu-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-gu-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-h320dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-h320dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hi.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hr.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hu.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hy-rAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-hy-rAM.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-in.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-is-rIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-is-rIS.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-it.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-iw.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ja.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ka-rGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ka-rGE.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-km-rKH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-km-rKH.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-kn-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-kn-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ko.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ky-rKG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ky-rKG.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-land.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-large-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-large-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-lo-rLA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-lo-rLA.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-lt.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-lv.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-mk-rMK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-mk-rMK.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ml-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ml-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-mn-rMN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-mn-rMN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-mr-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-mr-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ms-rMY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ms-rMY.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-my-rMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-my-rMM.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-nb.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ne-rNP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ne-rNP.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-night-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-night-v8.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-nl.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pa-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pa-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pl.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-port.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pt-rBR.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pt-rPT.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-pt.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ro.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ru.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-si-rLK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-si-rLK.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sk.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sl.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sq-rAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sq-rAL.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sr.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sv.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sw.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ta-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ta-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-te-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-te-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-th.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-tl.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-tr.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-uk.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ur-rPK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-ur-rPK.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v11.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v12.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v14.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v17.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v18.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v21.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v22.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-v23.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-vi.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-zh-rCN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-zh-rHK.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values-zu.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/multi/values.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/anim.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/color-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/color-v11.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/color-v23.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/color.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-v21.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-v23.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/drawable.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/debug/single/layout.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-af.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-am.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ar.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-az-rAZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-az-rAZ.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-bg.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-bn-rBD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-bn-rBD.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ca.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-cs.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-da.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-de.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-el.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-en-rAU.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-en-rGB.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-en-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-es-rUS.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-es.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-et-rEE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-et-rEE.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-eu-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-eu-rES.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-fa.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-fi.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-fr-rCA.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-fr.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-gl-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-gl-rES.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-gu-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-gu-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-h320dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-h320dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-h720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-h720dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hdpi-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hi.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hr.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hu.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hy-rAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-hy-rAM.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-in.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-is-rIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-is-rIS.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-it.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-iw.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ja.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ka-rGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ka-rGE.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-kk-rKZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-kk-rKZ.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-km-rKH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-km-rKH.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-kn-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-kn-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ko.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ky-rKG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ky-rKG.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-land.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-large-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-large-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ldltr-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ldltr-v21.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-lo-rLA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-lo-rLA.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-lt.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-lv.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-mk-rMK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-mk-rMK.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ml-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ml-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-mn-rMN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-mn-rMN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-mr-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-mr-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ms-rMY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ms-rMY.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-my-rMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-my-rMM.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-nb.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ne-rNP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ne-rNP.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-night-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-night-v8.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-nl.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pa-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pa-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pl.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-port.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pt-rBR.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pt-rPT.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-pt.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ro.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ru.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-si-rLK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-si-rLK.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sk.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sl.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sq-rAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sq-rAL.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sr.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sv.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-sw.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ta-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ta-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-te-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-te-rIN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-th.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-tl.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-tr.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-uk.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ur-rPK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-ur-rPK.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-uz-rUZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-uz-rUZ.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v11.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v12.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v14.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v17.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v18.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v21.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v22.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-v23.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-vi.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w360dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w360dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w480dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w480dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w500dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w500dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w600dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-w720dp-v13.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-xlarge-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-xlarge-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-zh-rCN.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-zh-rHK.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values-zu.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/multi/values.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/anim.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/color-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/color-v11.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/color-v23.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/color.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable-mdpi-v4.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable-v21.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable-v23.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/drawable.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/blame/res/release/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/blame/res/release/single/layout.json -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/debug/R.txt -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/aapt/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/debug/aapt/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/debug/classes.jar -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable/lcim_read_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/debug/res/drawable/lcim_read_badge.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/debug/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/debug/res/values/values.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/release/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/release/R.txt -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/aapt/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/release/aapt/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/release/classes.jar -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/bundles/release/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/bundles/release/res/values/values.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R$id.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/classes/debug/cn/leancloud/chatkit/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/debug/com/avos/avospush/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/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/HEAD/Android/leancloudchatkit/build/intermediates/classes/debug/com/avos/avospush/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/classes/release/cn/leancloud/chatkit/R.class -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/classes/release/com/avos/avospush/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/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/HEAD/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/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/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/incremental/mergeDebugAssets/merger.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/mergeDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/incremental/mergeDebugResources/merger.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/incremental/mergeDebugShaders/merger.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/mergeReleaseAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/incremental/mergeReleaseAssets/merger.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/mergeReleaseResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/incremental/mergeReleaseResources/merger.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/mergeReleaseShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/incremental/mergeReleaseShaders/merger.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/packageDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/incremental/packageDebugResources/merger.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/incremental/packageReleaseResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/incremental/packageReleaseResources/merger.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/androidTest/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/androidTest/debug/values/values.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/drawable/lcim_read_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/drawable/lcim_read_badge.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/drawable/lcim_textview_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/drawable/lcim_textview_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/layout/abc_search_view.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-af/values-af.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-am/values-am.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ar/values-ar.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-bg/values-bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ca/values-ca.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-cs/values-cs.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-da/values-da.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-de/values-de.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-el/values-el.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-es/values-es.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-fa/values-fa.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-fi/values-fi.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-fr/values-fr.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-hi/values-hi.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-hr/values-hr.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-hu/values-hu.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-in/values-in.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-it/values-it.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-iw/values-iw.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ja/values-ja.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ko/values-ko.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-land/values-land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-land/values-land.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-lt/values-lt.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-lv/values-lv.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-nb/values-nb.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-nl/values-nl.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-pl/values-pl.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-port/values-port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-port/values-port.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-pt/values-pt.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ro/values-ro.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-ru/values-ru.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sk/values-sk.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sl/values-sl.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sr/values-sr.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sv/values-sv.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-sw/values-sw.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-th/values-th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-th/values-th.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-tl/values-tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-tl/values-tl.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-tr/values-tr.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-uk/values-uk.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v11/values-v11.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v12/values-v12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v12/values-v12.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v13/values-v13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v13/values-v13.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v14/values-v14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v14/values-v14.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v17/values-v17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v17/values-v17.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v18/values-v18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v18/values-v18.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v21/values-v21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v21/values-v21.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v22/values-v22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v22/values-v22.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v23/values-v23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-v23/values-v23.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-vi/values-vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-vi/values-vi.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values-zu/values-zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values-zu/values-zu.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/debug/values/values.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/layout/abc_search_view.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-af/values-af.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-am/values-am.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-ar/values-ar.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-bg/values-bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-ca/values-ca.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-cs/values-cs.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-da/values-da.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-de/values-de.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-el/values-el.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-es/values-es.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-fa/values-fa.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-fi/values-fi.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-fr/values-fr.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-hi/values-hi.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-hr/values-hr.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-hu/values-hu.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-in/values-in.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-it/values-it.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-iw/values-iw.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-ja/values-ja.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-ko/values-ko.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-land/values-land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-land/values-land.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-lt/values-lt.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-lv/values-lv.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-nb/values-nb.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-nl/values-nl.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-pl/values-pl.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-port/values-port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-port/values-port.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-pt/values-pt.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-ro/values-ro.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-ru/values-ru.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-sk/values-sk.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-sl/values-sl.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-sr/values-sr.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-sv/values-sv.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-sw/values-sw.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-th/values-th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-th/values-th.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-tl/values-tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-tl/values-tl.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-tr/values-tr.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-uk/values-uk.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-v11/values-v11.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-v12/values-v12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-v12/values-v12.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-v13/values-v13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-v13/values-v13.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-v14/values-v14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-v14/values-v14.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-v17/values-v17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-v17/values-v17.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-vi/values-vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-vi/values-vi.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values-zu/values-zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values-zu/values-zu.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/merged/release/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/merged/release/values/values.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/intermediates/symbols/androidTest/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/intermediates/symbols/androidTest/debug/R.txt -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/outputs/aar/leancloudchatkit-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/outputs/aar/leancloudchatkit-debug.aar -------------------------------------------------------------------------------- /Android/leancloudchatkit/build/outputs/aar/leancloudchatkit-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/build/outputs/aar/leancloudchatkit-release.aar -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/LCChatKit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/LCChatKit.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/LCChatKitUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/LCChatKitUser.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/LCChatProfileProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/LCChatProfileProvider.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/LCChatProfilesCallBack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/LCChatProfilesCallBack.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/adapter/LCIMChatAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/adapter/LCIMChatAdapter.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/cache/LCIMLocalStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/cache/LCIMLocalStorage.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/cache/LCIMProfileCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/cache/LCIMProfileCache.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/utils/LCIMAudioHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/utils/LCIMAudioHelper.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/utils/LCIMConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/utils/LCIMConstants.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/utils/LCIMLogUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/utils/LCIMLogUtils.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/utils/LCIMPathUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/utils/LCIMPathUtils.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/view/LCIMInputBottomBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/view/LCIMInputBottomBar.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/view/LCIMPlayButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/view/LCIMPlayButton.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/view/LCIMRecordButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/java/cn/leancloud/chatkit/view/LCIMRecordButton.java -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice0.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice4.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_icon_voice5.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_item_left_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_item_left_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_item_right_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_item_right_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_resend_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_resend_normal.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_resend_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_resend_pressed.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_top_voice_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_top_voice_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_bg.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_bg_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_bg_pressed.9.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_left.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_left1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_left1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_left2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_left2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_left3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_left3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_right.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_right1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_right1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_right2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_right2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_right3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_chat_voice_right3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_default_avatar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_default_avatar_icon.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_group_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_group_icon.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice0.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice1.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice2.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice3.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice4.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable-xhdpi/lcim_record_icon_voice5.png -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_action_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_action_button_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_camera_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_camera_button_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_keyboard_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_keyboard_button_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_location_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_location_button_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_picture_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_picture_button_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_send_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_send_button_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_voice_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_bottom_bar_voice_button_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_chat_anim_voice_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_chat_anim_voice_left.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_chat_anim_voice_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_chat_anim_voice_right.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_chat_resend_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_chat_resend_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_read_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_read_badge.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/drawable/lcim_textview_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/drawable/lcim_textview_bg.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_bottom_bar_action_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_bottom_bar_action_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_bottom_bar_more_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_bottom_bar_more_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_bottom_bar_text_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_bottom_bar_text_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_image_brower_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_image_brower_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_input_bottom_bar_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_input_bottom_bar_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_image_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_image_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_left_audio_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_left_audio_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_left_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_left_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_left_text_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_left_text_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_location.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_right_audio_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_right_audio_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_right_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_right_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_right_text_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_item_right_text_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_chat_record_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_chat_record_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_common_footer_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_common_footer_item_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_common_header_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_common_header_item_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_conversation_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_conversation_activity.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_conversation_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_conversation_fragment.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_conversation_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_conversation_item.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_conversation_list_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_conversation_list_fragment.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/layout/lcim_load_more_footer_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/layout/lcim_load_more_footer_layout.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/values/lcim_attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/values/lcim_attrs.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/values/lcim_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/values/lcim_colors.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/values/lcim_dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/values/lcim_dimens.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/values/lcim_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/values/lcim_strings.xml -------------------------------------------------------------------------------- /Android/leancloudchatkit/src/main/res/values/lcim_styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/leancloudchatkit/src/main/res/values/lcim_styles.xml -------------------------------------------------------------------------------- /Android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/Android/settings.gradle -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/README.md -------------------------------------------------------------------------------- /iOS/FreeChat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS/FreeChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS/FreeChat/AVUser+Avatar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/AVUser+Avatar.h -------------------------------------------------------------------------------- /iOS/FreeChat/AVUser+Avatar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/AVUser+Avatar.m -------------------------------------------------------------------------------- /iOS/FreeChat/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/AppDelegate.h -------------------------------------------------------------------------------- /iOS/FreeChat/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/AppDelegate.m -------------------------------------------------------------------------------- /iOS/FreeChat/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /iOS/FreeChat/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS/FreeChat/ChangeNameViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ChangeNameViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/ChangeNameViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ChangeNameViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/Constrains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Constrains.h -------------------------------------------------------------------------------- /iOS/FreeChat/Constrains.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Constrains.m -------------------------------------------------------------------------------- /iOS/FreeChat/ContactsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ContactsViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/ContactsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ContactsViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/ConversationDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ConversationDetailViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/ConversationDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ConversationDetailViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/ConversationListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ConversationListViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/ConversationListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ConversationListViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/ConversationUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ConversationUtils.h -------------------------------------------------------------------------------- /iOS/FreeChat/ConversationUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/ConversationUtils.m -------------------------------------------------------------------------------- /iOS/FreeChat/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_29@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_29@3x.png -------------------------------------------------------------------------------- /iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_40@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_40@3x.png -------------------------------------------------------------------------------- /iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_60@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Images.xcassets/AppIcon.appiconset/icon_60@3x.png -------------------------------------------------------------------------------- /iOS/FreeChat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/Info.plist -------------------------------------------------------------------------------- /iOS/FreeChat/LoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/LoginViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/LoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/LoginViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/MainViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/MainViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/OpenConversationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/OpenConversationViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/OpenConversationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/OpenConversationViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/SettingsViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/SettingsViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/SignupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/SignupViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/SignupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/SignupViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/images/Chat_record_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/Chat_record_circle.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/Chat_take_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/Chat_take_picture.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/Contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/Contacts@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/Recents@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/Recents@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/add_member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/add_member.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_animation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_animation1.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_animation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_animation2.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_animation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_animation3.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_animation_white1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_animation_white1.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_animation_white2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_animation_white2.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_animation_white3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_animation_white3.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_ipunt_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_ipunt_message.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_message_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_message_back.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_send_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_send_message.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chat_voice_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chat_voice_record.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chatfrom_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chatfrom_bg_normal.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chatfrom_doctor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chatfrom_doctor_icon.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/chatto_bg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/chatto_bg_normal.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/default_avatar.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/default_avatar_mal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/default_avatar_mal.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/group@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/openchat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/openchat@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/images/setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/images/setting@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/main.m -------------------------------------------------------------------------------- /iOS/FreeChat/model/AVUserStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/model/AVUserStore.h -------------------------------------------------------------------------------- /iOS/FreeChat/model/AVUserStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/model/AVUserStore.m -------------------------------------------------------------------------------- /iOS/FreeChat/model/ConversationStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/model/ConversationStore.h -------------------------------------------------------------------------------- /iOS/FreeChat/model/ConversationStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/model/ConversationStore.m -------------------------------------------------------------------------------- /iOS/FreeChat/model/UserProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/model/UserProfile.h -------------------------------------------------------------------------------- /iOS/FreeChat/model/UserProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/model/UserProfile.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFHTTPRequestOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFHTTPRequestOperation.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFHTTPRequestOperationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFHTTPRequestOperationManager.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFURLConnectionOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFURLConnectionOperation.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/Info.plist -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCHttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCHttpClient.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCHttpClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCHttpClient.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedback.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedback.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackAgent.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackAgent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackAgent.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackLeftCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackLeftCell.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackLeftCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackLeftCell.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackRightCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackRightCell.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackRightCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackRightCell.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackThread.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackThread.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackViewController.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedbackViewController.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedback_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUserFeedback_Internal.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUtils.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LCUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LCUtils.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/LeanCloudFeedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/LeanCloudFeedback.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/back@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/bg_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/bg_1@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/bg_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/bg_2@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/btn_feedback@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/btn_feedback@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/btn_feedback_new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/btn_feedback_new@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/LeanCloudFeedback/warning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/LeanCloudFeedback/warning@2x.png -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIAlertView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIAlertView+AFNetworking.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIButton+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIButton+AFNetworking.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIImageView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIImageView+AFNetworking.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIProgressView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIProgressView+AFNetworking.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIRefreshControl+AFNetworking.m -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /iOS/FreeChat/third-parties/UIKit+AFNetworking/UIWebView+AFNetworking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/third-parties/UIKit+AFNetworking/UIWebView+AFNetworking.m -------------------------------------------------------------------------------- /iOS/FreeChat/utils/MessageDisplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/utils/MessageDisplayer.h -------------------------------------------------------------------------------- /iOS/FreeChat/utils/MessageDisplayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/utils/MessageDisplayer.m -------------------------------------------------------------------------------- /iOS/FreeChat/utils/NSDate+Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/utils/NSDate+Utils.h -------------------------------------------------------------------------------- /iOS/FreeChat/utils/NSDate+Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/utils/NSDate+Utils.m -------------------------------------------------------------------------------- /iOS/FreeChat/view/ConversationMemberGroupView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/view/ConversationMemberGroupView.h -------------------------------------------------------------------------------- /iOS/FreeChat/view/ConversationMemberGroupView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/view/ConversationMemberGroupView.m -------------------------------------------------------------------------------- /iOS/FreeChat/view/ConversationMuteView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/view/ConversationMuteView.h -------------------------------------------------------------------------------- /iOS/FreeChat/view/ConversationMuteView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChat/view/ConversationMuteView.m -------------------------------------------------------------------------------- /iOS/FreeChatTests/FreeChatTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChatTests/FreeChatTests.m -------------------------------------------------------------------------------- /iOS/FreeChatTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/FreeChatTests/Info.plist -------------------------------------------------------------------------------- /iOS/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/Podfile -------------------------------------------------------------------------------- /iOS/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/iOS/Podfile.lock -------------------------------------------------------------------------------- /images/FreeChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/images/FreeChat.png -------------------------------------------------------------------------------- /images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/images/main.png -------------------------------------------------------------------------------- /images/最新消息.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/images/最新消息.png -------------------------------------------------------------------------------- /images/群聊列表.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/images/群聊列表.png -------------------------------------------------------------------------------- /images/聊天室.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/images/聊天室.jpg -------------------------------------------------------------------------------- /images/聊天室详情.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/images/聊天室详情.png -------------------------------------------------------------------------------- /images/联系人.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/images/联系人.png -------------------------------------------------------------------------------- /images/设置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwfing/FreeChat/HEAD/images/设置.png --------------------------------------------------------------------------------