├── README.md └── TCPDemo ├── .gitignore ├── .gradle ├── 4.1 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileContent │ │ └── fileContent.lock │ ├── fileHashes │ │ ├── fileHashes.bin │ │ ├── fileHashes.lock │ │ └── resourceHashesCache.bin │ ├── javaCompile │ │ ├── classAnalysis.bin │ │ ├── jarAnalysis.bin │ │ ├── javaCompile.lock │ │ ├── taskHistory.bin │ │ └── taskJars.bin │ └── taskHistory │ │ ├── fileSnapshots.bin │ │ ├── taskHistory.bin │ │ └── taskHistory.lock └── buildOutputCleanup │ ├── built.bin │ ├── cache.properties │ └── cache.properties.lock ├── .idea ├── gradle.xml ├── libraries │ ├── android_arch_core_common_1_0_0_jar.xml │ ├── android_arch_lifecycle_common_1_0_0_jar.xml │ ├── android_arch_lifecycle_runtime_1_0_0.xml │ ├── com_android_support_animated_vector_drawable_26_1_0.xml │ ├── com_android_support_appcompat_v7_26_1_0.xml │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ ├── com_android_support_support_annotations_26_1_0_jar.xml │ ├── com_android_support_support_compat_26_1_0.xml │ ├── com_android_support_support_core_ui_26_1_0.xml │ ├── com_android_support_support_core_utils_26_1_0.xml │ ├── com_android_support_support_fragment_26_1_0.xml │ ├── com_android_support_support_media_compat_26_1_0.xml │ ├── com_android_support_support_v4_26_1_0.xml │ ├── com_android_support_support_vector_drawable_26_1_0.xml │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ ├── com_android_support_test_rules_1_0_1.xml │ ├── com_android_support_test_runner_1_0_1.xml │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ ├── com_squareup_javawriter_2_1_1_jar.xml │ ├── javax_inject_javax_inject_1_jar.xml │ ├── junit_junit_4_12_jar.xml │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ └── org_hamcrest_hamcrest_library_1_3_jar.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── workspace.xml ├── TCPDemo.iml ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── build │ ├── generated │ │ ├── mockable-android-26.v3.jar │ │ ├── res │ │ │ └── pngs │ │ │ │ └── debug │ │ │ │ ├── drawable-anydpi-v21 │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher_background.png │ │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher_background.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher_background.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher_background.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher_background.png │ │ │ │ └── drawable-xxxhdpi │ │ │ │ └── ic_launcher_background.png │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── tv │ │ │ │ │ └── higlobal │ │ │ │ │ └── tcpdemo │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ └── debug │ │ │ │ └── tv │ │ │ │ └── higlobal │ │ │ │ └── tcpdemo │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ ├── androidTest │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ └── test │ │ │ │ │ ├── espresso │ │ │ │ │ ├── R.java │ │ │ │ │ └── idling │ │ │ │ │ │ └── concurrent │ │ │ │ │ │ └── R.java │ │ │ │ │ ├── rules │ │ │ │ │ └── R.java │ │ │ │ │ └── runner │ │ │ │ │ └── R.java │ │ │ │ └── tv │ │ │ │ └── higlobal │ │ │ │ └── tcpdemo │ │ │ │ └── test │ │ │ │ └── R.java │ │ │ └── debug │ │ │ ├── android │ │ │ ├── arch │ │ │ │ └── lifecycle │ │ │ │ │ └── R.java │ │ │ └── support │ │ │ │ ├── compat │ │ │ │ └── R.java │ │ │ │ ├── constraint │ │ │ │ └── R.java │ │ │ │ ├── coreui │ │ │ │ └── R.java │ │ │ │ ├── coreutils │ │ │ │ └── R.java │ │ │ │ ├── fragment │ │ │ │ └── R.java │ │ │ │ ├── graphics │ │ │ │ └── drawable │ │ │ │ │ ├── R.java │ │ │ │ │ └── animated │ │ │ │ │ └── R.java │ │ │ │ ├── mediacompat │ │ │ │ └── R.java │ │ │ │ ├── v4 │ │ │ │ └── R.java │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ └── R.java │ │ │ └── tv │ │ │ └── higlobal │ │ │ └── tcpdemo │ │ │ └── R.java │ ├── intermediates │ │ ├── blame │ │ │ └── res │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ ├── multi-v2 │ │ │ │ │ ├── debug.json │ │ │ │ │ ├── values-af.json │ │ │ │ │ ├── values-am.json │ │ │ │ │ ├── values-ar.json │ │ │ │ │ ├── values-az.json │ │ │ │ │ ├── values-b+sr+Latn.json │ │ │ │ │ ├── values-be.json │ │ │ │ │ ├── values-bg.json │ │ │ │ │ ├── values-bn.json │ │ │ │ │ ├── values-bs.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.json │ │ │ │ │ ├── values-eu.json │ │ │ │ │ ├── values-fa.json │ │ │ │ │ ├── values-fi.json │ │ │ │ │ ├── values-fr-rCA.json │ │ │ │ │ ├── values-fr.json │ │ │ │ │ ├── values-gl.json │ │ │ │ │ ├── values-gu.json │ │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ │ ├── values-hi.json │ │ │ │ │ ├── values-hr.json │ │ │ │ │ ├── values-hu.json │ │ │ │ │ ├── values-hy.json │ │ │ │ │ ├── values-in.json │ │ │ │ │ ├── values-is.json │ │ │ │ │ ├── values-it.json │ │ │ │ │ ├── values-iw.json │ │ │ │ │ ├── values-ja.json │ │ │ │ │ ├── values-ka.json │ │ │ │ │ ├── values-kk.json │ │ │ │ │ ├── values-km.json │ │ │ │ │ ├── values-kn.json │ │ │ │ │ ├── values-ko.json │ │ │ │ │ ├── values-ky.json │ │ │ │ │ ├── values-land.json │ │ │ │ │ ├── values-large-v4.json │ │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ │ ├── values-lo.json │ │ │ │ │ ├── values-lt.json │ │ │ │ │ ├── values-lv.json │ │ │ │ │ ├── values-mk.json │ │ │ │ │ ├── values-ml.json │ │ │ │ │ ├── values-mn.json │ │ │ │ │ ├── values-mr.json │ │ │ │ │ ├── values-ms.json │ │ │ │ │ ├── values-my.json │ │ │ │ │ ├── values-nb.json │ │ │ │ │ ├── values-ne.json │ │ │ │ │ ├── values-night-v8.json │ │ │ │ │ ├── values-nl.json │ │ │ │ │ ├── values-pa.json │ │ │ │ │ ├── values-pl.json │ │ │ │ │ ├── values-port.json │ │ │ │ │ ├── values-pt-rBR.json │ │ │ │ │ ├── values-pt-rPT.json │ │ │ │ │ ├── values-pt.json │ │ │ │ │ ├── values-ro.json │ │ │ │ │ ├── values-ru.json │ │ │ │ │ ├── values-si.json │ │ │ │ │ ├── values-sk.json │ │ │ │ │ ├── values-sl.json │ │ │ │ │ ├── values-sq.json │ │ │ │ │ ├── values-sr.json │ │ │ │ │ ├── values-sv.json │ │ │ │ │ ├── values-sw.json │ │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ │ ├── values-ta.json │ │ │ │ │ ├── values-te.json │ │ │ │ │ ├── values-th.json │ │ │ │ │ ├── values-tl.json │ │ │ │ │ ├── values-tr.json │ │ │ │ │ ├── values-uk.json │ │ │ │ │ ├── values-ur.json │ │ │ │ │ ├── values-uz.json │ │ │ │ │ ├── values-v11.json │ │ │ │ │ ├── values-v12.json │ │ │ │ │ ├── values-v13.json │ │ │ │ │ ├── values-v14.json │ │ │ │ │ ├── values-v16.json │ │ │ │ │ ├── values-v17.json │ │ │ │ │ ├── values-v18.json │ │ │ │ │ ├── values-v21.json │ │ │ │ │ ├── values-v22.json │ │ │ │ │ ├── values-v23.json │ │ │ │ │ ├── values-v24.json │ │ │ │ │ ├── values-v25.json │ │ │ │ │ ├── values-v26.json │ │ │ │ │ ├── values-vi.json │ │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ │ ├── values-zh-rCN.json │ │ │ │ │ ├── values-zh-rHK.json │ │ │ │ │ ├── values-zh-rTW.json │ │ │ │ │ ├── values-zu.json │ │ │ │ │ └── values.json │ │ │ │ │ └── single │ │ │ │ │ └── debug.json │ │ │ │ └── debug │ │ │ │ ├── multi-v2 │ │ │ │ ├── debug.json │ │ │ │ ├── values-af.json │ │ │ │ ├── values-am.json │ │ │ │ ├── values-ar.json │ │ │ │ ├── values-az.json │ │ │ │ ├── values-b+sr+Latn.json │ │ │ │ ├── values-be.json │ │ │ │ ├── values-bg.json │ │ │ │ ├── values-bn.json │ │ │ │ ├── values-bs.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.json │ │ │ │ ├── values-eu.json │ │ │ │ ├── values-fa.json │ │ │ │ ├── values-fi.json │ │ │ │ ├── values-fr-rCA.json │ │ │ │ ├── values-fr.json │ │ │ │ ├── values-gl.json │ │ │ │ ├── values-gu.json │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ ├── values-hi.json │ │ │ │ ├── values-hr.json │ │ │ │ ├── values-hu.json │ │ │ │ ├── values-hy.json │ │ │ │ ├── values-in.json │ │ │ │ ├── values-is.json │ │ │ │ ├── values-it.json │ │ │ │ ├── values-iw.json │ │ │ │ ├── values-ja.json │ │ │ │ ├── values-ka.json │ │ │ │ ├── values-kk.json │ │ │ │ ├── values-km.json │ │ │ │ ├── values-kn.json │ │ │ │ ├── values-ko.json │ │ │ │ ├── values-ky.json │ │ │ │ ├── values-land.json │ │ │ │ ├── values-large-v4.json │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ ├── values-lo.json │ │ │ │ ├── values-lt.json │ │ │ │ ├── values-lv.json │ │ │ │ ├── values-mk.json │ │ │ │ ├── values-ml.json │ │ │ │ ├── values-mn.json │ │ │ │ ├── values-mr.json │ │ │ │ ├── values-ms.json │ │ │ │ ├── values-my.json │ │ │ │ ├── values-nb.json │ │ │ │ ├── values-ne.json │ │ │ │ ├── values-night-v8.json │ │ │ │ ├── values-nl.json │ │ │ │ ├── values-pa.json │ │ │ │ ├── values-pl.json │ │ │ │ ├── values-port.json │ │ │ │ ├── values-pt-rBR.json │ │ │ │ ├── values-pt-rPT.json │ │ │ │ ├── values-pt.json │ │ │ │ ├── values-ro.json │ │ │ │ ├── values-ru.json │ │ │ │ ├── values-si.json │ │ │ │ ├── values-sk.json │ │ │ │ ├── values-sl.json │ │ │ │ ├── values-sq.json │ │ │ │ ├── values-sr.json │ │ │ │ ├── values-sv.json │ │ │ │ ├── values-sw.json │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ ├── values-ta.json │ │ │ │ ├── values-te.json │ │ │ │ ├── values-th.json │ │ │ │ ├── values-tl.json │ │ │ │ ├── values-tr.json │ │ │ │ ├── values-uk.json │ │ │ │ ├── values-ur.json │ │ │ │ ├── values-uz.json │ │ │ │ ├── values-v11.json │ │ │ │ ├── values-v12.json │ │ │ │ ├── values-v13.json │ │ │ │ ├── values-v14.json │ │ │ │ ├── values-v16.json │ │ │ │ ├── values-v17.json │ │ │ │ ├── values-v18.json │ │ │ │ ├── values-v21.json │ │ │ │ ├── values-v22.json │ │ │ │ ├── values-v23.json │ │ │ │ ├── values-v24.json │ │ │ │ ├── values-v25.json │ │ │ │ ├── values-v26.json │ │ │ │ ├── values-vi.json │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ ├── values-zh-rCN.json │ │ │ │ ├── values-zh-rHK.json │ │ │ │ ├── values-zh-rTW.json │ │ │ │ ├── values-zu.json │ │ │ │ └── values.json │ │ │ │ └── single │ │ │ │ └── debug.json │ │ ├── build-info │ │ │ └── debug │ │ │ │ └── build-info.xml │ │ ├── classes │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ ├── arch │ │ │ │ │ └── lifecycle │ │ │ │ │ │ └── R.class │ │ │ │ └── support │ │ │ │ │ ├── compat │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── constraint │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── coreui │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── coreutils │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── fragment │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── graphics │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ └── animated │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ ├── mediacompat │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── v4 │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ └── v7 │ │ │ │ │ └── appcompat │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ └── tv │ │ │ │ └── higlobal │ │ │ │ └── tcpdemo │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── MainActivity$1.class │ │ │ │ ├── MainActivity$2.class │ │ │ │ ├── MainActivity$3.class │ │ │ │ ├── MainActivity.class │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$mipmap.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ ├── R.class │ │ │ │ ├── TaskCenter$1.class │ │ │ │ ├── TaskCenter$2.class │ │ │ │ ├── TaskCenter$OnReceiveCallbackBlock.class │ │ │ │ ├── TaskCenter$OnServerConnectedCallbackBlock.class │ │ │ │ ├── TaskCenter$OnServerDisconnectedCallbackBlock.class │ │ │ │ └── TaskCenter.class │ │ ├── incremental-classes │ │ │ └── debug │ │ │ │ └── instant-run-bootstrap.jar │ │ ├── incremental-runtime-classes │ │ │ └── debug │ │ │ │ └── instant-run.jar │ │ ├── incremental-verifier │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ ├── arch │ │ │ │ │ └── lifecycle │ │ │ │ │ │ └── R.class │ │ │ │ └── support │ │ │ │ │ ├── compat │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── constraint │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── coreui │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── coreutils │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── fragment │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── graphics │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ └── animated │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ ├── mediacompat │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── v4 │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ └── v7 │ │ │ │ │ └── appcompat │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ └── tv │ │ │ │ └── higlobal │ │ │ │ └── tcpdemo │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── MainActivity$1.class │ │ │ │ ├── MainActivity$2.class │ │ │ │ ├── MainActivity$3.class │ │ │ │ ├── MainActivity.class │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$mipmap.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ ├── R.class │ │ │ │ ├── TaskCenter$1.class │ │ │ │ ├── TaskCenter$2.class │ │ │ │ ├── TaskCenter$OnReceiveCallbackBlock.class │ │ │ │ ├── TaskCenter$OnServerConnectedCallbackBlock.class │ │ │ │ ├── TaskCenter$OnServerDisconnectedCallbackBlock.class │ │ │ │ └── TaskCenter.class │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ └── dependency.store │ │ │ ├── debug-mergeJavaRes │ │ │ │ ├── merge-state │ │ │ │ └── zip-cache │ │ │ │ │ ├── 1M2q5860ygcDLRrNci7ZrTh_LEo= │ │ │ │ │ ├── 40uI7Ft5TWTdwg3R9+CAYM4_EUg= │ │ │ │ │ ├── A_QRjHOZr2vCi93BPi78+XksP4c= │ │ │ │ │ ├── IHW+P5f33JX2KulL7MMVRsh_BnI= │ │ │ │ │ ├── M+9NXS3qmsq2qagTVr8QsCYpRo0= │ │ │ │ │ ├── OCk_7sUDq6TkoQ5vTgxeSi3ZRFs= │ │ │ │ │ ├── Vqf5x6Fnm82sf2EBJ9faosDG1Wk= │ │ │ │ │ ├── YOi0eKfTAF3Vast21axuVhtQv8s= │ │ │ │ │ ├── Z+gcxCxFHT1bzN6JBdSCCfoeEh8= │ │ │ │ │ ├── Ze7BwLOnuzunsDqZwW7WBO+j9YM= │ │ │ │ │ ├── _80K+WEKrECiZfNT6GtRfVQ1XnQ= │ │ │ │ │ ├── kJAU4_CsdZg2eDbrmNgCC1c3syg= │ │ │ │ │ ├── sOHZ4YRJVePNbZAzKdvwoxwu_n8= │ │ │ │ │ ├── u3gRXkuAmVBD2cm9x__oKOp0lmw= │ │ │ │ │ └── wpRAz0KRClD0RKKlo0hYubDfmcA= │ │ │ ├── debug-mergeJniLibs │ │ │ │ ├── merge-state │ │ │ │ └── zip-cache │ │ │ │ │ ├── 1M2q5860ygcDLRrNci7ZrTh_LEo= │ │ │ │ │ ├── 40uI7Ft5TWTdwg3R9+CAYM4_EUg= │ │ │ │ │ ├── A_QRjHOZr2vCi93BPi78+XksP4c= │ │ │ │ │ ├── IHW+P5f33JX2KulL7MMVRsh_BnI= │ │ │ │ │ ├── M+9NXS3qmsq2qagTVr8QsCYpRo0= │ │ │ │ │ ├── OCk_7sUDq6TkoQ5vTgxeSi3ZRFs= │ │ │ │ │ ├── Vqf5x6Fnm82sf2EBJ9faosDG1Wk= │ │ │ │ │ ├── YOi0eKfTAF3Vast21axuVhtQv8s= │ │ │ │ │ ├── Z+gcxCxFHT1bzN6JBdSCCfoeEh8= │ │ │ │ │ ├── Ze7BwLOnuzunsDqZwW7WBO+j9YM= │ │ │ │ │ ├── _80K+WEKrECiZfNT6GtRfVQ1XnQ= │ │ │ │ │ ├── kJAU4_CsdZg2eDbrmNgCC1c3syg= │ │ │ │ │ ├── sOHZ4YRJVePNbZAzKdvwoxwu_n8= │ │ │ │ │ ├── u3gRXkuAmVBD2cm9x__oKOp0lmw= │ │ │ │ │ └── wpRAz0KRClD0RKKlo0hYubDfmcA= │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values-bs.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 │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values-eu.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 │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ ├── values-pt-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 │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ ├── values-v26 │ │ │ │ │ │ └── values-v26.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── 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 │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values-bs.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 │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values-eu.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 │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ ├── values-pt-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 │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ ├── values-v26 │ │ │ │ │ │ └── values-v26.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebug │ │ │ │ └── debug │ │ │ │ │ ├── dex-renamer-state.txt │ │ │ │ │ ├── file-input-save-data.txt │ │ │ │ │ └── zip-cache │ │ │ │ │ └── M3nlLa40O_xzGcZyrfNlwqEvW6I= │ │ │ └── packageInstantRunResourcesDebug │ │ │ │ └── debug │ │ │ │ ├── dex-renamer-state.txt │ │ │ │ └── zip-cache │ │ │ │ └── xL+SXtQH_jN5wMmTR0mgHwqufuA= │ │ ├── instant-run-resources │ │ │ ├── output.json │ │ │ └── resources-debug.ir.ap_ │ │ ├── instant-run-support │ │ │ └── debug │ │ │ │ ├── dependencies │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── manifestChecker │ │ │ │ ├── manifest.crc │ │ │ │ └── manifest.xml │ │ │ │ ├── package_dependencies │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_0 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_1 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_2 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_3 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_4 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_5 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_6 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_7 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_8 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── package_slice_9 │ │ │ │ └── dex-renamer-state.txt │ │ │ │ ├── slice_0 │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── slice_1 │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── slice_2 │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── slice_3 │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── slice_4 │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── slice_5 │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── slice_6 │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── slice_7 │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── slice_8 │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── slice_9 │ │ │ │ └── AndroidManifest.xml │ │ ├── javaPrecompile │ │ │ └── debug │ │ │ │ └── annotationProcessors.json │ │ ├── manifest │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output.json │ │ ├── manifests │ │ │ ├── density │ │ │ │ └── debug │ │ │ │ │ └── output.json │ │ │ ├── full │ │ │ │ └── debug │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── output.json │ │ │ └── instant-run │ │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output.json │ │ ├── res │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ ├── output.json │ │ │ │ │ └── resources-debugAndroidTest.ap_ │ │ │ ├── debug │ │ │ │ ├── output.json │ │ │ │ └── resources-debug.ap_ │ │ │ ├── merged │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ ├── anim_abc_fade_in.xml.flat │ │ │ │ │ │ ├── anim_abc_fade_out.xml.flat │ │ │ │ │ │ ├── anim_abc_grow_fade_in_from_bottom.xml.flat │ │ │ │ │ │ ├── anim_abc_popup_enter.xml.flat │ │ │ │ │ │ ├── anim_abc_popup_exit.xml.flat │ │ │ │ │ │ ├── anim_abc_shrink_fade_out_from_bottom.xml.flat │ │ │ │ │ │ ├── anim_abc_slide_in_bottom.xml.flat │ │ │ │ │ │ ├── anim_abc_slide_in_top.xml.flat │ │ │ │ │ │ ├── anim_abc_slide_out_bottom.xml.flat │ │ │ │ │ │ ├── anim_abc_slide_out_top.xml.flat │ │ │ │ │ │ ├── anim_tooltip_enter.xml.flat │ │ │ │ │ │ ├── anim_tooltip_exit.xml.flat │ │ │ │ │ │ ├── color-v11_abc_background_cache_hint_selector_material_dark.xml.flat │ │ │ │ │ │ ├── color-v11_abc_background_cache_hint_selector_material_light.xml.flat │ │ │ │ │ │ ├── color-v23_abc_btn_colored_borderless_text_material.xml.flat │ │ │ │ │ │ ├── color-v23_abc_btn_colored_text_material.xml.flat │ │ │ │ │ │ ├── color-v23_abc_color_highlight_material.xml.flat │ │ │ │ │ │ ├── color-v23_abc_tint_btn_checkable.xml.flat │ │ │ │ │ │ ├── color-v23_abc_tint_default.xml.flat │ │ │ │ │ │ ├── color-v23_abc_tint_edittext.xml.flat │ │ │ │ │ │ ├── color-v23_abc_tint_seek_thumb.xml.flat │ │ │ │ │ │ ├── color-v23_abc_tint_spinner.xml.flat │ │ │ │ │ │ ├── color-v23_abc_tint_switch_track.xml.flat │ │ │ │ │ │ ├── color_abc_btn_colored_borderless_text_material.xml.flat │ │ │ │ │ │ ├── color_abc_btn_colored_text_material.xml.flat │ │ │ │ │ │ ├── color_abc_hint_foreground_material_dark.xml.flat │ │ │ │ │ │ ├── color_abc_hint_foreground_material_light.xml.flat │ │ │ │ │ │ ├── color_abc_primary_text_disable_only_material_dark.xml.flat │ │ │ │ │ │ ├── color_abc_primary_text_disable_only_material_light.xml.flat │ │ │ │ │ │ ├── color_abc_primary_text_material_dark.xml.flat │ │ │ │ │ │ ├── color_abc_primary_text_material_light.xml.flat │ │ │ │ │ │ ├── color_abc_search_url_text.xml.flat │ │ │ │ │ │ ├── color_abc_secondary_text_material_dark.xml.flat │ │ │ │ │ │ ├── color_abc_secondary_text_material_light.xml.flat │ │ │ │ │ │ ├── color_abc_tint_btn_checkable.xml.flat │ │ │ │ │ │ ├── color_abc_tint_default.xml.flat │ │ │ │ │ │ ├── color_abc_tint_edittext.xml.flat │ │ │ │ │ │ ├── color_abc_tint_seek_thumb.xml.flat │ │ │ │ │ │ ├── color_abc_tint_spinner.xml.flat │ │ │ │ │ │ ├── color_abc_tint_switch_track.xml.flat │ │ │ │ │ │ ├── color_switch_thumb_material_dark.xml.flat │ │ │ │ │ │ ├── color_switch_thumb_material_light.xml.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_low_normal.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_normal.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat │ │ │ │ │ │ ├── drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_low_normal.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_normal.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat │ │ │ │ │ │ ├── drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat │ │ │ │ │ │ ├── drawable-v21_abc_action_bar_item_background_material.xml.flat │ │ │ │ │ │ ├── drawable-v21_abc_btn_colored_material.xml.flat │ │ │ │ │ │ ├── drawable-v21_abc_edit_text_material.xml.flat │ │ │ │ │ │ ├── drawable-v21_notification_action_background.xml.flat │ │ │ │ │ │ ├── drawable-v23_abc_control_background_material.xml.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_normal.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat │ │ │ │ │ │ ├── drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ │ ├── drawable_abc_btn_borderless_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_btn_check_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_btn_colored_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_btn_default_mtrl_shape.xml.flat │ │ │ │ │ │ ├── drawable_abc_btn_radio_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_cab_background_internal_bg.xml.flat │ │ │ │ │ │ ├── drawable_abc_cab_background_top_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_dialog_material_background.xml.flat │ │ │ │ │ │ ├── drawable_abc_edit_text_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_ic_ab_back_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat │ │ │ │ │ │ ├── drawable_abc_ic_clear_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_ic_go_search_api_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_ic_menu_overflow_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_ic_search_api_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_ic_voice_search_api_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_item_background_holo_dark.xml.flat │ │ │ │ │ │ ├── drawable_abc_item_background_holo_light.xml.flat │ │ │ │ │ │ ├── drawable_abc_list_selector_background_transition_holo_dark.xml.flat │ │ │ │ │ │ ├── drawable_abc_list_selector_background_transition_holo_light.xml.flat │ │ │ │ │ │ ├── drawable_abc_list_selector_holo_dark.xml.flat │ │ │ │ │ │ ├── drawable_abc_list_selector_holo_light.xml.flat │ │ │ │ │ │ ├── drawable_abc_ratingbar_indicator_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_ratingbar_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_ratingbar_small_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_seekbar_thumb_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_seekbar_tick_mark_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_seekbar_track_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_spinner_textfield_background_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_switch_thumb_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_tab_indicator_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_text_cursor_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_textfield_search_material.xml.flat │ │ │ │ │ │ ├── drawable_abc_vector_test.xml.flat │ │ │ │ │ │ ├── drawable_notification_bg.xml.flat │ │ │ │ │ │ ├── drawable_notification_bg_low.xml.flat │ │ │ │ │ │ ├── drawable_notification_icon_background.xml.flat │ │ │ │ │ │ ├── drawable_notification_tile_bg.xml.flat │ │ │ │ │ │ ├── drawable_tooltip_frame_dark.xml.flat │ │ │ │ │ │ ├── drawable_tooltip_frame_light.xml.flat │ │ │ │ │ │ ├── layout-v16_notification_template_custom_big.xml.flat │ │ │ │ │ │ ├── layout-v21_notification_action.xml.flat │ │ │ │ │ │ ├── layout-v21_notification_action_tombstone.xml.flat │ │ │ │ │ │ ├── layout-v21_notification_template_custom_big.xml.flat │ │ │ │ │ │ ├── layout-v21_notification_template_icon_group.xml.flat │ │ │ │ │ │ ├── layout-v26_abc_screen_toolbar.xml.flat │ │ │ │ │ │ ├── layout_abc_action_bar_title_item.xml.flat │ │ │ │ │ │ ├── layout_abc_action_bar_up_container.xml.flat │ │ │ │ │ │ ├── layout_abc_action_bar_view_list_nav_layout.xml.flat │ │ │ │ │ │ ├── layout_abc_action_menu_item_layout.xml.flat │ │ │ │ │ │ ├── layout_abc_action_menu_layout.xml.flat │ │ │ │ │ │ ├── layout_abc_action_mode_bar.xml.flat │ │ │ │ │ │ ├── layout_abc_action_mode_close_item_material.xml.flat │ │ │ │ │ │ ├── layout_abc_activity_chooser_view.xml.flat │ │ │ │ │ │ ├── layout_abc_activity_chooser_view_list_item.xml.flat │ │ │ │ │ │ ├── layout_abc_alert_dialog_button_bar_material.xml.flat │ │ │ │ │ │ ├── layout_abc_alert_dialog_material.xml.flat │ │ │ │ │ │ ├── layout_abc_alert_dialog_title_material.xml.flat │ │ │ │ │ │ ├── layout_abc_dialog_title_material.xml.flat │ │ │ │ │ │ ├── layout_abc_expanded_menu_layout.xml.flat │ │ │ │ │ │ ├── layout_abc_list_menu_item_checkbox.xml.flat │ │ │ │ │ │ ├── layout_abc_list_menu_item_icon.xml.flat │ │ │ │ │ │ ├── layout_abc_list_menu_item_layout.xml.flat │ │ │ │ │ │ ├── layout_abc_list_menu_item_radio.xml.flat │ │ │ │ │ │ ├── layout_abc_popup_menu_header_item_layout.xml.flat │ │ │ │ │ │ ├── layout_abc_popup_menu_item_layout.xml.flat │ │ │ │ │ │ ├── layout_abc_screen_content_include.xml.flat │ │ │ │ │ │ ├── layout_abc_screen_simple.xml.flat │ │ │ │ │ │ ├── layout_abc_screen_simple_overlay_action_mode.xml.flat │ │ │ │ │ │ ├── layout_abc_screen_toolbar.xml.flat │ │ │ │ │ │ ├── layout_abc_search_dropdown_item_icons_2line.xml.flat │ │ │ │ │ │ ├── layout_abc_search_view.xml.flat │ │ │ │ │ │ ├── layout_abc_select_dialog_material.xml.flat │ │ │ │ │ │ ├── layout_notification_action.xml.flat │ │ │ │ │ │ ├── layout_notification_action_tombstone.xml.flat │ │ │ │ │ │ ├── layout_notification_media_action.xml.flat │ │ │ │ │ │ ├── layout_notification_media_cancel_action.xml.flat │ │ │ │ │ │ ├── layout_notification_template_big_media.xml.flat │ │ │ │ │ │ ├── layout_notification_template_big_media_custom.xml.flat │ │ │ │ │ │ ├── layout_notification_template_big_media_narrow.xml.flat │ │ │ │ │ │ ├── layout_notification_template_big_media_narrow_custom.xml.flat │ │ │ │ │ │ ├── layout_notification_template_custom_big.xml.flat │ │ │ │ │ │ ├── layout_notification_template_icon_group.xml.flat │ │ │ │ │ │ ├── layout_notification_template_lines_media.xml.flat │ │ │ │ │ │ ├── layout_notification_template_media.xml.flat │ │ │ │ │ │ ├── layout_notification_template_media_custom.xml.flat │ │ │ │ │ │ ├── layout_notification_template_part_chronometer.xml.flat │ │ │ │ │ │ ├── layout_notification_template_part_time.xml.flat │ │ │ │ │ │ ├── layout_select_dialog_item_material.xml.flat │ │ │ │ │ │ ├── layout_select_dialog_multichoice_material.xml.flat │ │ │ │ │ │ ├── layout_select_dialog_singlechoice_material.xml.flat │ │ │ │ │ │ ├── layout_support_simple_spinner_dropdown_item.xml.flat │ │ │ │ │ │ ├── layout_tooltip.xml.flat │ │ │ │ │ │ ├── values-af_values-af.arsc.flat │ │ │ │ │ │ ├── values-am_values-am.arsc.flat │ │ │ │ │ │ ├── values-ar_values-ar.arsc.flat │ │ │ │ │ │ ├── values-az_values-az.arsc.flat │ │ │ │ │ │ ├── values-b+sr+Latn_values-b+sr+Latn.arsc.flat │ │ │ │ │ │ ├── values-be_values-be.arsc.flat │ │ │ │ │ │ ├── values-bg_values-bg.arsc.flat │ │ │ │ │ │ ├── values-bn_values-bn.arsc.flat │ │ │ │ │ │ ├── values-bs_values-bs.arsc.flat │ │ │ │ │ │ ├── values-ca_values-ca.arsc.flat │ │ │ │ │ │ ├── values-cs_values-cs.arsc.flat │ │ │ │ │ │ ├── values-da_values-da.arsc.flat │ │ │ │ │ │ ├── values-de_values-de.arsc.flat │ │ │ │ │ │ ├── values-el_values-el.arsc.flat │ │ │ │ │ │ ├── values-en-rAU_values-en-rAU.arsc.flat │ │ │ │ │ │ ├── values-en-rGB_values-en-rGB.arsc.flat │ │ │ │ │ │ ├── values-en-rIN_values-en-rIN.arsc.flat │ │ │ │ │ │ ├── values-es-rUS_values-es-rUS.arsc.flat │ │ │ │ │ │ ├── values-es_values-es.arsc.flat │ │ │ │ │ │ ├── values-et_values-et.arsc.flat │ │ │ │ │ │ ├── values-eu_values-eu.arsc.flat │ │ │ │ │ │ ├── values-fa_values-fa.arsc.flat │ │ │ │ │ │ ├── values-fi_values-fi.arsc.flat │ │ │ │ │ │ ├── values-fr-rCA_values-fr-rCA.arsc.flat │ │ │ │ │ │ ├── values-fr_values-fr.arsc.flat │ │ │ │ │ │ ├── values-gl_values-gl.arsc.flat │ │ │ │ │ │ ├── values-gu_values-gu.arsc.flat │ │ │ │ │ │ ├── values-h720dp-v13_values-h720dp-v13.arsc.flat │ │ │ │ │ │ ├── values-hdpi-v4_values-hdpi-v4.arsc.flat │ │ │ │ │ │ ├── values-hi_values-hi.arsc.flat │ │ │ │ │ │ ├── values-hr_values-hr.arsc.flat │ │ │ │ │ │ ├── values-hu_values-hu.arsc.flat │ │ │ │ │ │ ├── values-hy_values-hy.arsc.flat │ │ │ │ │ │ ├── values-in_values-in.arsc.flat │ │ │ │ │ │ ├── values-is_values-is.arsc.flat │ │ │ │ │ │ ├── values-it_values-it.arsc.flat │ │ │ │ │ │ ├── values-iw_values-iw.arsc.flat │ │ │ │ │ │ ├── values-ja_values-ja.arsc.flat │ │ │ │ │ │ ├── values-ka_values-ka.arsc.flat │ │ │ │ │ │ ├── values-kk_values-kk.arsc.flat │ │ │ │ │ │ ├── values-km_values-km.arsc.flat │ │ │ │ │ │ ├── values-kn_values-kn.arsc.flat │ │ │ │ │ │ ├── values-ko_values-ko.arsc.flat │ │ │ │ │ │ ├── values-ky_values-ky.arsc.flat │ │ │ │ │ │ ├── values-land_values-land.arsc.flat │ │ │ │ │ │ ├── values-large-v4_values-large-v4.arsc.flat │ │ │ │ │ │ ├── values-ldltr-v21_values-ldltr-v21.arsc.flat │ │ │ │ │ │ ├── values-lo_values-lo.arsc.flat │ │ │ │ │ │ ├── values-lt_values-lt.arsc.flat │ │ │ │ │ │ ├── values-lv_values-lv.arsc.flat │ │ │ │ │ │ ├── values-mk_values-mk.arsc.flat │ │ │ │ │ │ ├── values-ml_values-ml.arsc.flat │ │ │ │ │ │ ├── values-mn_values-mn.arsc.flat │ │ │ │ │ │ ├── values-mr_values-mr.arsc.flat │ │ │ │ │ │ ├── values-ms_values-ms.arsc.flat │ │ │ │ │ │ ├── values-my_values-my.arsc.flat │ │ │ │ │ │ ├── values-nb_values-nb.arsc.flat │ │ │ │ │ │ ├── values-ne_values-ne.arsc.flat │ │ │ │ │ │ ├── values-night-v8_values-night-v8.arsc.flat │ │ │ │ │ │ ├── values-nl_values-nl.arsc.flat │ │ │ │ │ │ ├── values-pa_values-pa.arsc.flat │ │ │ │ │ │ ├── values-pl_values-pl.arsc.flat │ │ │ │ │ │ ├── values-port_values-port.arsc.flat │ │ │ │ │ │ ├── values-pt-rBR_values-pt-rBR.arsc.flat │ │ │ │ │ │ ├── values-pt-rPT_values-pt-rPT.arsc.flat │ │ │ │ │ │ ├── values-pt_values-pt.arsc.flat │ │ │ │ │ │ ├── values-ro_values-ro.arsc.flat │ │ │ │ │ │ ├── values-ru_values-ru.arsc.flat │ │ │ │ │ │ ├── values-si_values-si.arsc.flat │ │ │ │ │ │ ├── values-sk_values-sk.arsc.flat │ │ │ │ │ │ ├── values-sl_values-sl.arsc.flat │ │ │ │ │ │ ├── values-sq_values-sq.arsc.flat │ │ │ │ │ │ ├── values-sr_values-sr.arsc.flat │ │ │ │ │ │ ├── values-sv_values-sv.arsc.flat │ │ │ │ │ │ ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat │ │ │ │ │ │ ├── values-sw_values-sw.arsc.flat │ │ │ │ │ │ ├── values-ta_values-ta.arsc.flat │ │ │ │ │ │ ├── values-te_values-te.arsc.flat │ │ │ │ │ │ ├── values-th_values-th.arsc.flat │ │ │ │ │ │ ├── values-tl_values-tl.arsc.flat │ │ │ │ │ │ ├── values-tr_values-tr.arsc.flat │ │ │ │ │ │ ├── values-uk_values-uk.arsc.flat │ │ │ │ │ │ ├── values-ur_values-ur.arsc.flat │ │ │ │ │ │ ├── values-uz_values-uz.arsc.flat │ │ │ │ │ │ ├── values-v11_values-v11.arsc.flat │ │ │ │ │ │ ├── values-v12_values-v12.arsc.flat │ │ │ │ │ │ ├── values-v13_values-v13.arsc.flat │ │ │ │ │ │ ├── values-v14_values-v14.arsc.flat │ │ │ │ │ │ ├── values-v16_values-v16.arsc.flat │ │ │ │ │ │ ├── values-v17_values-v17.arsc.flat │ │ │ │ │ │ ├── values-v18_values-v18.arsc.flat │ │ │ │ │ │ ├── values-v21_values-v21.arsc.flat │ │ │ │ │ │ ├── values-v22_values-v22.arsc.flat │ │ │ │ │ │ ├── values-v23_values-v23.arsc.flat │ │ │ │ │ │ ├── values-v24_values-v24.arsc.flat │ │ │ │ │ │ ├── values-v25_values-v25.arsc.flat │ │ │ │ │ │ ├── values-v26_values-v26.arsc.flat │ │ │ │ │ │ ├── values-vi_values-vi.arsc.flat │ │ │ │ │ │ ├── values-xlarge-v4_values-xlarge-v4.arsc.flat │ │ │ │ │ │ ├── values-zh-rCN_values-zh-rCN.arsc.flat │ │ │ │ │ │ ├── values-zh-rHK_values-zh-rHK.arsc.flat │ │ │ │ │ │ ├── values-zh-rTW_values-zh-rTW.arsc.flat │ │ │ │ │ │ ├── values-zu_values-zu.arsc.flat │ │ │ │ │ │ └── values_values.arsc.flat │ │ │ │ └── debug │ │ │ │ │ ├── anim_abc_fade_in.xml.flat │ │ │ │ │ ├── anim_abc_fade_out.xml.flat │ │ │ │ │ ├── anim_abc_grow_fade_in_from_bottom.xml.flat │ │ │ │ │ ├── anim_abc_popup_enter.xml.flat │ │ │ │ │ ├── anim_abc_popup_exit.xml.flat │ │ │ │ │ ├── anim_abc_shrink_fade_out_from_bottom.xml.flat │ │ │ │ │ ├── anim_abc_slide_in_bottom.xml.flat │ │ │ │ │ ├── anim_abc_slide_in_top.xml.flat │ │ │ │ │ ├── anim_abc_slide_out_bottom.xml.flat │ │ │ │ │ ├── anim_abc_slide_out_top.xml.flat │ │ │ │ │ ├── anim_tooltip_enter.xml.flat │ │ │ │ │ ├── anim_tooltip_exit.xml.flat │ │ │ │ │ ├── color-v11_abc_background_cache_hint_selector_material_dark.xml.flat │ │ │ │ │ ├── color-v11_abc_background_cache_hint_selector_material_light.xml.flat │ │ │ │ │ ├── color-v23_abc_btn_colored_borderless_text_material.xml.flat │ │ │ │ │ ├── color-v23_abc_btn_colored_text_material.xml.flat │ │ │ │ │ ├── color-v23_abc_color_highlight_material.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_btn_checkable.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_default.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_edittext.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_seek_thumb.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_spinner.xml.flat │ │ │ │ │ ├── color-v23_abc_tint_switch_track.xml.flat │ │ │ │ │ ├── color_abc_btn_colored_borderless_text_material.xml.flat │ │ │ │ │ ├── color_abc_btn_colored_text_material.xml.flat │ │ │ │ │ ├── color_abc_hint_foreground_material_dark.xml.flat │ │ │ │ │ ├── color_abc_hint_foreground_material_light.xml.flat │ │ │ │ │ ├── color_abc_primary_text_disable_only_material_dark.xml.flat │ │ │ │ │ ├── color_abc_primary_text_disable_only_material_light.xml.flat │ │ │ │ │ ├── color_abc_primary_text_material_dark.xml.flat │ │ │ │ │ ├── color_abc_primary_text_material_light.xml.flat │ │ │ │ │ ├── color_abc_search_url_text.xml.flat │ │ │ │ │ ├── color_abc_secondary_text_material_dark.xml.flat │ │ │ │ │ ├── color_abc_secondary_text_material_light.xml.flat │ │ │ │ │ ├── color_abc_tint_btn_checkable.xml.flat │ │ │ │ │ ├── color_abc_tint_default.xml.flat │ │ │ │ │ ├── color_abc_tint_edittext.xml.flat │ │ │ │ │ ├── color_abc_tint_seek_thumb.xml.flat │ │ │ │ │ ├── color_abc_tint_spinner.xml.flat │ │ │ │ │ ├── color_abc_tint_switch_track.xml.flat │ │ │ │ │ ├── color_switch_thumb_material_dark.xml.flat │ │ │ │ │ ├── color_switch_thumb_material_light.xml.flat │ │ │ │ │ ├── drawable-anydpi-v21_ic_launcher_background.xml.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_low_normal.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_normal.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat │ │ │ │ │ ├── drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat │ │ │ │ │ ├── drawable-hdpi_ic_launcher_background.png.flat │ │ │ │ │ ├── drawable-ldpi_ic_launcher_background.png.flat │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_low_normal.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_normal.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat │ │ │ │ │ ├── drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat │ │ │ │ │ ├── drawable-mdpi_ic_launcher_background.png.flat │ │ │ │ │ ├── drawable-v21_abc_action_bar_item_background_material.xml.flat │ │ │ │ │ ├── drawable-v21_abc_btn_colored_material.xml.flat │ │ │ │ │ ├── drawable-v21_abc_edit_text_material.xml.flat │ │ │ │ │ ├── drawable-v21_notification_action_background.xml.flat │ │ │ │ │ ├── drawable-v23_abc_control_background_material.xml.flat │ │ │ │ │ ├── drawable-v24_ic_launcher_foreground.xml.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_normal.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat │ │ │ │ │ ├── drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat │ │ │ │ │ ├── drawable-xhdpi_ic_launcher_background.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxhdpi_ic_launcher_background.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat │ │ │ │ │ ├── drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat │ │ │ │ │ ├── drawable-xxxhdpi_ic_launcher_background.png.flat │ │ │ │ │ ├── drawable_abc_btn_borderless_material.xml.flat │ │ │ │ │ ├── drawable_abc_btn_check_material.xml.flat │ │ │ │ │ ├── drawable_abc_btn_colored_material.xml.flat │ │ │ │ │ ├── drawable_abc_btn_default_mtrl_shape.xml.flat │ │ │ │ │ ├── drawable_abc_btn_radio_material.xml.flat │ │ │ │ │ ├── drawable_abc_cab_background_internal_bg.xml.flat │ │ │ │ │ ├── drawable_abc_cab_background_top_material.xml.flat │ │ │ │ │ ├── drawable_abc_dialog_material_background.xml.flat │ │ │ │ │ ├── drawable_abc_edit_text_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_ab_back_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat │ │ │ │ │ ├── drawable_abc_ic_clear_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_go_search_api_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_menu_overflow_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_search_api_material.xml.flat │ │ │ │ │ ├── drawable_abc_ic_voice_search_api_material.xml.flat │ │ │ │ │ ├── drawable_abc_item_background_holo_dark.xml.flat │ │ │ │ │ ├── drawable_abc_item_background_holo_light.xml.flat │ │ │ │ │ ├── drawable_abc_list_selector_background_transition_holo_dark.xml.flat │ │ │ │ │ ├── drawable_abc_list_selector_background_transition_holo_light.xml.flat │ │ │ │ │ ├── drawable_abc_list_selector_holo_dark.xml.flat │ │ │ │ │ ├── drawable_abc_list_selector_holo_light.xml.flat │ │ │ │ │ ├── drawable_abc_ratingbar_indicator_material.xml.flat │ │ │ │ │ ├── drawable_abc_ratingbar_material.xml.flat │ │ │ │ │ ├── drawable_abc_ratingbar_small_material.xml.flat │ │ │ │ │ ├── drawable_abc_seekbar_thumb_material.xml.flat │ │ │ │ │ ├── drawable_abc_seekbar_tick_mark_material.xml.flat │ │ │ │ │ ├── drawable_abc_seekbar_track_material.xml.flat │ │ │ │ │ ├── drawable_abc_spinner_textfield_background_material.xml.flat │ │ │ │ │ ├── drawable_abc_switch_thumb_material.xml.flat │ │ │ │ │ ├── drawable_abc_tab_indicator_material.xml.flat │ │ │ │ │ ├── drawable_abc_text_cursor_material.xml.flat │ │ │ │ │ ├── drawable_abc_textfield_search_material.xml.flat │ │ │ │ │ ├── drawable_abc_vector_test.xml.flat │ │ │ │ │ ├── drawable_notification_bg.xml.flat │ │ │ │ │ ├── drawable_notification_bg_low.xml.flat │ │ │ │ │ ├── drawable_notification_icon_background.xml.flat │ │ │ │ │ ├── drawable_notification_tile_bg.xml.flat │ │ │ │ │ ├── drawable_tooltip_frame_dark.xml.flat │ │ │ │ │ ├── drawable_tooltip_frame_light.xml.flat │ │ │ │ │ ├── layout-v16_notification_template_custom_big.xml.flat │ │ │ │ │ ├── layout-v21_notification_action.xml.flat │ │ │ │ │ ├── layout-v21_notification_action_tombstone.xml.flat │ │ │ │ │ ├── layout-v21_notification_template_custom_big.xml.flat │ │ │ │ │ ├── layout-v21_notification_template_icon_group.xml.flat │ │ │ │ │ ├── layout-v26_abc_screen_toolbar.xml.flat │ │ │ │ │ ├── layout_abc_action_bar_title_item.xml.flat │ │ │ │ │ ├── layout_abc_action_bar_up_container.xml.flat │ │ │ │ │ ├── layout_abc_action_bar_view_list_nav_layout.xml.flat │ │ │ │ │ ├── layout_abc_action_menu_item_layout.xml.flat │ │ │ │ │ ├── layout_abc_action_menu_layout.xml.flat │ │ │ │ │ ├── layout_abc_action_mode_bar.xml.flat │ │ │ │ │ ├── layout_abc_action_mode_close_item_material.xml.flat │ │ │ │ │ ├── layout_abc_activity_chooser_view.xml.flat │ │ │ │ │ ├── layout_abc_activity_chooser_view_list_item.xml.flat │ │ │ │ │ ├── layout_abc_alert_dialog_button_bar_material.xml.flat │ │ │ │ │ ├── layout_abc_alert_dialog_material.xml.flat │ │ │ │ │ ├── layout_abc_alert_dialog_title_material.xml.flat │ │ │ │ │ ├── layout_abc_dialog_title_material.xml.flat │ │ │ │ │ ├── layout_abc_expanded_menu_layout.xml.flat │ │ │ │ │ ├── layout_abc_list_menu_item_checkbox.xml.flat │ │ │ │ │ ├── layout_abc_list_menu_item_icon.xml.flat │ │ │ │ │ ├── layout_abc_list_menu_item_layout.xml.flat │ │ │ │ │ ├── layout_abc_list_menu_item_radio.xml.flat │ │ │ │ │ ├── layout_abc_popup_menu_header_item_layout.xml.flat │ │ │ │ │ ├── layout_abc_popup_menu_item_layout.xml.flat │ │ │ │ │ ├── layout_abc_screen_content_include.xml.flat │ │ │ │ │ ├── layout_abc_screen_simple.xml.flat │ │ │ │ │ ├── layout_abc_screen_simple_overlay_action_mode.xml.flat │ │ │ │ │ ├── layout_abc_screen_toolbar.xml.flat │ │ │ │ │ ├── layout_abc_search_dropdown_item_icons_2line.xml.flat │ │ │ │ │ ├── layout_abc_search_view.xml.flat │ │ │ │ │ ├── layout_abc_select_dialog_material.xml.flat │ │ │ │ │ ├── layout_activity_main.xml.flat │ │ │ │ │ ├── layout_notification_action.xml.flat │ │ │ │ │ ├── layout_notification_action_tombstone.xml.flat │ │ │ │ │ ├── layout_notification_media_action.xml.flat │ │ │ │ │ ├── layout_notification_media_cancel_action.xml.flat │ │ │ │ │ ├── layout_notification_template_big_media.xml.flat │ │ │ │ │ ├── layout_notification_template_big_media_custom.xml.flat │ │ │ │ │ ├── layout_notification_template_big_media_narrow.xml.flat │ │ │ │ │ ├── layout_notification_template_big_media_narrow_custom.xml.flat │ │ │ │ │ ├── layout_notification_template_custom_big.xml.flat │ │ │ │ │ ├── layout_notification_template_icon_group.xml.flat │ │ │ │ │ ├── layout_notification_template_lines_media.xml.flat │ │ │ │ │ ├── layout_notification_template_media.xml.flat │ │ │ │ │ ├── layout_notification_template_media_custom.xml.flat │ │ │ │ │ ├── layout_notification_template_part_chronometer.xml.flat │ │ │ │ │ ├── layout_notification_template_part_time.xml.flat │ │ │ │ │ ├── layout_select_dialog_item_material.xml.flat │ │ │ │ │ ├── layout_select_dialog_multichoice_material.xml.flat │ │ │ │ │ ├── layout_select_dialog_singlechoice_material.xml.flat │ │ │ │ │ ├── layout_support_simple_spinner_dropdown_item.xml.flat │ │ │ │ │ ├── layout_tooltip.xml.flat │ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher.xml.flat │ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat │ │ │ │ │ ├── mipmap-hdpi_ic_launcher.png.flat │ │ │ │ │ ├── mipmap-hdpi_ic_launcher_round.png.flat │ │ │ │ │ ├── mipmap-mdpi_ic_launcher.png.flat │ │ │ │ │ ├── mipmap-mdpi_ic_launcher_round.png.flat │ │ │ │ │ ├── mipmap-xhdpi_ic_launcher.png.flat │ │ │ │ │ ├── mipmap-xhdpi_ic_launcher_round.png.flat │ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher.png.flat │ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_round.png.flat │ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher.png.flat │ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_round.png.flat │ │ │ │ │ ├── values-af_values-af.arsc.flat │ │ │ │ │ ├── values-am_values-am.arsc.flat │ │ │ │ │ ├── values-ar_values-ar.arsc.flat │ │ │ │ │ ├── values-az_values-az.arsc.flat │ │ │ │ │ ├── values-b+sr+Latn_values-b+sr+Latn.arsc.flat │ │ │ │ │ ├── values-be_values-be.arsc.flat │ │ │ │ │ ├── values-bg_values-bg.arsc.flat │ │ │ │ │ ├── values-bn_values-bn.arsc.flat │ │ │ │ │ ├── values-bs_values-bs.arsc.flat │ │ │ │ │ ├── values-ca_values-ca.arsc.flat │ │ │ │ │ ├── values-cs_values-cs.arsc.flat │ │ │ │ │ ├── values-da_values-da.arsc.flat │ │ │ │ │ ├── values-de_values-de.arsc.flat │ │ │ │ │ ├── values-el_values-el.arsc.flat │ │ │ │ │ ├── values-en-rAU_values-en-rAU.arsc.flat │ │ │ │ │ ├── values-en-rGB_values-en-rGB.arsc.flat │ │ │ │ │ ├── values-en-rIN_values-en-rIN.arsc.flat │ │ │ │ │ ├── values-es-rUS_values-es-rUS.arsc.flat │ │ │ │ │ ├── values-es_values-es.arsc.flat │ │ │ │ │ ├── values-et_values-et.arsc.flat │ │ │ │ │ ├── values-eu_values-eu.arsc.flat │ │ │ │ │ ├── values-fa_values-fa.arsc.flat │ │ │ │ │ ├── values-fi_values-fi.arsc.flat │ │ │ │ │ ├── values-fr-rCA_values-fr-rCA.arsc.flat │ │ │ │ │ ├── values-fr_values-fr.arsc.flat │ │ │ │ │ ├── values-gl_values-gl.arsc.flat │ │ │ │ │ ├── values-gu_values-gu.arsc.flat │ │ │ │ │ ├── values-h720dp-v13_values-h720dp-v13.arsc.flat │ │ │ │ │ ├── values-hdpi-v4_values-hdpi-v4.arsc.flat │ │ │ │ │ ├── values-hi_values-hi.arsc.flat │ │ │ │ │ ├── values-hr_values-hr.arsc.flat │ │ │ │ │ ├── values-hu_values-hu.arsc.flat │ │ │ │ │ ├── values-hy_values-hy.arsc.flat │ │ │ │ │ ├── values-in_values-in.arsc.flat │ │ │ │ │ ├── values-is_values-is.arsc.flat │ │ │ │ │ ├── values-it_values-it.arsc.flat │ │ │ │ │ ├── values-iw_values-iw.arsc.flat │ │ │ │ │ ├── values-ja_values-ja.arsc.flat │ │ │ │ │ ├── values-ka_values-ka.arsc.flat │ │ │ │ │ ├── values-kk_values-kk.arsc.flat │ │ │ │ │ ├── values-km_values-km.arsc.flat │ │ │ │ │ ├── values-kn_values-kn.arsc.flat │ │ │ │ │ ├── values-ko_values-ko.arsc.flat │ │ │ │ │ ├── values-ky_values-ky.arsc.flat │ │ │ │ │ ├── values-land_values-land.arsc.flat │ │ │ │ │ ├── values-large-v4_values-large-v4.arsc.flat │ │ │ │ │ ├── values-ldltr-v21_values-ldltr-v21.arsc.flat │ │ │ │ │ ├── values-lo_values-lo.arsc.flat │ │ │ │ │ ├── values-lt_values-lt.arsc.flat │ │ │ │ │ ├── values-lv_values-lv.arsc.flat │ │ │ │ │ ├── values-mk_values-mk.arsc.flat │ │ │ │ │ ├── values-ml_values-ml.arsc.flat │ │ │ │ │ ├── values-mn_values-mn.arsc.flat │ │ │ │ │ ├── values-mr_values-mr.arsc.flat │ │ │ │ │ ├── values-ms_values-ms.arsc.flat │ │ │ │ │ ├── values-my_values-my.arsc.flat │ │ │ │ │ ├── values-nb_values-nb.arsc.flat │ │ │ │ │ ├── values-ne_values-ne.arsc.flat │ │ │ │ │ ├── values-night-v8_values-night-v8.arsc.flat │ │ │ │ │ ├── values-nl_values-nl.arsc.flat │ │ │ │ │ ├── values-pa_values-pa.arsc.flat │ │ │ │ │ ├── values-pl_values-pl.arsc.flat │ │ │ │ │ ├── values-port_values-port.arsc.flat │ │ │ │ │ ├── values-pt-rBR_values-pt-rBR.arsc.flat │ │ │ │ │ ├── values-pt-rPT_values-pt-rPT.arsc.flat │ │ │ │ │ ├── values-pt_values-pt.arsc.flat │ │ │ │ │ ├── values-ro_values-ro.arsc.flat │ │ │ │ │ ├── values-ru_values-ru.arsc.flat │ │ │ │ │ ├── values-si_values-si.arsc.flat │ │ │ │ │ ├── values-sk_values-sk.arsc.flat │ │ │ │ │ ├── values-sl_values-sl.arsc.flat │ │ │ │ │ ├── values-sq_values-sq.arsc.flat │ │ │ │ │ ├── values-sr_values-sr.arsc.flat │ │ │ │ │ ├── values-sv_values-sv.arsc.flat │ │ │ │ │ ├── values-sw600dp-v13_values-sw600dp-v13.arsc.flat │ │ │ │ │ ├── values-sw_values-sw.arsc.flat │ │ │ │ │ ├── values-ta_values-ta.arsc.flat │ │ │ │ │ ├── values-te_values-te.arsc.flat │ │ │ │ │ ├── values-th_values-th.arsc.flat │ │ │ │ │ ├── values-tl_values-tl.arsc.flat │ │ │ │ │ ├── values-tr_values-tr.arsc.flat │ │ │ │ │ ├── values-uk_values-uk.arsc.flat │ │ │ │ │ ├── values-ur_values-ur.arsc.flat │ │ │ │ │ ├── values-uz_values-uz.arsc.flat │ │ │ │ │ ├── values-v11_values-v11.arsc.flat │ │ │ │ │ ├── values-v12_values-v12.arsc.flat │ │ │ │ │ ├── values-v13_values-v13.arsc.flat │ │ │ │ │ ├── values-v14_values-v14.arsc.flat │ │ │ │ │ ├── values-v16_values-v16.arsc.flat │ │ │ │ │ ├── values-v17_values-v17.arsc.flat │ │ │ │ │ ├── values-v18_values-v18.arsc.flat │ │ │ │ │ ├── values-v21_values-v21.arsc.flat │ │ │ │ │ ├── values-v22_values-v22.arsc.flat │ │ │ │ │ ├── values-v23_values-v23.arsc.flat │ │ │ │ │ ├── values-v24_values-v24.arsc.flat │ │ │ │ │ ├── values-v25_values-v25.arsc.flat │ │ │ │ │ ├── values-v26_values-v26.arsc.flat │ │ │ │ │ ├── values-vi_values-vi.arsc.flat │ │ │ │ │ ├── values-xlarge-v4_values-xlarge-v4.arsc.flat │ │ │ │ │ ├── values-zh-rCN_values-zh-rCN.arsc.flat │ │ │ │ │ ├── values-zh-rHK_values-zh-rHK.arsc.flat │ │ │ │ │ ├── values-zh-rTW_values-zh-rTW.arsc.flat │ │ │ │ │ ├── values-zu_values-zu.arsc.flat │ │ │ │ │ └── values_values.arsc.flat │ │ │ └── symbol-table-with-package │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── package-aware-r.txt │ │ │ │ └── debug │ │ │ │ └── package-aware-r.txt │ │ ├── split-apk │ │ │ └── debug │ │ │ │ ├── dep │ │ │ │ └── dependencies.apk │ │ │ │ └── slices │ │ │ │ ├── slice_0.apk │ │ │ │ ├── slice_1.apk │ │ │ │ ├── slice_2.apk │ │ │ │ ├── slice_3.apk │ │ │ │ ├── slice_4.apk │ │ │ │ ├── slice_5.apk │ │ │ │ ├── slice_6.apk │ │ │ │ ├── slice_7.apk │ │ │ │ ├── slice_8.apk │ │ │ │ └── slice_9.apk │ │ ├── splits-support │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── split-list.gson │ │ │ └── debug │ │ │ │ └── split-list.gson │ │ ├── symbols │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── R.txt │ │ │ └── debug │ │ │ │ └── R.txt │ │ └── transforms │ │ │ ├── dexBuilder │ │ │ └── debug │ │ │ │ ├── 35 │ │ │ │ ├── android │ │ │ │ │ ├── arch │ │ │ │ │ │ └── lifecycle │ │ │ │ │ │ │ └── R.dex │ │ │ │ │ └── support │ │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ │ ├── R$color.dex │ │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ │ ├── R$string.dex │ │ │ │ │ │ ├── R$style.dex │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ └── R.dex │ │ │ │ │ │ ├── constraint │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ └── R.dex │ │ │ │ │ │ ├── coreui │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ │ ├── R$color.dex │ │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ │ ├── R$string.dex │ │ │ │ │ │ ├── R$style.dex │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ └── R.dex │ │ │ │ │ │ ├── coreutils │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ │ ├── R$color.dex │ │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ │ ├── R$string.dex │ │ │ │ │ │ ├── R$style.dex │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ └── R.dex │ │ │ │ │ │ ├── fragment │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ │ ├── R$color.dex │ │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ │ ├── R$string.dex │ │ │ │ │ │ ├── R$style.dex │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ └── R.dex │ │ │ │ │ │ ├── graphics │ │ │ │ │ │ └── drawable │ │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ │ │ ├── R$color.dex │ │ │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ │ │ ├── R$string.dex │ │ │ │ │ │ │ ├── R$style.dex │ │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ │ ├── R.dex │ │ │ │ │ │ │ └── animated │ │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ │ │ ├── R$color.dex │ │ │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ │ │ ├── R$string.dex │ │ │ │ │ │ │ ├── R$style.dex │ │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ │ └── R.dex │ │ │ │ │ │ ├── mediacompat │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ │ ├── R$color.dex │ │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ │ ├── R$string.dex │ │ │ │ │ │ ├── R$style.dex │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ └── R.dex │ │ │ │ │ │ ├── v4 │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ │ ├── R$color.dex │ │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ │ ├── R$string.dex │ │ │ │ │ │ ├── R$style.dex │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ └── R.dex │ │ │ │ │ │ └── v7 │ │ │ │ │ │ └── appcompat │ │ │ │ │ │ ├── R$anim.dex │ │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ │ ├── R$color.dex │ │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ │ ├── R$id.dex │ │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ │ ├── R$string.dex │ │ │ │ │ │ ├── R$style.dex │ │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ │ └── R.dex │ │ │ │ └── tv │ │ │ │ │ └── higlobal │ │ │ │ │ └── tcpdemo │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ ├── MainActivity$1.dex │ │ │ │ │ ├── MainActivity$2.dex │ │ │ │ │ ├── MainActivity$3.dex │ │ │ │ │ ├── MainActivity.dex │ │ │ │ │ ├── R$anim.dex │ │ │ │ │ ├── R$attr.dex │ │ │ │ │ ├── R$bool.dex │ │ │ │ │ ├── R$color.dex │ │ │ │ │ ├── R$dimen.dex │ │ │ │ │ ├── R$drawable.dex │ │ │ │ │ ├── R$id.dex │ │ │ │ │ ├── R$integer.dex │ │ │ │ │ ├── R$layout.dex │ │ │ │ │ ├── R$mipmap.dex │ │ │ │ │ ├── R$string.dex │ │ │ │ │ ├── R$style.dex │ │ │ │ │ ├── R$styleable.dex │ │ │ │ │ ├── R.dex │ │ │ │ │ ├── TaskCenter$1.dex │ │ │ │ │ ├── TaskCenter$2.dex │ │ │ │ │ ├── TaskCenter$OnReceiveCallbackBlock.dex │ │ │ │ │ ├── TaskCenter$OnServerConnectedCallbackBlock.dex │ │ │ │ │ ├── TaskCenter$OnServerDisconnectedCallbackBlock.dex │ │ │ │ │ └── TaskCenter.dex │ │ │ │ ├── 0.jar │ │ │ │ ├── 1.jar │ │ │ │ ├── 10.jar │ │ │ │ ├── 11.jar │ │ │ │ ├── 12.jar │ │ │ │ ├── 13.jar │ │ │ │ ├── 14.jar │ │ │ │ ├── 2.jar │ │ │ │ ├── 3.jar │ │ │ │ ├── 4.jar │ │ │ │ ├── 5.jar │ │ │ │ ├── 6.jar │ │ │ │ ├── 7.jar │ │ │ │ ├── 8.jar │ │ │ │ ├── 9.jar │ │ │ │ └── __content__.json │ │ │ ├── dexMerger │ │ │ └── debug │ │ │ │ ├── 18 │ │ │ │ └── classes.dex │ │ │ │ └── __content__.json │ │ │ ├── externalLibsDexMerger │ │ │ └── debug │ │ │ │ ├── 0 │ │ │ │ └── classes.dex │ │ │ │ └── __content__.json │ │ │ ├── extractJars │ │ │ └── debug │ │ │ │ └── __content__.json │ │ │ ├── instantRun │ │ │ └── debug │ │ │ │ ├── 0 │ │ │ │ ├── android │ │ │ │ │ ├── arch │ │ │ │ │ │ └── lifecycle │ │ │ │ │ │ │ └── R.class │ │ │ │ │ └── support │ │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ ├── constraint │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ ├── coreui │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ ├── coreutils │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ ├── fragment │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ ├── graphics │ │ │ │ │ │ └── drawable │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ │ └── animated │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ ├── mediacompat │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ ├── v4 │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ └── v7 │ │ │ │ │ │ └── appcompat │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ └── tv │ │ │ │ │ └── higlobal │ │ │ │ │ └── tcpdemo │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── MainActivity$1.class │ │ │ │ │ ├── MainActivity$2.class │ │ │ │ │ ├── MainActivity$3.class │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$mipmap.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ ├── R.class │ │ │ │ │ ├── TaskCenter$1.class │ │ │ │ │ ├── TaskCenter$2.class │ │ │ │ │ ├── TaskCenter$OnReceiveCallbackBlock.class │ │ │ │ │ ├── TaskCenter$OnServerConnectedCallbackBlock.class │ │ │ │ │ ├── TaskCenter$OnServerDisconnectedCallbackBlock.class │ │ │ │ │ └── TaskCenter.class │ │ │ │ └── __content__.json │ │ │ ├── instantRunDependenciesApk │ │ │ └── debug │ │ │ │ └── __content__.json │ │ │ ├── instantRunSlicer │ │ │ └── debug │ │ │ │ ├── 0 │ │ │ │ ├── android │ │ │ │ │ └── arch │ │ │ │ │ │ └── lifecycle │ │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── ir │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_0.class │ │ │ │ ├── 1 │ │ │ │ ├── com │ │ │ │ │ └── android │ │ │ │ │ │ └── tools │ │ │ │ │ │ └── ir │ │ │ │ │ │ └── dummy │ │ │ │ │ │ └── slice_1.class │ │ │ │ └── tv │ │ │ │ │ └── higlobal │ │ │ │ │ └── tcpdemo │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── MainActivity$1.class │ │ │ │ │ ├── MainActivity$2.class │ │ │ │ │ ├── MainActivity$3.class │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$mipmap.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ ├── R.class │ │ │ │ │ ├── TaskCenter$1.class │ │ │ │ │ ├── TaskCenter$2.class │ │ │ │ │ ├── TaskCenter$OnReceiveCallbackBlock.class │ │ │ │ │ ├── TaskCenter$OnServerConnectedCallbackBlock.class │ │ │ │ │ ├── TaskCenter$OnServerDisconnectedCallbackBlock.class │ │ │ │ │ └── TaskCenter.class │ │ │ │ ├── 2 │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── ir │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_2.class │ │ │ │ ├── 3 │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ ├── fragment │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── ir │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_3.class │ │ │ │ ├── 4 │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ ├── coreui │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ └── v7 │ │ │ │ │ │ └── appcompat │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── ir │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_4.class │ │ │ │ ├── 5 │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ └── coreutils │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── ir │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_5.class │ │ │ │ ├── 6 │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ └── constraint │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── ir │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_6.class │ │ │ │ ├── 7 │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ │ └── graphics │ │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── ir │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_7.class │ │ │ │ ├── 8 │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── ir │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_8.class │ │ │ │ ├── 9 │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ ├── graphics │ │ │ │ │ │ └── drawable │ │ │ │ │ │ │ └── animated │ │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ │ └── R.class │ │ │ │ │ │ └── mediacompat │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── ir │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_9.class │ │ │ │ └── __content__.json │ │ │ ├── instantRunSlicesApk │ │ │ └── debug │ │ │ │ └── __content__.json │ │ │ ├── mergeJavaRes │ │ │ └── debug │ │ │ │ ├── 0.jar │ │ │ │ └── __content__.json │ │ │ ├── mergeJniLibs │ │ │ └── debug │ │ │ │ └── __content__.json │ │ │ └── stripDebugSymbol │ │ │ └── debug │ │ │ └── __content__.json │ └── outputs │ │ ├── apk │ │ └── debug │ │ │ ├── app-debug.apk │ │ │ └── output.json │ │ └── logs │ │ └── manifest-merger-debug-report.txt ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── tv │ │ └── higlobal │ │ └── tcpdemo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── tv │ │ │ └── higlobal │ │ │ └── tcpdemo │ │ │ ├── MainActivity.java │ │ │ └── TaskCenter.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── tv │ └── higlobal │ └── tcpdemo │ └── ExampleUnitTest.java ├── build.gradle ├── build └── android-profile │ ├── profile-2018-01-16-09-58-18-842.json │ ├── profile-2018-01-16-09-58-18-842.rawproto │ ├── profile-2018-01-16-09-58-38-533.json │ ├── profile-2018-01-16-09-58-38-533.rawproto │ ├── profile-2018-01-16-10-00-31-818.json │ ├── profile-2018-01-16-10-00-31-818.rawproto │ ├── profile-2018-03-28-16-30-46-462.json │ ├── profile-2018-03-28-16-30-46-462.rawproto │ ├── profile-2018-03-28-16-31-06-964.json │ ├── profile-2018-03-28-16-31-06-964.rawproto │ ├── profile-2018-03-28-16-37-24-669.json │ ├── profile-2018-03-28-16-37-24-669.rawproto │ ├── profile-2018-03-28-16-38-13-670.json │ ├── profile-2018-03-28-16-38-13-670.rawproto │ ├── profile-2018-03-28-16-38-40-140.json │ └── profile-2018-03-28-16-38-40-140.rawproto ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle /README.md: -------------------------------------------------------------------------------- 1 | # Android-TCP 2 | 安卓一个TCP-Socket的简易Demo 3 | 4 | 文章地址:https://www.jianshu.com/p/d8fe6e3fc00b 5 | -------------------------------------------------------------------------------- /TCPDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gitignore -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /TCPDemo/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /TCPDemo/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /TCPDemo/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 09:58:16 CST 2018 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /TCPDemo/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /TCPDemo/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/.gitignore -------------------------------------------------------------------------------- /TCPDemo/app/build/generated/mockable-android-26.v3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/generated/mockable-android-26.v3.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /TCPDemo/app/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png -------------------------------------------------------------------------------- /TCPDemo/app/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /TCPDemo/app/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /TCPDemo/app/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /TCPDemo/app/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/arch/lifecycle/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/arch/lifecycle/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$drawable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R$styleable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/compat/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/constraint/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/constraint/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/constraint/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/constraint/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/constraint/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/constraint/R$styleable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/constraint/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/constraint/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$drawable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R$styleable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreui/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$drawable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R$styleable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/coreutils/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$drawable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R$styleable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/fragment/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$drawable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$drawable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R$styleable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/mediacompat/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$drawable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R$styleable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v4/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/BuildConfig.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/MainActivity$1.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/MainActivity$2.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/MainActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/MainActivity$3.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/MainActivity.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$anim.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$drawable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$mipmap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$mipmap.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R$styleable.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/TaskCenter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/TaskCenter$1.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/TaskCenter$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/TaskCenter$2.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/TaskCenter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/classes/debug/tv/higlobal/tcpdemo/TaskCenter.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-classes/debug/instant-run-bootstrap.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-classes/debug/instant-run-bootstrap.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-runtime-classes/debug/instant-run.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-runtime-classes/debug/instant-run.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/arch/lifecycle/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/arch/lifecycle/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/compat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/compat/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/compat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/compat/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/constraint/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/constraint/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/coreui/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/coreui/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/coreui/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/coreui/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/coreutils/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/coreutils/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/fragment/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/fragment/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$integer.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/android/support/v4/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$anim.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$color.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$dimen.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$layout.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$mipmap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$mipmap.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$string.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R$style.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental-verifier/debug/tv/higlobal/tcpdemo/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54dip 4 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port/values-port.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v13/values-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0px 4 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54dip 4 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v13/values-v13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 0px 4 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/incremental/packageInstantRunResourcesDebug/debug/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:23 CST 2018 2 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-resources/resources-debug.ir.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/instant-run-resources/resources-debug.ir.ap_ -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/manifestChecker/manifest.crc: -------------------------------------------------------------------------------- 1 | 3154809923 -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_0/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:30 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/0 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_1/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:30 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/1 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_2/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:30 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/2 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_3/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:30 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/3 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_4/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:30 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/4 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_5/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:30 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/5 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_6/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:30 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/6 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_7/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:31 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/7 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_8/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:31 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/8 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/instant-run-support/debug/package_slice_9/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Tue Jan 16 10:00:30 CST 2018 2 | base.0=/Users/shensky/Desktop/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/9 3 | path.0=classes.dex 4 | renamed.0=classes.dex 5 | -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/javaPrecompile/debug/annotationProcessors.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/manifest/androidTest/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"AndroidManifest.xml","properties":{}}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/manifests/density/debug/output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/manifests/full/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"AndroidManifest.xml","properties":{"packageId":"tv.higlobal.tcpdemo","split":"","minSdkVersion":"15"}}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/androidTest/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"PROCESSED_RES"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"resources-debugAndroidTest.ap_","properties":{}}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/androidTest/debug/resources-debugAndroidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/androidTest/debug/resources-debugAndroidTest.ap_ -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"PROCESSED_RES"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"resources-debug.ap_","properties":{"packageId":"tv.higlobal.tcpdemo","split":"","minSdkVersion":"15"}}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/debug/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/debug/resources-debug.ap_ -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_in.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_fade_out.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_enter.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_popup_exit.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_in_top.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_abc_slide_out_top.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_tooltip_enter.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_tooltip_enter.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_tooltip_exit.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/anim_tooltip_exit.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/color_abc_tint_default.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/color_abc_tint_edittext.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/color_abc_tint_spinner.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/layout_abc_search_view.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/layout_tooltip.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/layout_tooltip.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-af_values-af.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-am_values-am.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ar_values-ar.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-az_values-az.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-be_values-be.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-bg_values-bg.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-bn_values-bn.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-bs_values-bs.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ca_values-ca.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-cs_values-cs.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-da_values-da.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-de_values-de.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-el_values-el.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-es_values-es.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-et_values-et.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-eu_values-eu.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-fa_values-fa.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-fi_values-fi.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-fr_values-fr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-gl_values-gl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-gu_values-gu.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-hi_values-hi.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-hr_values-hr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-hu_values-hu.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-hy_values-hy.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-in_values-in.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-is_values-is.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-it_values-it.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-iw_values-iw.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ja_values-ja.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ka_values-ka.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-kk_values-kk.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-km_values-km.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-kn_values-kn.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ko_values-ko.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ky_values-ky.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-lo_values-lo.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-lt_values-lt.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-lv_values-lv.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-mk_values-mk.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ml_values-ml.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-mn_values-mn.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-mr_values-mr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ms_values-ms.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-my_values-my.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-nb_values-nb.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ne_values-ne.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-nl_values-nl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-pa_values-pa.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-pl_values-pl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-pt_values-pt.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ro_values-ro.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ru_values-ru.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-si_values-si.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sk_values-sk.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sl_values-sl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sq_values-sq.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sr_values-sr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sv_values-sv.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-sw_values-sw.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ta_values-ta.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-te_values-te.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-th_values-th.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-tl_values-tl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-tr_values-tr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-uk_values-uk.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-ur_values-ur.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-uz_values-uz.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v11_values-v11.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v11_values-v11.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v12_values-v12.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v12_values-v12.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v13_values-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v13_values-v13.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v14_values-v14.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v14_values-v14.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v16_values-v16.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v17_values-v17.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v18_values-v18.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v21_values-v21.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v22_values-v22.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v23_values-v23.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v24_values-v24.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v25_values-v25.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-v26_values-v26.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-vi_values-vi.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values-zu_values-zu.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/androidTest/debug/values_values.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_fade_in.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_fade_out.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_grow_fade_in_from_bottom.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_popup_enter.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_popup_exit.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_slide_in_bottom.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_slide_in_top.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_slide_out_bottom.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_abc_slide_out_top.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_tooltip_enter.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_tooltip_enter.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/anim_tooltip_exit.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/anim_tooltip_exit.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_btn_checkable.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_default.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_edittext.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_seek_thumb.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_spinner.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color-v23_abc_tint_switch_track.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_abc_btn_colored_text_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_abc_search_url_text.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_btn_checkable.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_default.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_edittext.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_seek_thumb.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_spinner.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_abc_tint_switch_track.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_switch_thumb_material_dark.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/color_switch_thumb_material_light.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable-v21_abc_edit_text_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable-v24_ic_launcher_foreground.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable-v24_ic_launcher_foreground.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_btn_check_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_btn_colored_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_btn_default_mtrl_shape.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_btn_radio_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_edit_text_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_ic_ab_back_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_ic_clear_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_ic_search_api_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_ratingbar_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_thumb_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_seekbar_track_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_switch_thumb_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_tab_indicator_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_text_cursor_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_abc_vector_test.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_notification_bg.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_notification_bg_low.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_notification_tile_bg.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_dark.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/drawable_tooltip_frame_light.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout-v21_notification_action.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout-v26_abc_screen_toolbar.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_bar_title_item.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_bar_up_container.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_menu_item_layout.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_menu_layout.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_action_mode_bar.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_activity_chooser_view.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_alert_dialog_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_dialog_title_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_expanded_menu_layout.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_checkbox.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_icon.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_layout.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_list_menu_item_radio.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_popup_menu_item_layout.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_screen_content_include.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_screen_simple.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_screen_toolbar.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_search_view.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_abc_select_dialog_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_activity_main.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_activity_main.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_notification_action.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_notification_action.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_notification_media_action.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_notification_template_media.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_select_dialog_item_material.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/layout_tooltip.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/layout_tooltip.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-hdpi_ic_launcher_round.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-mdpi_ic_launcher_round.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xhdpi_ic_launcher_round.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xxhdpi_ic_launcher_round.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/mipmap-xxxhdpi_ic_launcher_round.png.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-af_values-af.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-am_values-am.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ar_values-ar.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-az_values-az.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-be_values-be.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-bg_values-bg.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-bn_values-bn.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-bs_values-bs.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ca_values-ca.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-cs_values-cs.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-da_values-da.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-de_values-de.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-el_values-el.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-en-rAU_values-en-rAU.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-en-rGB_values-en-rGB.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-en-rIN_values-en-rIN.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-es-rUS_values-es-rUS.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-es_values-es.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-et_values-et.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-eu_values-eu.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-fa_values-fa.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-fi_values-fi.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-fr-rCA_values-fr-rCA.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-fr_values-fr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-gl_values-gl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-gu_values-gu.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-hi_values-hi.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-hr_values-hr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-hu_values-hu.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-hy_values-hy.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-in_values-in.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-is_values-is.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-it_values-it.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-iw_values-iw.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ja_values-ja.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ka_values-ka.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-kk_values-kk.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-km_values-km.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-kn_values-kn.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ko_values-ko.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ky_values-ky.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-land_values-land.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-large-v4_values-large-v4.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-lo_values-lo.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-lt_values-lt.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-lv_values-lv.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-mk_values-mk.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ml_values-ml.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-mn_values-mn.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-mr_values-mr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ms_values-ms.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-my_values-my.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-nb_values-nb.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ne_values-ne.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-night-v8_values-night-v8.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-nl_values-nl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-pa_values-pa.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-pl_values-pl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-port_values-port.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-pt-rBR_values-pt-rBR.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-pt-rPT_values-pt-rPT.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-pt_values-pt.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ro_values-ro.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ru_values-ru.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-si_values-si.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-sk_values-sk.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-sl_values-sl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-sq_values-sq.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-sr_values-sr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-sv_values-sv.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-sw_values-sw.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ta_values-ta.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-te_values-te.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-th_values-th.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-tl_values-tl.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-tr_values-tr.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-uk_values-uk.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-ur_values-ur.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-uz_values-uz.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v11_values-v11.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v12_values-v12.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v12_values-v12.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v13_values-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v13_values-v13.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v14_values-v14.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v16_values-v16.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v17_values-v17.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v18_values-v18.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v21_values-v21.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v22_values-v22.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v23_values-v23.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v24_values-v24.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v25_values-v25.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-v26_values-v26.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-vi_values-vi.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-zh-rCN_values-zh-rCN.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-zh-rHK_values-zh-rHK.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-zh-rTW_values-zh-rTW.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values-zu_values-zu.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/res/merged/debug/values_values.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/res/merged/debug/values_values.arsc.flat -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/dep/dependencies.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/dep/dependencies.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_0.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_1.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_2.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_3.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_3.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_4.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_4.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_5.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_5.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_6.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_6.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_7.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_7.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_8.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_8.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_9.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/split-apk/debug/slices/slice_9.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/splits-support/androidTest/debug/split-list.gson: -------------------------------------------------------------------------------- 1 | [{"splitType":"DENSITY","values":[]},{"splitType":"LANGUAGE","values":[]},{"splitType":"ABI","values":[]},{"splitType":"ResConfigs","values":[]}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/splits-support/debug/split-list.gson: -------------------------------------------------------------------------------- 1 | [{"splitType":"DENSITY","values":[]},{"splitType":"LANGUAGE","values":[]},{"splitType":"ABI","values":[]},{"splitType":"ResConfigs","values":[]}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/0.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/1.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/10.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/11.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/12.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/13.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/14.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/2.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/3.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/arch/lifecycle/R.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/arch/lifecycle/R.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/compat/R.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/compat/R.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/coreui/R.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/coreui/R.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/fragment/R.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/fragment/R.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$attr.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$attr.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$bool.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$bool.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$color.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$color.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$dimen.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$dimen.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$id.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$id.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$style.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R$style.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/android/support/v4/R.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R$anim.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R$anim.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R$attr.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R$attr.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R$bool.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R$bool.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R$id.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R$id.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/35/tv/higlobal/tcpdemo/R.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/4.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/5.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/6.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/7.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/8.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexBuilder/debug/9.jar -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexMerger/debug/18/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/dexMerger/debug/18/classes.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/dexMerger/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"main","index":18,"scopes":["SUB_PROJECTS","EXTERNAL_LIBRARIES","PROJECT"],"types":["DEX"],"format":"DIRECTORY","present":true}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/externalLibsDexMerger/debug/0/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/externalLibsDexMerger/debug/0/classes.dex -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/externalLibsDexMerger/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"main","index":0,"scopes":["EXTERNAL_LIBRARIES"],"types":["DEX_ARCHIVE"],"format":"DIRECTORY","present":true}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/extractJars/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/arch/lifecycle/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/arch/lifecycle/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/compat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/compat/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/coreui/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/coreui/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/v4/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/v4/R$attr.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/v4/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/v4/R$bool.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/v4/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/v4/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/v4/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/android/support/v4/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/tv/higlobal/tcpdemo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/tv/higlobal/tcpdemo/R$id.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/tv/higlobal/tcpdemo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/intermediates/transforms/instantRun/debug/0/tv/higlobal/tcpdemo/R.class -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRunDependenciesApk/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/instantRunSlicesApk/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/mergeJavaRes/debug/0.jar: -------------------------------------------------------------------------------- 1 | PK -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/mergeJavaRes/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"resources","index":0,"scopes":["SUB_PROJECTS","EXTERNAL_LIBRARIES","PROJECT"],"types":["RESOURCES"],"format":"JAR","present":true}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/mergeJniLibs/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"resources","index":1,"scopes":["PROJECT","SUB_PROJECTS","EXTERNAL_LIBRARIES"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":false}] -------------------------------------------------------------------------------- /TCPDemo/app/build/intermediates/transforms/stripDebugSymbol/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /TCPDemo/app/build/outputs/apk/debug/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/build/outputs/apk/debug/app-debug.apk -------------------------------------------------------------------------------- /TCPDemo/app/build/outputs/apk/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"app-debug.apk","properties":{"packageId":"tv.higlobal.tcpdemo","split":"","minSdkVersion":"15"}}] -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /TCPDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TCPDemo 3 | 4 | -------------------------------------------------------------------------------- /TCPDemo/build/android-profile/profile-2018-01-16-09-58-18-842.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/build/android-profile/profile-2018-01-16-09-58-18-842.rawproto -------------------------------------------------------------------------------- /TCPDemo/build/android-profile/profile-2018-01-16-09-58-38-533.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/build/android-profile/profile-2018-01-16-09-58-38-533.rawproto -------------------------------------------------------------------------------- /TCPDemo/build/android-profile/profile-2018-01-16-10-00-31-818.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/build/android-profile/profile-2018-01-16-10-00-31-818.rawproto -------------------------------------------------------------------------------- /TCPDemo/build/android-profile/profile-2018-03-28-16-30-46-462.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/build/android-profile/profile-2018-03-28-16-30-46-462.rawproto -------------------------------------------------------------------------------- /TCPDemo/build/android-profile/profile-2018-03-28-16-31-06-964.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/build/android-profile/profile-2018-03-28-16-31-06-964.rawproto -------------------------------------------------------------------------------- /TCPDemo/build/android-profile/profile-2018-03-28-16-37-24-669.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/build/android-profile/profile-2018-03-28-16-37-24-669.rawproto -------------------------------------------------------------------------------- /TCPDemo/build/android-profile/profile-2018-03-28-16-38-13-670.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/build/android-profile/profile-2018-03-28-16-38-13-670.rawproto -------------------------------------------------------------------------------- /TCPDemo/build/android-profile/profile-2018-03-28-16-38-40-140.rawproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/build/android-profile/profile-2018-03-28-16-38-40-140.rawproto -------------------------------------------------------------------------------- /TCPDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenSKY/Android-TCP/1bb687983b9cf3c3d12add9dd032d35a94a7155d/TCPDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TCPDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------