├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── .travis.yml ├── .travis ├── before-cache.sh ├── before-ci.sh ├── before-install.sh ├── ci.sh └── install.sh ├── LICENSE.md ├── README.md ├── android ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── libraries │ │ ├── android_jsc_r174650.xml │ │ ├── appcompat_v7_23_0_1.xml │ │ ├── bolts_android_1_1_4.xml │ │ ├── commons_cli_1_2.xml │ │ ├── core_2_9_2.xml │ │ ├── drawee_0_8_1.xml │ │ ├── fbcore_0_8_1.xml │ │ ├── fresco_0_8_1.xml │ │ ├── imagepipeline_0_8_1.xml │ │ ├── imagepipeline_okhttp_0_8_1.xml │ │ ├── jackson_core_2_2_3.xml │ │ ├── jsr305_3_0_0.xml │ │ ├── library_2_4_0.xml │ │ ├── okhttp_2_5_0.xml │ │ ├── okhttp_ws_2_5_0.xml │ │ ├── okio_1_6_0.xml │ │ ├── react_native_0_20_1.xml │ │ ├── reactive_2_9_2.xml │ │ ├── recyclerview_v7_23_0_1.xml │ │ ├── reprint_spass_2_9_2.xml │ │ ├── stetho_1_2_0.xml │ │ ├── stetho_okhttp_1_2_0.xml │ │ ├── support_annotations_23_0_1.xml │ │ └── support_v4_23_0_1.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml ├── build.gradle ├── build │ ├── generated │ │ ├── mockable-android-23.jar │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── co │ │ │ │ │ └── eleken │ │ │ │ │ └── react_native_touch_id_android │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ ├── debug │ │ │ │ └── co │ │ │ │ │ └── eleken │ │ │ │ │ └── react_native_touch_id_android │ │ │ │ │ └── BuildConfig.java │ │ │ └── release │ │ │ │ └── co │ │ │ │ └── eleken │ │ │ │ └── react_native_touch_id_android │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ ├── androidTest │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ └── v7 │ │ │ │ │ ├── appcompat │ │ │ │ │ └── R.java │ │ │ │ │ └── recyclerview │ │ │ │ │ └── R.java │ │ │ │ ├── co │ │ │ │ └── eleken │ │ │ │ │ └── react_native_touch_id_android │ │ │ │ │ ├── R.java │ │ │ │ │ └── test │ │ │ │ │ └── R.java │ │ │ │ ├── com │ │ │ │ ├── facebook │ │ │ │ │ ├── drawee │ │ │ │ │ │ ├── R.java │ │ │ │ │ │ └── backends │ │ │ │ │ │ │ └── pipeline │ │ │ │ │ │ │ └── R.java │ │ │ │ │ └── react │ │ │ │ │ │ └── R.java │ │ │ │ └── github │ │ │ │ │ └── ajalt │ │ │ │ │ ├── library │ │ │ │ │ └── R.java │ │ │ │ │ └── reprint │ │ │ │ │ ├── module │ │ │ │ │ └── spass │ │ │ │ │ │ └── R.java │ │ │ │ │ └── reactive │ │ │ │ │ └── R.java │ │ │ │ └── org │ │ │ │ └── webkit │ │ │ │ └── android_jsc │ │ │ │ └── R.java │ │ │ ├── debug │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ └── v7 │ │ │ │ │ ├── appcompat │ │ │ │ │ └── R.java │ │ │ │ │ └── recyclerview │ │ │ │ │ └── R.java │ │ │ ├── co │ │ │ │ └── eleken │ │ │ │ │ └── react_native_touch_id_android │ │ │ │ │ └── R.java │ │ │ ├── com │ │ │ │ ├── facebook │ │ │ │ │ ├── drawee │ │ │ │ │ │ ├── R.java │ │ │ │ │ │ └── backends │ │ │ │ │ │ │ └── pipeline │ │ │ │ │ │ │ └── R.java │ │ │ │ │ └── react │ │ │ │ │ │ └── R.java │ │ │ │ └── github │ │ │ │ │ └── ajalt │ │ │ │ │ ├── library │ │ │ │ │ └── R.java │ │ │ │ │ └── reprint │ │ │ │ │ ├── module │ │ │ │ │ └── spass │ │ │ │ │ │ └── R.java │ │ │ │ │ └── reactive │ │ │ │ │ └── R.java │ │ │ └── org │ │ │ │ └── webkit │ │ │ │ └── android_jsc │ │ │ │ └── R.java │ │ │ └── release │ │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ └── R.java │ │ │ ├── co │ │ │ └── eleken │ │ │ │ └── react_native_touch_id_android │ │ │ │ └── R.java │ │ │ ├── com │ │ │ ├── facebook │ │ │ │ ├── drawee │ │ │ │ │ ├── R.java │ │ │ │ │ └── backends │ │ │ │ │ │ └── pipeline │ │ │ │ │ │ └── R.java │ │ │ │ ├── fbui │ │ │ │ │ └── textlayoutbuilder │ │ │ │ │ │ └── R.java │ │ │ │ ├── react │ │ │ │ │ └── R.java │ │ │ │ └── soloader │ │ │ │ │ └── R.java │ │ │ └── github │ │ │ │ └── ajalt │ │ │ │ ├── library │ │ │ │ └── R.java │ │ │ │ └── reprint │ │ │ │ ├── module │ │ │ │ └── spass │ │ │ │ │ └── R.java │ │ │ │ └── reactive │ │ │ │ └── R.java │ │ │ └── org │ │ │ └── webkit │ │ │ └── android_jsc │ │ │ └── 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-rES.json │ │ │ │ │ ├── values-es-rUS.json │ │ │ │ │ ├── values-es.json │ │ │ │ │ ├── values-et-rEE.json │ │ │ │ │ ├── values-eu-rES.json │ │ │ │ │ ├── values-fa.json │ │ │ │ │ ├── values-fb-rLL.json │ │ │ │ │ ├── values-fb.json │ │ │ │ │ ├── values-fi.json │ │ │ │ │ ├── values-fr-rCA.json │ │ │ │ │ ├── values-fr.json │ │ │ │ │ ├── values-gl-rES.json │ │ │ │ │ ├── values-gu-rIN.json │ │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ │ ├── values-hi.json │ │ │ │ │ ├── values-hr.json │ │ │ │ │ ├── values-hu.json │ │ │ │ │ ├── values-hy-rAM.json │ │ │ │ │ ├── values-in.json │ │ │ │ │ ├── values-is-rIS.json │ │ │ │ │ ├── values-it.json │ │ │ │ │ ├── values-iw.json │ │ │ │ │ ├── values-ja.json │ │ │ │ │ ├── values-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-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-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-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.json │ │ │ │ │ ├── drawable-ldrtl-hdpi.json │ │ │ │ │ ├── drawable-ldrtl-mdpi.json │ │ │ │ │ ├── drawable-ldrtl-xhdpi.json │ │ │ │ │ ├── drawable-ldrtl-xxhdpi.json │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi.json │ │ │ │ │ ├── drawable-mdpi.json │ │ │ │ │ ├── drawable-v21.json │ │ │ │ │ ├── drawable-v23.json │ │ │ │ │ ├── drawable-xhdpi.json │ │ │ │ │ ├── drawable-xxhdpi.json │ │ │ │ │ ├── drawable-xxxhdpi.json │ │ │ │ │ ├── drawable.json │ │ │ │ │ ├── layout.json │ │ │ │ │ └── xml.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-rES.json │ │ │ │ │ ├── values-es-rUS.json │ │ │ │ │ ├── values-es.json │ │ │ │ │ ├── values-et-rEE.json │ │ │ │ │ ├── values-eu-rES.json │ │ │ │ │ ├── values-fa.json │ │ │ │ │ ├── values-fb-rLL.json │ │ │ │ │ ├── values-fb.json │ │ │ │ │ ├── values-fi.json │ │ │ │ │ ├── values-fr-rCA.json │ │ │ │ │ ├── values-fr.json │ │ │ │ │ ├── values-gl-rES.json │ │ │ │ │ ├── values-gu-rIN.json │ │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ │ ├── values-hi.json │ │ │ │ │ ├── values-hr.json │ │ │ │ │ ├── values-hu.json │ │ │ │ │ ├── values-hy-rAM.json │ │ │ │ │ ├── values-in.json │ │ │ │ │ ├── values-is-rIS.json │ │ │ │ │ ├── values-it.json │ │ │ │ │ ├── values-iw.json │ │ │ │ │ ├── values-ja.json │ │ │ │ │ ├── values-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-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-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-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 │ │ │ │ │ └── xml.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-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-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-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-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 │ │ │ │ └── xml.json │ │ ├── bundles │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ └── release │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ ├── classes.jar │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── classes │ │ │ └── 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 │ │ │ │ ├── co │ │ │ │ └── eleken │ │ │ │ │ └── react_native_touch_id_android │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── FingerprintModule$1$1.class │ │ │ │ │ ├── FingerprintModule$1.class │ │ │ │ │ ├── FingerprintModule.class │ │ │ │ │ ├── FingerprintPackage.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$xml.class │ │ │ │ │ └── R.class │ │ │ │ ├── com │ │ │ │ ├── facebook │ │ │ │ │ ├── drawee │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ └── backends │ │ │ │ │ │ │ └── pipeline │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ ├── fbui │ │ │ │ │ │ └── textlayoutbuilder │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ ├── react │ │ │ │ │ │ ├── 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$xml.class │ │ │ │ │ │ └── R.class │ │ │ │ │ └── soloader │ │ │ │ │ │ └── R.class │ │ │ │ └── github │ │ │ │ │ └── ajalt │ │ │ │ │ ├── library │ │ │ │ │ ├── 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 │ │ │ │ │ └── reprint │ │ │ │ │ ├── module │ │ │ │ │ └── spass │ │ │ │ │ │ ├── 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 │ │ │ │ │ └── reactive │ │ │ │ │ ├── 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 │ │ │ │ └── org │ │ │ │ └── webkit │ │ │ │ └── android_jsc │ │ │ │ └── R.class │ │ ├── exploded-aar │ │ │ ├── com.android.support │ │ │ │ ├── appcompat-v7 │ │ │ │ │ └── 23.0.1 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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_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_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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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_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_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 │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ ├── 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_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_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 │ │ │ │ │ │ ├── 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_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_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 │ │ │ │ │ │ ├── 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_voice_search_api_mtrl_alpha.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_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_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-h720dp │ │ │ │ │ │ └── values-h720dp.xml │ │ │ │ │ │ ├── values-hdpi │ │ │ │ │ │ └── values-hdpi.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 │ │ │ │ │ │ └── values-large.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-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.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 │ │ │ │ │ │ └── values-sw600dp.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-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 │ │ │ │ │ │ └── values-w360dp.xml │ │ │ │ │ │ ├── values-w480dp │ │ │ │ │ │ └── values-w480dp.xml │ │ │ │ │ │ ├── values-w500dp │ │ │ │ │ │ └── values-w500dp.xml │ │ │ │ │ │ ├── values-w600dp │ │ │ │ │ │ └── values-w600dp.xml │ │ │ │ │ │ ├── values-w720dp │ │ │ │ │ │ └── values-w720dp.xml │ │ │ │ │ │ ├── values-xlarge-land │ │ │ │ │ │ └── values-xlarge-land.xml │ │ │ │ │ │ ├── values-xlarge │ │ │ │ │ │ └── values-xlarge.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.0.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── support-v4 │ │ │ │ │ └── 23.0.1 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── aidl │ │ │ │ │ └── android │ │ │ │ │ │ └── support │ │ │ │ │ │ └── v4 │ │ │ │ │ │ └── media │ │ │ │ │ │ ├── MediaMetadataCompat.aidl │ │ │ │ │ │ ├── RatingCompat.aidl │ │ │ │ │ │ └── session │ │ │ │ │ │ ├── MediaSessionCompat.aidl │ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl │ │ │ │ │ │ └── PlaybackStateCompat.aidl │ │ │ │ │ ├── annotations.zip │ │ │ │ │ └── jars │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── libs │ │ │ │ │ └── internal_impl-23.0.1.jar │ │ │ ├── com.facebook.fbui.textlayoutbuilder │ │ │ │ └── textlayoutbuilder │ │ │ │ │ └── 1.0.0 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── annotations.zip │ │ │ │ │ ├── jars │ │ │ │ │ └── classes.jar │ │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── com.facebook.fresco │ │ │ │ ├── drawee │ │ │ │ │ ├── 0.8.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ └── 1.0.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── fbcore │ │ │ │ │ ├── 0.8.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ └── jars │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ └── 1.0.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── fresco │ │ │ │ │ ├── 0.8.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ └── jars │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ └── 1.0.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── imagepipeline-base │ │ │ │ │ └── 1.0.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── imagepipeline-okhttp │ │ │ │ │ └── 0.8.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── imagepipeline-okhttp3 │ │ │ │ │ └── 1.0.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ └── imagepipeline │ │ │ │ │ ├── 0.8.1 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ └── jni │ │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ │ ├── libbitmaps.so │ │ │ │ │ │ ├── libgifimage.so │ │ │ │ │ │ ├── libimagepipeline.so │ │ │ │ │ │ ├── libmemchunk.so │ │ │ │ │ │ ├── libwebp.so │ │ │ │ │ │ └── libwebpimage.so │ │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ ├── libbitmaps.so │ │ │ │ │ │ ├── libgifimage.so │ │ │ │ │ │ ├── libimagepipeline.so │ │ │ │ │ │ ├── libmemchunk.so │ │ │ │ │ │ ├── libwebp.so │ │ │ │ │ │ └── libwebpimage.so │ │ │ │ │ │ ├── armeabi │ │ │ │ │ │ ├── libbitmaps.so │ │ │ │ │ │ ├── libgifimage.so │ │ │ │ │ │ ├── libimagepipeline.so │ │ │ │ │ │ ├── libmemchunk.so │ │ │ │ │ │ ├── libwebp.so │ │ │ │ │ │ └── libwebpimage.so │ │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── libbitmaps.so │ │ │ │ │ │ ├── libgifimage.so │ │ │ │ │ │ ├── libimagepipeline.so │ │ │ │ │ │ ├── libmemchunk.so │ │ │ │ │ │ ├── libwebp.so │ │ │ │ │ │ └── libwebpimage.so │ │ │ │ │ │ └── x86_64 │ │ │ │ │ │ ├── libbitmaps.so │ │ │ │ │ │ ├── libgifimage.so │ │ │ │ │ │ ├── libimagepipeline.so │ │ │ │ │ │ ├── libmemchunk.so │ │ │ │ │ │ ├── libwebp.so │ │ │ │ │ │ └── libwebpimage.so │ │ │ │ │ └── 1.0.1 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── jars │ │ │ │ │ └── classes.jar │ │ │ │ │ └── jni │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libimagepipeline.so │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ └── libimagepipeline.so │ │ │ │ │ ├── armeabi │ │ │ │ │ └── libimagepipeline.so │ │ │ │ │ ├── x86 │ │ │ │ │ └── libimagepipeline.so │ │ │ │ │ └── x86_64 │ │ │ │ │ └── libimagepipeline.so │ │ │ ├── com.facebook.react │ │ │ │ └── react-native │ │ │ │ │ ├── 0.20.1 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── annotations.zip │ │ │ │ │ ├── jars │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ └── infer-annotations-1.5.jar │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ │ ├── libfb.so │ │ │ │ │ │ │ ├── libfbjni.so │ │ │ │ │ │ │ ├── libfolly_json.so │ │ │ │ │ │ │ ├── libglog.so │ │ │ │ │ │ │ ├── libgnustl_shared.so │ │ │ │ │ │ │ └── libreactnativejni.so │ │ │ │ │ │ └── x86 │ │ │ │ │ │ │ ├── libfb.so │ │ │ │ │ │ │ ├── libfbjni.so │ │ │ │ │ │ │ ├── libfolly_json.so │ │ │ │ │ │ │ ├── libglog.so │ │ │ │ │ │ │ ├── libgnustl_shared.so │ │ │ │ │ │ │ └── libreactnativejni.so │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── catalyst_push_up_in.xml │ │ │ │ │ │ └── catalyst_push_up_out.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── fps_view.xml │ │ │ │ │ │ ├── redbox_item_frame.xml │ │ │ │ │ │ ├── redbox_item_title.xml │ │ │ │ │ │ └── redbox_view.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ ├── values-es-rES │ │ │ │ │ │ └── values-es-rES.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-fb-rLL │ │ │ │ │ │ └── values-fb-rLL.xml │ │ │ │ │ │ ├── values-fb │ │ │ │ │ │ └── values-fb.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ ├── values │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── preferences.xml │ │ │ │ │ └── 0.47.1 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── annotations.zip │ │ │ │ │ ├── jars │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── libs │ │ │ │ │ │ └── infer-annotations-4.0.jar │ │ │ │ │ ├── jni │ │ │ │ │ ├── armeabi-v7a │ │ │ │ │ │ ├── libfb.so │ │ │ │ │ │ ├── libfolly_json.so │ │ │ │ │ │ ├── libglog.so │ │ │ │ │ │ ├── libglog_init.so │ │ │ │ │ │ ├── libgnustl_shared.so │ │ │ │ │ │ ├── libreactnativejni.so │ │ │ │ │ │ └── libyoga.so │ │ │ │ │ └── x86 │ │ │ │ │ │ ├── libfb.so │ │ │ │ │ │ ├── libfolly_json.so │ │ │ │ │ │ ├── libglog.so │ │ │ │ │ │ ├── libglog_init.so │ │ │ │ │ │ ├── libgnustl_shared.so │ │ │ │ │ │ ├── libreactnativejni.so │ │ │ │ │ │ └── libyoga.so │ │ │ │ │ └── res │ │ │ │ │ ├── anim │ │ │ │ │ ├── catalyst_push_up_in.xml │ │ │ │ │ ├── catalyst_push_up_out.xml │ │ │ │ │ ├── fade_in.xml │ │ │ │ │ ├── fade_out.xml │ │ │ │ │ ├── slide_down.xml │ │ │ │ │ └── slide_up.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── dev_loading_view.xml │ │ │ │ │ ├── fps_view.xml │ │ │ │ │ ├── redbox_item_frame.xml │ │ │ │ │ ├── redbox_item_title.xml │ │ │ │ │ └── redbox_view.xml │ │ │ │ │ ├── values │ │ │ │ │ └── values.xml │ │ │ │ │ └── xml │ │ │ │ │ └── preferences.xml │ │ │ ├── com.facebook.soloader │ │ │ │ └── soloader │ │ │ │ │ └── 0.1.0 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ └── jars │ │ │ │ │ └── classes.jar │ │ │ ├── com.github.ajalt.reprint │ │ │ │ ├── core │ │ │ │ │ └── 2.9.2 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.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-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-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-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.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-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-vi │ │ │ │ │ │ └── values-vi.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 │ │ │ │ ├── reactive │ │ │ │ │ └── 2.9.2 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ └── reprint_spass │ │ │ │ │ └── 2.9.2 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── jars │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── libs │ │ │ │ │ │ ├── pass-v1.1.4.jar │ │ │ │ │ │ └── sdk-v1.0.0.jar │ │ │ │ │ └── proguard.txt │ │ │ └── org.webkit │ │ │ │ └── android-jsc │ │ │ │ └── r174650 │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ ├── jars │ │ │ │ └── classes.jar │ │ │ │ └── jni │ │ │ │ ├── armeabi-v7a │ │ │ │ ├── libicu_common.so │ │ │ │ └── libjsc.so │ │ │ │ ├── armeabi │ │ │ │ └── libicu_common.so │ │ │ │ └── x86 │ │ │ │ ├── libicu_common.so │ │ │ │ └── libjsc.so │ │ ├── incremental-safeguard │ │ │ └── release │ │ │ │ └── tag.txt │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ └── dependency.store │ │ │ ├── compileReleaseAidl │ │ │ │ └── dependency.store │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── 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-rES │ │ │ │ │ │ └── values-es-rES.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-fb-rLL │ │ │ │ │ │ └── values-fb-rLL.xml │ │ │ │ │ ├── values-fb │ │ │ │ │ │ └── values-fb.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-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-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-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-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 │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── 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-rES │ │ │ │ │ │ └── values-es-rES.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-fb-rLL │ │ │ │ │ │ └── values-fb-rLL.xml │ │ │ │ │ ├── values-fb │ │ │ │ │ │ └── values-fb.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-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-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-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-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 │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── 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-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-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-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-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 │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ └── packageReleaseResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ ├── manifest │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── manifests │ │ │ └── aapt │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── release │ │ │ │ └── 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 │ │ │ │ │ │ ├── catalyst_push_up_in.xml │ │ │ │ │ │ └── catalyst_push_up_out.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 │ │ │ │ │ │ ├── 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_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_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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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_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_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 │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ ├── 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_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_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 │ │ │ │ │ │ ├── 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_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_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 │ │ │ │ │ │ ├── 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_voice_search_api_mtrl_alpha.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_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_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 │ │ │ │ │ │ ├── fps_view.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 │ │ │ │ │ │ ├── redbox_item_frame.xml │ │ │ │ │ │ ├── redbox_item_title.xml │ │ │ │ │ │ ├── redbox_view.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-rES │ │ │ │ │ │ └── values-es-rES.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-fb-rLL │ │ │ │ │ │ └── values-fb-rLL.xml │ │ │ │ │ │ ├── values-fb │ │ │ │ │ │ └── values-fb.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-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-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-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-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 │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── preferences.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 │ │ │ │ │ │ ├── catalyst_push_up_in.xml │ │ │ │ │ │ └── catalyst_push_up_out.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_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_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_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_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 │ │ │ │ │ ├── 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_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_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_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_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_voice_search_api_mtrl_alpha.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_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_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 │ │ │ │ │ │ ├── fps_view.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 │ │ │ │ │ │ ├── redbox_item_frame.xml │ │ │ │ │ │ ├── redbox_item_title.xml │ │ │ │ │ │ ├── redbox_view.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-rES │ │ │ │ │ │ └── values-es-rES.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-fb-rLL │ │ │ │ │ │ └── values-fb-rLL.xml │ │ │ │ │ ├── values-fb │ │ │ │ │ │ └── values-fb.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-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-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-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-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 │ │ │ │ │ └── xml │ │ │ │ │ │ └── preferences.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 │ │ │ │ │ ├── catalyst_push_up_in.xml │ │ │ │ │ ├── catalyst_push_up_out.xml │ │ │ │ │ ├── fade_in.xml │ │ │ │ │ ├── fade_out.xml │ │ │ │ │ ├── slide_down.xml │ │ │ │ │ └── slide_up.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_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_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_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_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 │ │ │ │ │ ├── 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_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_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_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_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_voice_search_api_mtrl_alpha.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_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_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 │ │ │ │ │ ├── dev_loading_view.xml │ │ │ │ │ ├── fps_view.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 │ │ │ │ │ ├── redbox_item_frame.xml │ │ │ │ │ ├── redbox_item_title.xml │ │ │ │ │ ├── redbox_view.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-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-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-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-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 │ │ │ │ │ └── xml │ │ │ │ │ └── preferences.xml │ │ │ └── resources-debug-androidTest.ap_ │ │ ├── symbols │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── R.txt │ │ └── typedefs.txt │ └── outputs │ │ └── aar │ │ ├── android-debug.aar │ │ ├── react-native-touch-id-android-debug.aar │ │ └── react-native-touch-id-android-release.aar ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── co │ │ └── eleken │ │ └── react_native_touch_id_android │ │ ├── FingerprintModule.java │ │ └── FingerprintPackage.java │ └── res │ └── values │ └── strings.xml ├── example ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App │ ├── Components │ │ ├── TouchAlert.js │ │ └── TouchAlertStyles.js │ ├── Containers │ │ ├── RootContainer.js │ │ └── RootContainerStyles.js │ ├── Images │ │ └── fingerprint.png │ └── Themes │ │ ├── Colors.js │ │ ├── Fonts.js │ │ ├── Images.js │ │ ├── Metrics.js │ │ └── index.js ├── __tests__ │ ├── index.android.js │ └── index.ios.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── touchtest │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.android.js ├── index.ios.js ├── ios │ ├── TouchTest-tvOS │ │ └── Info.plist │ ├── TouchTest-tvOSTests │ │ └── Info.plist │ ├── TouchTest.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── TouchTest-tvOS.xcscheme │ │ │ └── TouchTest.xcscheme │ ├── TouchTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── TouchTestTests │ │ ├── Info.plist │ │ └── TouchTestTests.m └── package.json ├── index.js ├── package.json └── src └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/before-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.travis/before-cache.sh -------------------------------------------------------------------------------- /.travis/before-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.travis/before-ci.sh -------------------------------------------------------------------------------- /.travis/before-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.travis/before-install.sh -------------------------------------------------------------------------------- /.travis/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.travis/ci.sh -------------------------------------------------------------------------------- /.travis/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/.travis/install.sh -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/README.md -------------------------------------------------------------------------------- /android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/compiler.xml -------------------------------------------------------------------------------- /android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/gradle.xml -------------------------------------------------------------------------------- /android/.idea/libraries/android_jsc_r174650.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/android_jsc_r174650.xml -------------------------------------------------------------------------------- /android/.idea/libraries/appcompat_v7_23_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/appcompat_v7_23_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/bolts_android_1_1_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/bolts_android_1_1_4.xml -------------------------------------------------------------------------------- /android/.idea/libraries/commons_cli_1_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/commons_cli_1_2.xml -------------------------------------------------------------------------------- /android/.idea/libraries/core_2_9_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/core_2_9_2.xml -------------------------------------------------------------------------------- /android/.idea/libraries/drawee_0_8_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/drawee_0_8_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/fbcore_0_8_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/fbcore_0_8_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/fresco_0_8_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/fresco_0_8_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/imagepipeline_0_8_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/imagepipeline_0_8_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/imagepipeline_okhttp_0_8_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/imagepipeline_okhttp_0_8_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/jackson_core_2_2_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/jackson_core_2_2_3.xml -------------------------------------------------------------------------------- /android/.idea/libraries/jsr305_3_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/jsr305_3_0_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/library_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/library_2_4_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/okhttp_2_5_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/okhttp_2_5_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/okhttp_ws_2_5_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/okhttp_ws_2_5_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/okio_1_6_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/okio_1_6_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/react_native_0_20_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/react_native_0_20_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/reactive_2_9_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/reactive_2_9_2.xml -------------------------------------------------------------------------------- /android/.idea/libraries/recyclerview_v7_23_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/recyclerview_v7_23_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/reprint_spass_2_9_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/reprint_spass_2_9_2.xml -------------------------------------------------------------------------------- /android/.idea/libraries/stetho_1_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/stetho_1_2_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/stetho_okhttp_1_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/stetho_okhttp_1_2_0.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_annotations_23_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/support_annotations_23_0_1.xml -------------------------------------------------------------------------------- /android/.idea/libraries/support_v4_23_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/libraries/support_v4_23_0_1.xml -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/misc.xml -------------------------------------------------------------------------------- /android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/modules.xml -------------------------------------------------------------------------------- /android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/.idea/workspace.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/build/generated/mockable-android-23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/mockable-android-23.jar -------------------------------------------------------------------------------- /android/build/generated/source/r/androidTest/debug/com/facebook/drawee/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/androidTest/debug/com/facebook/drawee/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/androidTest/debug/com/facebook/react/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/androidTest/debug/com/facebook/react/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/debug/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/debug/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/debug/android/support/v7/recyclerview/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/debug/android/support/v7/recyclerview/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/debug/com/facebook/drawee/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/debug/com/facebook/drawee/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/debug/com/facebook/react/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/debug/com/facebook/react/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/debug/com/github/ajalt/library/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/debug/com/github/ajalt/library/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/debug/com/github/ajalt/reprint/reactive/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/debug/com/github/ajalt/reprint/reactive/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/debug/org/webkit/android_jsc/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/debug/org/webkit/android_jsc/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/release/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/release/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/release/com/facebook/drawee/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/release/com/facebook/drawee/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/release/com/facebook/react/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/release/com/facebook/react/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/release/com/facebook/soloader/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/release/com/facebook/soloader/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/release/com/github/ajalt/library/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/release/com/github/ajalt/library/R.java -------------------------------------------------------------------------------- /android/build/generated/source/r/release/org/webkit/android_jsc/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/generated/source/r/release/org/webkit/android_jsc/R.java -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-af.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-am.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-bg.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-ca.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-cs.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-da.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-de.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-el.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-es.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-fa.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-fb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-fb.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-fi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-fr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-hr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-hu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-in.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-it.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-iw.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-ko.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-land.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-lt.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-nb.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-nl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-pl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-port.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-ro.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-sk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-sl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-sr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-sv.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-sw.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-th.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-tl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-v12.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-v14.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-v17.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-v18.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-v21.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-v22.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-vi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values-zu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/multi/values.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/single/anim.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/single/color-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/single/color-v11.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/single/color-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/single/color.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/single/drawable.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/single/layout.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/androidTest/debug/single/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/androidTest/debug/single/xml.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-af.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-am.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ar.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-az-rAZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-az-rAZ.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-bg.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-bn-rBD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-bn-rBD.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ca.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-cs.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-da.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-de.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-el.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-en-rAU.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-en-rGB.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-en-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-es-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-es-rES.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-es-rUS.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-es.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-et-rEE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-et-rEE.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-eu-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-eu-rES.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-fa.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-fb-rLL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-fb-rLL.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-fb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-fb.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-fi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-fr-rCA.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-fr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-gl-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-gl-rES.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-gu-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-gu-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-hi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-hr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-hu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-hy-rAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-hy-rAM.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-in.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-is-rIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-is-rIS.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-it.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-iw.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ja.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ka-rGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ka-rGE.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-km-rKH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-km-rKH.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-kn-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-kn-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ko.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ky-rKG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ky-rKG.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-land.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-large-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-large-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-lo-rLA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-lo-rLA.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-lt.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-lv.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-mk-rMK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-mk-rMK.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ml-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ml-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-mn-rMN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-mn-rMN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-mr-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-mr-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ms-rMY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ms-rMY.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-my-rMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-my-rMM.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-nb.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ne-rNP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ne-rNP.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-nl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-pa-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-pa-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-pl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-port.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-pt-rBR.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-pt-rPT.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-pt.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ro.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ru.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-si-rLK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-si-rLK.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-sk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-sl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-sq-rAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-sq-rAL.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-sr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-sv.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-sw.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ta-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ta-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-te-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-te-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-th.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-tl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-tr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-uk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-ur-rPK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-ur-rPK.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-v11.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-v12.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-v14.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-v17.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-v18.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-v21.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-v22.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-vi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-w360dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-w480dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-w500dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-w600dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-w720dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-xlarge-land-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-zh-rCN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-zh-rHK.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values-zu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/multi/values.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/anim.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/color-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/color-v11.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/color-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/color.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-hdpi-v17.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable-ldrtl-mdpi-v17.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable-v21.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/drawable.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/layout.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/debug/single/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/debug/single/xml.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-af.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-am.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ar.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-az-rAZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-az-rAZ.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-bg.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-bn-rBD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-bn-rBD.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ca.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-cs.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-da.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-de.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-el.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-en-rAU.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-en-rGB.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-en-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-es-rUS.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-es.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-et-rEE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-et-rEE.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-eu-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-eu-rES.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-fa.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-fi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-fr-rCA.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-fr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-gl-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-gl-rES.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-gu-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-gu-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-h720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-h720dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-hdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-hi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-hr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-hu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-hy-rAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-hy-rAM.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-in.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-is-rIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-is-rIS.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-it.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-iw.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ja.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ka-rGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ka-rGE.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-kk-rKZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-kk-rKZ.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-km-rKH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-km-rKH.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-kn-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-kn-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ko.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ky-rKG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ky-rKG.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-land.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-large-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-large-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-lo-rLA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-lo-rLA.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-lt.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-lv.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-mk-rMK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-mk-rMK.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ml-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ml-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-mn-rMN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-mn-rMN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-mr-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-mr-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ms-rMY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ms-rMY.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-my-rMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-my-rMM.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-nb.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ne-rNP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ne-rNP.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-nl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-pa-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-pa-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-pl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-port.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-pt-rBR.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-pt-rPT.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-pt.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ro.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ru.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-si-rLK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-si-rLK.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-sk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-sl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-sq-rAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-sq-rAL.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-sr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-sv.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-sw.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-sw600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-sw600dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ta-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ta-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-te-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-te-rIN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-th.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-tl.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-tr.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-uk.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-ur-rPK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-ur-rPK.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-uz-rUZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-uz-rUZ.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-v11.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-v12.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-v14.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-v17.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-v18.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-v21.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-v22.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-vi.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-w360dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-w360dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-w480dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-w480dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-w500dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-w500dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-w600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-w600dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-w720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-w720dp-v13.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-xlarge-land-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-xlarge-land-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-xlarge-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-xlarge-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-zh-rCN.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-zh-rHK.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values-zu.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/multi/values.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/anim.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/color-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/color-v11.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/color-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/color.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/drawable-mdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/drawable-v21.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/drawable-v23.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-xhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/drawable-xhdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-xxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/drawable-xxhdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable-xxxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/drawable-xxxhdpi-v4.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/drawable.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/layout.json -------------------------------------------------------------------------------- /android/build/intermediates/blame/res/release/single/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/blame/res/release/single/xml.json -------------------------------------------------------------------------------- /android/build/intermediates/bundles/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/bundles/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build/intermediates/bundles/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/bundles/debug/R.txt -------------------------------------------------------------------------------- /android/build/intermediates/bundles/debug/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/bundles/debug/res/values/values.xml -------------------------------------------------------------------------------- /android/build/intermediates/bundles/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/bundles/release/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build/intermediates/bundles/release/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/bundles/release/R.txt -------------------------------------------------------------------------------- /android/build/intermediates/bundles/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/bundles/release/classes.jar -------------------------------------------------------------------------------- /android/build/intermediates/bundles/release/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/bundles/release/res/values/values.xml -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/drawee/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/drawee/R$attr.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/drawee/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/drawee/R$id.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/drawee/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/drawee/R.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$anim.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$attr.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$bool.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$color.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$dimen.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$drawable.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$id.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$integer.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$layout.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$string.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$style.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R$xml.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/react/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/react/R.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/facebook/soloader/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/facebook/soloader/R.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/github/ajalt/library/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/github/ajalt/library/R$id.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/com/github/ajalt/library/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/com/github/ajalt/library/R.class -------------------------------------------------------------------------------- /android/build/intermediates/classes/release/org/webkit/android_jsc/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/classes/release/org/webkit/android_jsc/R.class -------------------------------------------------------------------------------- /android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/0.8.1/R.txt -------------------------------------------------------------------------------- /android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.0.1/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/exploded-aar/com.facebook.fresco/drawee/1.0.1/R.txt -------------------------------------------------------------------------------- /android/build/intermediates/exploded-aar/com.facebook.soloader/soloader/0.1.0/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/build/intermediates/exploded-aar/com.github.ajalt.reprint/core/2.9.2/proguard.txt: -------------------------------------------------------------------------------- 1 | -keep class com.github.ajalt.reprint.module.** { *; } 2 | -------------------------------------------------------------------------------- /android/build/intermediates/exploded-aar/org.webkit/android-jsc/r174650/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/build/intermediates/incremental-safeguard/release/tag.txt: -------------------------------------------------------------------------------- 1 | incremental task execution -------------------------------------------------------------------------------- /android/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /android/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /android/build/intermediates/incremental/compileReleaseAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /android/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/incremental/mergeDebugAssets/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/mergeDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/incremental/mergeDebugResources/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/incremental/mergeDebugShaders/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/mergeReleaseAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/incremental/mergeReleaseAssets/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/mergeReleaseResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/incremental/mergeReleaseResources/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/mergeReleaseShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Fri Aug 11 14:53:24 EEST 2017 2 | -------------------------------------------------------------------------------- /android/build/intermediates/incremental/packageDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/incremental/packageDebugResources/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Fri Aug 11 14:37:28 EEST 2017 2 | -------------------------------------------------------------------------------- /android/build/intermediates/incremental/packageReleaseResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/incremental/packageReleaseResources/merger.xml -------------------------------------------------------------------------------- /android/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build/intermediates/manifests/aapt/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/manifests/aapt/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build/intermediates/manifests/aapt/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/manifests/aapt/release/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/androidTest/debug/layout/fps_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/androidTest/debug/layout/fps_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/androidTest/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/androidTest/debug/values/values.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/androidTest/debug/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/androidTest/debug/xml/preferences.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/anim/catalyst_push_up_out.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/layout/abc_action_mode_bar.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/layout/abc_search_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/layout/fps_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/layout/fps_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/layout/redbox_item_frame.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/layout/redbox_item_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/layout/redbox_item_title.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/layout/redbox_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/layout/redbox_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-af/values-af.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-am/values-am.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ar/values-ar.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-az-rAZ/values-az-rAZ.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-bg/values-bg.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-bn-rBD/values-bn-rBD.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ca/values-ca.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-cs/values-cs.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-da/values-da.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-de/values-de.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-el/values-el.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-en-rAU/values-en-rAU.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-en-rGB/values-en-rGB.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-en-rIN/values-en-rIN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-es-rES/values-es-rES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-es-rES/values-es-rES.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-es-rUS/values-es-rUS.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-es/values-es.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-et-rEE/values-et-rEE.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-eu-rES/values-eu-rES.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-fa/values-fa.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-fb-rLL/values-fb-rLL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-fb-rLL/values-fb-rLL.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-fb/values-fb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-fb/values-fb.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-fi/values-fi.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-fr-rCA/values-fr-rCA.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-fr/values-fr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-gl-rES/values-gl-rES.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-gu-rIN/values-gu-rIN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-hi/values-hi.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-hr/values-hr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-hu/values-hu.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-hy-rAM/values-hy-rAM.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-in/values-in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-is-rIS/values-is-rIS.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-it/values-it.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-iw/values-iw.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ja/values-ja.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ka-rGE/values-ka-rGE.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-kk-rKZ/values-kk-rKZ.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-km-rKH/values-km-rKH.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-kn-rIN/values-kn-rIN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ko/values-ko.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ky-rKG/values-ky-rKG.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-land/values-land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-land/values-land.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-lo-rLA/values-lo-rLA.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-lt/values-lt.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-lv/values-lv.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-mk-rMK/values-mk-rMK.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ml-rIN/values-ml-rIN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-mn-rMN/values-mn-rMN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-mr-rIN/values-mr-rIN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ms-rMY/values-ms-rMY.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-my-rMM/values-my-rMM.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-nb/values-nb.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ne-rNP/values-ne-rNP.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-nl/values-nl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-pa-rIN/values-pa-rIN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-pl/values-pl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-port/values-port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-port/values-port.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-pt-rBR/values-pt-rBR.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-pt-rPT/values-pt-rPT.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-pt/values-pt.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ro/values-ro.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ru/values-ru.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-si-rLK/values-si-rLK.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-sk/values-sk.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-sl/values-sl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-sq-rAL/values-sq-rAL.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-sr/values-sr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-sv/values-sv.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-sw/values-sw.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ta-rIN/values-ta-rIN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-te-rIN/values-te-rIN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-th/values-th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-th/values-th.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-tl/values-tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-tl/values-tl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-tr/values-tr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-uk/values-uk.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-ur-rPK/values-ur-rPK.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-uz-rUZ/values-uz-rUZ.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-v11/values-v11.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-v12/values-v12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-v12/values-v12.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-v14/values-v14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-v14/values-v14.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-v17/values-v17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-v17/values-v17.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-v18/values-v18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-v18/values-v18.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-v21/values-v21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-v21/values-v21.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-v22/values-v22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-v22/values-v22.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-v23/values-v23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-v23/values-v23.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-vi/values-vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-vi/values-vi.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-zh-rCN/values-zh-rCN.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-zh-rHK/values-zh-rHK.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values-zu/values-zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values-zu/values-zu.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/values/values.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/debug/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/debug/xml/preferences.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/catalyst_push_up_in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/catalyst_push_up_out.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/fade_in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/fade_out.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/slide_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/slide_down.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/anim/slide_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/anim/slide_up.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/abc_screen_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/layout/abc_screen_toolbar.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/layout/abc_search_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/dev_loading_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/layout/dev_loading_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/fps_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/layout/fps_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/redbox_item_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/layout/redbox_item_frame.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/redbox_item_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/layout/redbox_item_title.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/layout/redbox_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/layout/redbox_view.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-af/values-af.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-am/values-am.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-ar/values-ar.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-bg/values-bg.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-ca/values-ca.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-cs/values-cs.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-da/values-da.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-de/values-de.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-el/values-el.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-es/values-es.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-fa/values-fa.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-fi/values-fi.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-fr/values-fr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-hi/values-hi.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-hr/values-hr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-hu/values-hu.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-in/values-in.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-it/values-it.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-iw/values-iw.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-ja/values-ja.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-ko/values-ko.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-land/values-land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-land/values-land.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-lt/values-lt.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-lv/values-lv.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-nb/values-nb.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-nl/values-nl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-pl/values-pl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-port/values-port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-port/values-port.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-pt/values-pt.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-ro/values-ro.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-ru/values-ru.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-sk/values-sk.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-sl/values-sl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-sr/values-sr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-sv/values-sv.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-sw/values-sw.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-th/values-th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-th/values-th.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-tl/values-tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-tl/values-tl.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-tr/values-tr.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-uk/values-uk.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-v11/values-v11.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v12/values-v12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-v12/values-v12.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v14/values-v14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-v14/values-v14.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v17/values-v17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-v17/values-v17.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v18/values-v18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-v18/values-v18.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v21/values-v21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-v21/values-v21.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v22/values-v22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-v22/values-v22.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-v23/values-v23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-v23/values-v23.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-vi/values-vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-vi/values-vi.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values-zu/values-zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values-zu/values-zu.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/values/values.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/merged/release/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/merged/release/xml/preferences.xml -------------------------------------------------------------------------------- /android/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /android/build/intermediates/symbols/androidTest/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/intermediates/symbols/androidTest/debug/R.txt -------------------------------------------------------------------------------- /android/build/intermediates/typedefs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/build/outputs/aar/android-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/outputs/aar/android-debug.aar -------------------------------------------------------------------------------- /android/build/outputs/aar/react-native-touch-id-android-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/outputs/aar/react-native-touch-id-android-debug.aar -------------------------------------------------------------------------------- /android/build/outputs/aar/react-native-touch-id-android-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/build/outputs/aar/react-native-touch-id-android-release.aar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/local.properties -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App/Components/TouchAlert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Components/TouchAlert.js -------------------------------------------------------------------------------- /example/App/Components/TouchAlertStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Components/TouchAlertStyles.js -------------------------------------------------------------------------------- /example/App/Containers/RootContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Containers/RootContainer.js -------------------------------------------------------------------------------- /example/App/Containers/RootContainerStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Containers/RootContainerStyles.js -------------------------------------------------------------------------------- /example/App/Images/fingerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Images/fingerprint.png -------------------------------------------------------------------------------- /example/App/Themes/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Themes/Colors.js -------------------------------------------------------------------------------- /example/App/Themes/Fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Themes/Fonts.js -------------------------------------------------------------------------------- /example/App/Themes/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Themes/Images.js -------------------------------------------------------------------------------- /example/App/Themes/Metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Themes/Metrics.js -------------------------------------------------------------------------------- /example/App/Themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/App/Themes/index.js -------------------------------------------------------------------------------- /example/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/__tests__/index.android.js -------------------------------------------------------------------------------- /example/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/__tests__/index.ios.js -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/touchtest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/src/main/java/com/touchtest/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/touchtest/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/src/main/java/com/touchtest/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/keystores/BUCK -------------------------------------------------------------------------------- /example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/app.json -------------------------------------------------------------------------------- /example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/index.android.js -------------------------------------------------------------------------------- /example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/index.ios.js -------------------------------------------------------------------------------- /example/ios/TouchTest-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest-tvOS/Info.plist -------------------------------------------------------------------------------- /example/ios/TouchTest-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/ios/TouchTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/TouchTest.xcodeproj/xcshareddata/xcschemes/TouchTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest.xcodeproj/xcshareddata/xcschemes/TouchTest.xcscheme -------------------------------------------------------------------------------- /example/ios/TouchTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/TouchTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/TouchTest/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/TouchTest/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/TouchTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest/Info.plist -------------------------------------------------------------------------------- /example/ios/TouchTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTest/main.m -------------------------------------------------------------------------------- /example/ios/TouchTestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTestTests/Info.plist -------------------------------------------------------------------------------- /example/ios/TouchTestTests/TouchTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/ios/TouchTestTests/TouchTestTests.m -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/example/package.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/package.json -------------------------------------------------------------------------------- /src/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kalontech/react-native-touch-id-android/HEAD/src/screenshot.png --------------------------------------------------------------------------------