├── .github └── workflows │ └── stale.yml ├── .gitignore ├── .idea ├── .gitignore ├── assetWizardSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── gradle.xml ├── kotlinc.xml ├── migrations.xml ├── misc.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── build │ ├── generated │ │ ├── res │ │ │ └── pngs │ │ │ │ └── debug │ │ │ │ └── drawable-anydpi-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ └── source │ │ │ └── buildConfig │ │ │ ├── androidTest │ │ │ └── debug │ │ │ │ └── google │ │ │ │ └── cts │ │ │ │ └── enabler │ │ │ │ └── test │ │ │ │ └── BuildConfig.java │ │ │ └── debug │ │ │ └── google │ │ │ └── cts │ │ │ └── enabler │ │ │ └── BuildConfig.java │ ├── intermediates │ │ ├── annotation_processor_list │ │ │ ├── debug │ │ │ │ └── annotationProcessors.json │ │ │ └── debugAndroidTest │ │ │ │ └── annotationProcessors.json │ │ ├── apk │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ ├── app-debug-androidTest.apk │ │ │ │ │ └── output-metadata.json │ │ │ └── debug │ │ │ │ ├── app-debug.apk │ │ │ │ └── output-metadata.json │ │ ├── apk_ide_redirect_file │ │ │ ├── debug │ │ │ │ └── redirect.txt │ │ │ └── debugAndroidTest │ │ │ │ └── redirect.txt │ │ ├── app_classes │ │ │ └── debug │ │ │ │ └── classes.jar │ │ ├── app_metadata │ │ │ └── debug │ │ │ │ └── app-metadata.properties │ │ ├── assets │ │ │ └── debug │ │ │ │ └── mergeDebugAssets │ │ │ │ └── xposed_init │ │ ├── compatible_screen_manifest │ │ │ └── debug │ │ │ │ └── output-metadata.json │ │ ├── compile_and_runtime_not_namespaced_r_class_jar │ │ │ ├── debug │ │ │ │ └── R.jar │ │ │ └── debugAndroidTest │ │ │ │ └── R.jar │ │ ├── compressed_assets │ │ │ └── debug │ │ │ │ └── out │ │ │ │ └── assets │ │ │ │ └── xposed_init.jar │ │ ├── desugar_graph │ │ │ ├── debug │ │ │ │ └── out │ │ │ │ │ └── currentProject │ │ │ │ │ ├── dirs_bucket_0 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── dirs_bucket_1 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── dirs_bucket_2 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── dirs_bucket_3 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── dirs_bucket_4 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── dirs_bucket_5 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── jar_0b00682334d2a9ac73467fb3b57fea2d09733937ef429809fd2fa1b0fbdbec8c_bucket_0 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── jar_0b00682334d2a9ac73467fb3b57fea2d09733937ef429809fd2fa1b0fbdbec8c_bucket_1 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── jar_0b00682334d2a9ac73467fb3b57fea2d09733937ef429809fd2fa1b0fbdbec8c_bucket_2 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── jar_0b00682334d2a9ac73467fb3b57fea2d09733937ef429809fd2fa1b0fbdbec8c_bucket_3 │ │ │ │ │ └── graph.bin │ │ │ │ │ ├── jar_0b00682334d2a9ac73467fb3b57fea2d09733937ef429809fd2fa1b0fbdbec8c_bucket_4 │ │ │ │ │ └── graph.bin │ │ │ │ │ └── jar_0b00682334d2a9ac73467fb3b57fea2d09733937ef429809fd2fa1b0fbdbec8c_bucket_5 │ │ │ │ │ └── graph.bin │ │ │ └── debugAndroidTest │ │ │ │ └── out │ │ │ │ └── currentProject │ │ │ │ ├── dirs_bucket_0 │ │ │ │ └── graph.bin │ │ │ │ ├── dirs_bucket_1 │ │ │ │ └── graph.bin │ │ │ │ ├── dirs_bucket_2 │ │ │ │ └── graph.bin │ │ │ │ ├── dirs_bucket_3 │ │ │ │ └── graph.bin │ │ │ │ ├── dirs_bucket_4 │ │ │ │ └── graph.bin │ │ │ │ ├── dirs_bucket_5 │ │ │ │ └── graph.bin │ │ │ │ ├── jar_d13d75e1ef31f061a79e5aac0bf50e621c8bd58b349cdf8f2fb6541c8090651f_bucket_0 │ │ │ │ └── graph.bin │ │ │ │ ├── jar_d13d75e1ef31f061a79e5aac0bf50e621c8bd58b349cdf8f2fb6541c8090651f_bucket_1 │ │ │ │ └── graph.bin │ │ │ │ ├── jar_d13d75e1ef31f061a79e5aac0bf50e621c8bd58b349cdf8f2fb6541c8090651f_bucket_2 │ │ │ │ └── graph.bin │ │ │ │ ├── jar_d13d75e1ef31f061a79e5aac0bf50e621c8bd58b349cdf8f2fb6541c8090651f_bucket_3 │ │ │ │ └── graph.bin │ │ │ │ ├── jar_d13d75e1ef31f061a79e5aac0bf50e621c8bd58b349cdf8f2fb6541c8090651f_bucket_4 │ │ │ │ └── graph.bin │ │ │ │ └── jar_d13d75e1ef31f061a79e5aac0bf50e621c8bd58b349cdf8f2fb6541c8090651f_bucket_5 │ │ │ │ └── graph.bin │ │ ├── dex │ │ │ ├── debug │ │ │ │ ├── mergeExtDexDebug │ │ │ │ │ └── classes.dex │ │ │ │ └── mergeProjectDexDebug │ │ │ │ │ ├── 0 │ │ │ │ │ └── classes.dex │ │ │ │ │ └── 2 │ │ │ │ │ └── classes.dex │ │ │ └── debugAndroidTest │ │ │ │ └── mergeProjectDexDebugAndroidTest │ │ │ │ ├── 0 │ │ │ │ └── classes.dex │ │ │ │ └── 11 │ │ │ │ └── classes.dex │ │ ├── dex_archive_input_jar_hashes │ │ │ ├── debug │ │ │ │ └── out │ │ │ └── debugAndroidTest │ │ │ │ └── out │ │ ├── dex_number_of_buckets_file │ │ │ ├── debug │ │ │ │ └── out │ │ │ └── debugAndroidTest │ │ │ │ └── out │ │ ├── incremental │ │ │ ├── debug-mergeJavaRes │ │ │ │ ├── merge-state │ │ │ │ └── zip-cache │ │ │ │ │ ├── 0HmiID0DFxyRTHYeGVEu+tr4rL4= │ │ │ │ │ ├── 0hcXBNnFRRVJEGy0a8BpF6LH6Rw= │ │ │ │ │ ├── 2_+kM9B2iipUqB+qHNwzKkD3RQg= │ │ │ │ │ ├── 6XfEm7xr8RI0ZCpjnM_g4TgoFvs= │ │ │ │ │ ├── 8gybEtonEas2ZKhwftL9fwNNzeQ= │ │ │ │ │ ├── 95qqMQLTumjKGZTiomYAnZ7JW_M= │ │ │ │ │ ├── BV+TVGhpT+U1YbNRYdhyG1RcjMk= │ │ │ │ │ ├── BYO6ruvr7htVufte4VBt1awwd60= │ │ │ │ │ ├── BaPKLLrRlADB1Qdyao2tpJystIw= │ │ │ │ │ ├── CZUfR_Ae+XX+_1CpENsmYO753dI= │ │ │ │ │ ├── FkRi245K72h6TcodKyMo5CQUDuI= │ │ │ │ │ ├── Fl6PKFHFNXjmy0TTXfdS1Z6DTBc= │ │ │ │ │ ├── FujwIO4dQcqW41Gezv7kmXaCE+E= │ │ │ │ │ ├── FvXhaeVF4kuSoAW_y43f2_gaAiQ= │ │ │ │ │ ├── Jk+8+6mqdj0qtfEBX+CO6+OQ7lM= │ │ │ │ │ ├── JovSpnzrzoP4mkvqChAxzXn7VeY= │ │ │ │ │ ├── K9GfmQ1DjpSM2LkOJt8GdirVb7U= │ │ │ │ │ ├── Koy1V6ocU5INugjl0KjA9RaIQdA= │ │ │ │ │ ├── M4oTQIK0w5amJqGF6xKF1GqnFjw= │ │ │ │ │ ├── MkWFgK1+TuWS8VmI8bSk5tve5Mk= │ │ │ │ │ ├── NP9VtQPdTBLnbziTwyOeMoibalg= │ │ │ │ │ ├── NY+OHd6a7nq7eUJ5FwIMF93SZwY= │ │ │ │ │ ├── Og6AGROaQGV649kYxM8yJsh8EkE= │ │ │ │ │ ├── Q14FctfP3yh+lk7Hqv6LJL6FwAw= │ │ │ │ │ ├── QX7QrfCeXR+5mY7coGaGuPrkV8w= │ │ │ │ │ ├── RJxycND0PpQ1xEOJLk+ShypmbRc= │ │ │ │ │ ├── Rq+a2Aqf1d9F_AxzeV0H4eY9AYE= │ │ │ │ │ ├── Svf1UhvQiBVfQC41I5deqxkq4aM= │ │ │ │ │ ├── TOEOGqzumJgDHSw594086lF0f0U= │ │ │ │ │ ├── TaXQaeHR5JqZsFYr0k6tsEXtJmI= │ │ │ │ │ ├── Vp2+uIj9D1QKKHoDbJFuNXJD+bI= │ │ │ │ │ ├── WnndKmjgKAnxZJsSOtAgIlSCQpg= │ │ │ │ │ ├── XlH2K62lrztR1K9V+E1aXWSLUmc= │ │ │ │ │ ├── YP2GA9r94qQGdJj_2SIEMdqsoXY= │ │ │ │ │ ├── YqC6JWREMtOcIJyArSSSyK_22GU= │ │ │ │ │ ├── Ytn1dwaDRLxOfNo13iNemGH1hrs= │ │ │ │ │ ├── cPvJIcAhMNYwzBJrbEqXK2RAvAE= │ │ │ │ │ ├── dstEF+36q0Vmy0aEd9J__fUnCF8= │ │ │ │ │ ├── eQAVjZK75thW7roXe26CGXB3v9Y= │ │ │ │ │ ├── fDjBnuTIlJzEv2Eb9dPjYwpcRn4= │ │ │ │ │ ├── gGylQUPjYJlHYuXXwmdxc8sDOyg= │ │ │ │ │ ├── hi51GjH0VULn1KE6NKJzrDni4Jw= │ │ │ │ │ ├── lL3uiZLgjM83qyHTJBvRjkbBdxU= │ │ │ │ │ ├── n0ge6a54VUqVOu0B_5FVyrK_SKs= │ │ │ │ │ ├── nEseKU+bo6ly76kl2_T6bVZnjTQ= │ │ │ │ │ ├── nThnq7coNwhaRaLkR3x0S0ST3g0= │ │ │ │ │ ├── nb_RuTXqcR9yYx0i4Kldoo4mV58= │ │ │ │ │ ├── rZR8gh0CRSQm+Bea2juM9xEIQ5A= │ │ │ │ │ ├── rvl2wN1pyj6jBOveXAYsa3rSubE= │ │ │ │ │ ├── rwq5eiXCZoPTu2sNsSTd8cAYwz0= │ │ │ │ │ ├── sMi5zUSQm_Rt0CKm1eQQLtq9QXo= │ │ │ │ │ ├── zWedr5kzdGruHzAUlx69nQByzVY= │ │ │ │ │ ├── zXnLzqVZdyogBFOfzHNTNzOH3Zg= │ │ │ │ │ └── zZUDBpUfG_NwttuJRM8lwGM_NHM= │ │ │ ├── debugAndroidTest-mergeJavaRes │ │ │ │ └── merge-state │ │ │ ├── mergeDebugAndroidTestAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAndroidTestJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAndroidTestShaders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebug │ │ │ │ └── tmp │ │ │ │ │ └── debug │ │ │ │ │ ├── dex-renamer-state.txt │ │ │ │ │ └── zip-cache │ │ │ │ │ ├── androidResources │ │ │ │ │ └── javaResources0 │ │ │ └── packageDebugAndroidTest │ │ │ │ └── tmp │ │ │ │ └── debugAndroidTest │ │ │ │ ├── dex-renamer-state.txt │ │ │ │ └── zip-cache │ │ │ │ ├── androidResources │ │ │ │ └── javaResources0 │ │ ├── javac │ │ │ ├── debug │ │ │ │ └── classes │ │ │ │ │ └── google │ │ │ │ │ └── cts │ │ │ │ │ └── enabler │ │ │ │ │ └── BuildConfig.class │ │ │ └── debugAndroidTest │ │ │ │ └── classes │ │ │ │ └── google │ │ │ │ └── cts │ │ │ │ └── enabler │ │ │ │ └── test │ │ │ │ └── BuildConfig.class │ │ ├── manifest_merge_blame_file │ │ │ ├── debug │ │ │ │ └── manifest-merger-blame-debug-report.txt │ │ │ └── debugAndroidTest │ │ │ │ └── manifest-merger-blame-debug-androidTest-report.txt │ │ ├── merged_java_res │ │ │ ├── debug │ │ │ │ └── base.jar │ │ │ └── debugAndroidTest │ │ │ │ └── feature-app.jar │ │ ├── merged_manifest │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── merged_manifests │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output-metadata.json │ │ ├── merged_res │ │ │ └── debug │ │ │ │ ├── drawable-anydpi-v24_ic_launcher_foreground.xml.flat │ │ │ │ ├── drawable_ic_export.xml.flat │ │ │ │ ├── drawable_ic_import.xml.flat │ │ │ │ ├── drawable_ic_info.xml.flat │ │ │ │ ├── drawable_ic_launcher_background.xml.flat │ │ │ │ ├── drawable_ic_open.xml.flat │ │ │ │ ├── layout_activity_main.xml.flat │ │ │ │ ├── layout_advanced_options_activity.xml.flat │ │ │ │ ├── layout_feature_customize.xml.flat │ │ │ │ ├── menu_menu_activity_main.xml.flat │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher.xml.flat │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat │ │ │ │ ├── mipmap-hdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-hdpi_ic_launcher_foreground.webp.flat │ │ │ │ ├── mipmap-hdpi_ic_launcher_round.webp.flat │ │ │ │ ├── mipmap-mdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-mdpi_ic_launcher_foreground.webp.flat │ │ │ │ ├── mipmap-mdpi_ic_launcher_round.webp.flat │ │ │ │ ├── mipmap-xhdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-xhdpi_ic_launcher_foreground.webp.flat │ │ │ │ ├── mipmap-xhdpi_ic_launcher_round.webp.flat │ │ │ │ ├── mipmap-xxhdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_foreground.webp.flat │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_round.webp.flat │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher.webp.flat │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_foreground.webp.flat │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_round.webp.flat │ │ │ │ ├── values-af_values-af.arsc.flat │ │ │ │ ├── values-am_values-am.arsc.flat │ │ │ │ ├── values-ar_values-ar.arsc.flat │ │ │ │ ├── values-as_values-as.arsc.flat │ │ │ │ ├── values-az_values-az.arsc.flat │ │ │ │ ├── values-b+es+419_values-b+es+419.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-rCA_values-en-rCA.arsc.flat │ │ │ │ ├── values-en-rGB_values-en-rGB.arsc.flat │ │ │ │ ├── values-en-rIN_values-en-rIN.arsc.flat │ │ │ │ ├── values-en-rXC_values-en-rXC.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-h320dp-port-v13_values-h320dp-port-v13.arsc.flat │ │ │ │ ├── values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat │ │ │ │ ├── values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat │ │ │ │ ├── values-h550dp-port-v13_values-h550dp-port-v13.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-ldrtl-v17_values-ldrtl-v17.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-or_values-or.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-small-v4_values-small-v4.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-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-v28_values-v28.arsc.flat │ │ │ │ ├── values-v31_values-v31.arsc.flat │ │ │ │ ├── values-vi_values-vi.arsc.flat │ │ │ │ ├── values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat │ │ │ │ ├── values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat │ │ │ │ ├── values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat │ │ │ │ ├── values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat │ │ │ │ ├── values-watch-v20_values-watch-v20.arsc.flat │ │ │ │ ├── values-watch-v21_values-watch-v21.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 │ │ │ │ └── xml_provider_paths.xml.flat │ │ ├── merged_res_blame_folder │ │ │ └── debug │ │ │ │ └── out │ │ │ │ ├── multi-v2 │ │ │ │ ├── debug.json │ │ │ │ ├── values-af.json │ │ │ │ ├── values-am.json │ │ │ │ ├── values-ar.json │ │ │ │ ├── values-as.json │ │ │ │ ├── values-az.json │ │ │ │ ├── values-b+es+419.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-rCA.json │ │ │ │ ├── values-en-rGB.json │ │ │ │ ├── values-en-rIN.json │ │ │ │ ├── values-en-rXC.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-h320dp-port-v13.json │ │ │ │ ├── values-h360dp-land-v13.json │ │ │ │ ├── values-h480dp-land-v13.json │ │ │ │ ├── values-h550dp-port-v13.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-ldrtl-v17.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-or.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-small-v4.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-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-v28.json │ │ │ │ ├── values-v31.json │ │ │ │ ├── values-vi.json │ │ │ │ ├── values-w320dp-land-v13.json │ │ │ │ ├── values-w360dp-port-v13.json │ │ │ │ ├── values-w480dp-port-v13.json │ │ │ │ ├── values-w600dp-land-v13.json │ │ │ │ ├── values-watch-v20.json │ │ │ │ ├── values-watch-v21.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 │ │ ├── navigation_json │ │ │ └── debug │ │ │ │ └── navigation.json │ │ ├── packaged_manifests │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output-metadata.json │ │ │ └── debugAndroidTest │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output-metadata.json │ │ ├── processed_res │ │ │ ├── debug │ │ │ │ └── out │ │ │ │ │ ├── output-metadata.json │ │ │ │ │ └── resources-debug.ap_ │ │ │ └── debugAndroidTest │ │ │ │ └── out │ │ │ │ ├── output-metadata.json │ │ │ │ └── resources-debugAndroidTest.ap_ │ │ ├── project_dex_archive │ │ │ ├── debug │ │ │ │ └── out │ │ │ │ │ ├── cba54f5e21303656700c368272824b6286576c144798f5b5fcffc760da0f691c_0.jar │ │ │ │ │ ├── cba54f5e21303656700c368272824b6286576c144798f5b5fcffc760da0f691c_1.jar │ │ │ │ │ ├── cba54f5e21303656700c368272824b6286576c144798f5b5fcffc760da0f691c_2.jar │ │ │ │ │ ├── cba54f5e21303656700c368272824b6286576c144798f5b5fcffc760da0f691c_3.jar │ │ │ │ │ ├── cba54f5e21303656700c368272824b6286576c144798f5b5fcffc760da0f691c_4.jar │ │ │ │ │ ├── cba54f5e21303656700c368272824b6286576c144798f5b5fcffc760da0f691c_5.jar │ │ │ │ │ └── google │ │ │ │ │ └── cts │ │ │ │ │ └── enabler │ │ │ │ │ ├── ActivityMain$onCreate$5$1.dex │ │ │ │ │ ├── ActivityMain$pref$2.dex │ │ │ │ │ ├── ActivityMain$utils$2.dex │ │ │ │ │ ├── ActivityMain.dex │ │ │ │ │ ├── AdvancedOptionsActivity$androidVersionRadioGroup$2.dex │ │ │ │ │ ├── AdvancedOptionsActivity$androidVersionSpinner$2.dex │ │ │ │ │ ├── AdvancedOptionsActivity$deviceAndroidVersion$2.dex │ │ │ │ │ ├── AdvancedOptionsActivity$deviceNameLabel$2.dex │ │ │ │ │ ├── AdvancedOptionsActivity$pref$2.dex │ │ │ │ │ ├── AdvancedOptionsActivity$save$2.dex │ │ │ │ │ ├── AdvancedOptionsActivity$verboseLogging$2.dex │ │ │ │ │ ├── AdvancedOptionsActivity.dex │ │ │ │ │ ├── BuildConfig.dex │ │ │ │ │ ├── Constants.dex │ │ │ │ │ ├── DeviceProps$AndroidVersion.dex │ │ │ │ │ ├── DeviceProps$DeviceEntries.dex │ │ │ │ │ ├── DeviceProps$Features.dex │ │ │ │ │ ├── DeviceProps.dex │ │ │ │ │ ├── DeviceSpoofer$androidVersionToSpoof$2.dex │ │ │ │ │ ├── DeviceSpoofer$finalDeviceToSpoof$2.dex │ │ │ │ │ ├── DeviceSpoofer$pref$2.dex │ │ │ │ │ ├── DeviceSpoofer$verboseLog$2.dex │ │ │ │ │ ├── DeviceSpoofer.dex │ │ │ │ │ ├── FeatureCustomize$enabledFeaturesNames$2.dex │ │ │ │ │ ├── FeatureCustomize$onCreate$2$checkedFeatureNames$1.dex │ │ │ │ │ ├── FeatureCustomize$onCreate$2$checkedFeatureNames$2.dex │ │ │ │ │ ├── FeatureCustomize$pref$2.dex │ │ │ │ │ ├── FeatureCustomize$utils$2.dex │ │ │ │ │ ├── FeatureCustomize.dex │ │ │ │ │ ├── FeatureSpoofer$featuresNotToSpoof$2.dex │ │ │ │ │ ├── FeatureSpoofer$finalFeaturesToSpoof$2.dex │ │ │ │ │ ├── FeatureSpoofer$handleLoadPackage$1.dex │ │ │ │ │ ├── FeatureSpoofer$handleLoadPackage$2.dex │ │ │ │ │ ├── FeatureSpoofer$overrideCustomROMLevels$2.dex │ │ │ │ │ ├── FeatureSpoofer$pref$2.dex │ │ │ │ │ ├── FeatureSpoofer$verboseLog$2.dex │ │ │ │ │ ├── FeatureSpoofer.dex │ │ │ │ │ └── Utils.dex │ │ │ └── debugAndroidTest │ │ │ │ └── out │ │ │ │ ├── 4ae75d448571369c0163926a35dbb349748c7469a3b8f8818c2fee680c098f8e_1.jar │ │ │ │ └── google │ │ │ │ └── cts │ │ │ │ └── enabler │ │ │ │ └── test │ │ │ │ └── BuildConfig.dex │ │ ├── runtime_symbol_list │ │ │ ├── debug │ │ │ │ └── R.txt │ │ │ └── debugAndroidTest │ │ │ │ └── R.txt │ │ ├── signing_config_versions │ │ │ ├── debug │ │ │ │ └── signing-config-versions.json │ │ │ └── debugAndroidTest │ │ │ │ └── signing-config-versions.json │ │ ├── stable_resource_ids_file │ │ │ └── debug │ │ │ │ └── stableIds.txt │ │ └── symbol_list_with_package_name │ │ │ └── debug │ │ │ └── package-aware-r.txt │ ├── kotlin │ │ ├── compileDebugAndroidTestKotlin │ │ │ ├── build-history.bin │ │ │ └── last-build.bin │ │ └── compileDebugKotlin │ │ │ ├── build-history.bin │ │ │ ├── caches-jvm │ │ │ ├── inputs │ │ │ │ ├── source-to-output.tab │ │ │ │ ├── source-to-output.tab.keystream │ │ │ │ ├── source-to-output.tab.keystream.len │ │ │ │ ├── source-to-output.tab.len │ │ │ │ ├── source-to-output.tab.values.at │ │ │ │ ├── source-to-output.tab_i │ │ │ │ └── source-to-output.tab_i.len │ │ │ ├── jvm │ │ │ │ └── kotlin │ │ │ │ │ ├── class-attributes.tab │ │ │ │ │ ├── class-attributes.tab.keystream │ │ │ │ │ ├── class-attributes.tab.keystream.len │ │ │ │ │ ├── class-attributes.tab.len │ │ │ │ │ ├── class-attributes.tab.values.at │ │ │ │ │ ├── class-attributes.tab_i │ │ │ │ │ ├── class-attributes.tab_i.len │ │ │ │ │ ├── class-fq-name-to-source.tab │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream │ │ │ │ │ ├── class-fq-name-to-source.tab.keystream.len │ │ │ │ │ ├── class-fq-name-to-source.tab.len │ │ │ │ │ ├── class-fq-name-to-source.tab.values.at │ │ │ │ │ ├── class-fq-name-to-source.tab_i │ │ │ │ │ ├── class-fq-name-to-source.tab_i.len │ │ │ │ │ ├── internal-name-to-source.tab │ │ │ │ │ ├── internal-name-to-source.tab.keystream │ │ │ │ │ ├── internal-name-to-source.tab.keystream.len │ │ │ │ │ ├── internal-name-to-source.tab.len │ │ │ │ │ ├── internal-name-to-source.tab.values.at │ │ │ │ │ ├── internal-name-to-source.tab_i │ │ │ │ │ ├── internal-name-to-source.tab_i.len │ │ │ │ │ ├── java-sources-proto-map.tab │ │ │ │ │ ├── java-sources-proto-map.tab.keystream │ │ │ │ │ ├── java-sources-proto-map.tab.keystream.len │ │ │ │ │ ├── java-sources-proto-map.tab.len │ │ │ │ │ ├── java-sources-proto-map.tab.values.at │ │ │ │ │ ├── java-sources-proto-map.tab_i │ │ │ │ │ ├── java-sources-proto-map.tab_i.len │ │ │ │ │ ├── proto.tab │ │ │ │ │ ├── proto.tab.keystream │ │ │ │ │ ├── proto.tab.keystream.len │ │ │ │ │ ├── proto.tab.len │ │ │ │ │ ├── proto.tab.values.at │ │ │ │ │ ├── proto.tab_i │ │ │ │ │ ├── proto.tab_i.len │ │ │ │ │ ├── source-to-classes.tab │ │ │ │ │ ├── source-to-classes.tab.keystream │ │ │ │ │ ├── source-to-classes.tab.keystream.len │ │ │ │ │ ├── source-to-classes.tab.len │ │ │ │ │ ├── source-to-classes.tab.values.at │ │ │ │ │ ├── source-to-classes.tab_i │ │ │ │ │ ├── source-to-classes.tab_i.len │ │ │ │ │ ├── subtypes.tab │ │ │ │ │ ├── subtypes.tab.keystream │ │ │ │ │ ├── subtypes.tab.keystream.len │ │ │ │ │ ├── subtypes.tab.len │ │ │ │ │ ├── subtypes.tab.values.at │ │ │ │ │ ├── subtypes.tab_i │ │ │ │ │ ├── subtypes.tab_i.len │ │ │ │ │ ├── supertypes.tab │ │ │ │ │ ├── supertypes.tab.keystream │ │ │ │ │ ├── supertypes.tab.keystream.len │ │ │ │ │ ├── supertypes.tab.len │ │ │ │ │ ├── supertypes.tab.values.at │ │ │ │ │ ├── supertypes.tab_i │ │ │ │ │ └── supertypes.tab_i.len │ │ │ └── lookups │ │ │ │ ├── counters.tab │ │ │ │ ├── file-to-id.tab │ │ │ │ ├── file-to-id.tab.keystream │ │ │ │ ├── file-to-id.tab.keystream.len │ │ │ │ ├── file-to-id.tab.len │ │ │ │ ├── file-to-id.tab.values.at │ │ │ │ ├── file-to-id.tab_i │ │ │ │ ├── file-to-id.tab_i.len │ │ │ │ ├── id-to-file.tab │ │ │ │ ├── id-to-file.tab.keystream │ │ │ │ ├── id-to-file.tab.keystream.len │ │ │ │ ├── id-to-file.tab.len │ │ │ │ ├── id-to-file.tab.values.at │ │ │ │ ├── id-to-file.tab_i │ │ │ │ ├── id-to-file.tab_i.len │ │ │ │ ├── lookups.tab │ │ │ │ ├── lookups.tab.keystream │ │ │ │ ├── lookups.tab.keystream.len │ │ │ │ ├── lookups.tab.len │ │ │ │ ├── lookups.tab.values.at │ │ │ │ ├── lookups.tab_i │ │ │ │ └── lookups.tab_i.len │ │ │ └── last-build.bin │ ├── outputs │ │ └── logs │ │ │ └── manifest-merger-debug-report.txt │ └── tmp │ │ ├── compileDebugAndroidTestJavaWithJavac │ │ └── previous-compilation-data.bin │ │ ├── compileDebugJavaWithJavac │ │ └── previous-compilation-data.bin │ │ └── kotlin-classes │ │ └── debug │ │ ├── META-INF │ │ └── app_debug.kotlin_module │ │ └── google │ │ └── cts │ │ └── enabler │ │ ├── ActivityMain$onCreate$5$1.class │ │ ├── ActivityMain$pref$2.class │ │ ├── ActivityMain$utils$2.class │ │ ├── ActivityMain.class │ │ ├── AdvancedOptionsActivity$androidVersionRadioGroup$2.class │ │ ├── AdvancedOptionsActivity$androidVersionSpinner$2.class │ │ ├── AdvancedOptionsActivity$deviceAndroidVersion$2.class │ │ ├── AdvancedOptionsActivity$deviceNameLabel$2.class │ │ ├── AdvancedOptionsActivity$pref$2.class │ │ ├── AdvancedOptionsActivity$save$2.class │ │ ├── AdvancedOptionsActivity$verboseLogging$2.class │ │ ├── AdvancedOptionsActivity.class │ │ ├── Constants.class │ │ ├── DeviceProps$AndroidVersion.class │ │ ├── DeviceProps$DeviceEntries.class │ │ ├── DeviceProps$Features.class │ │ ├── DeviceProps.class │ │ ├── DeviceSpoofer$androidVersionToSpoof$2.class │ │ ├── DeviceSpoofer$finalDeviceToSpoof$2.class │ │ ├── DeviceSpoofer$pref$2.class │ │ ├── DeviceSpoofer$verboseLog$2.class │ │ ├── DeviceSpoofer.class │ │ ├── FeatureCustomize$enabledFeaturesNames$2.class │ │ ├── FeatureCustomize$onCreate$2$checkedFeatureNames$1.class │ │ ├── FeatureCustomize$onCreate$2$checkedFeatureNames$2.class │ │ ├── FeatureCustomize$pref$2.class │ │ ├── FeatureCustomize$utils$2.class │ │ ├── FeatureCustomize.class │ │ ├── FeatureSpoofer$featuresNotToSpoof$2.class │ │ ├── FeatureSpoofer$finalFeaturesToSpoof$2.class │ │ ├── FeatureSpoofer$handleLoadPackage$1.class │ │ ├── FeatureSpoofer$handleLoadPackage$2.class │ │ ├── FeatureSpoofer$overrideCustomROMLevels$2.class │ │ ├── FeatureSpoofer$pref$2.class │ │ ├── FeatureSpoofer$verboseLog$2.class │ │ ├── FeatureSpoofer.class │ │ └── Utils.class ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── xposed_init │ ├── ic_launcher-playstore.png │ ├── java │ └── google │ │ └── cts │ │ └── enabler │ │ ├── ActivityMain.kt │ │ ├── AdvancedOptionsActivity.kt │ │ ├── Constants.kt │ │ ├── DeviceProps.kt │ │ ├── DeviceSpoofer.kt │ │ ├── FeatureCustomize.kt │ │ ├── FeatureSpoofer.kt │ │ └── Utils.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_export.xml │ ├── ic_import.xml │ ├── ic_info.xml │ ├── ic_launcher_background.xml │ └── ic_open.xml │ ├── layout │ ├── activity_main.xml │ ├── advanced_options_activity.xml │ └── feature_customize.xml │ ├── menu │ └── menu_activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_foreground.webp │ └── ic_launcher_round.webp │ ├── values-night │ └── themes.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values │ ├── colors.xml │ ├── module_scope.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ └── provider_paths.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── settings.gradle └── update_info.json /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/build/generated/res/pngs/debug/drawable-anydpi-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/generated/res/pngs/debug/drawable-anydpi-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/build/generated/source/buildConfig/androidTest/debug/google/cts/enabler/test/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/generated/source/buildConfig/androidTest/debug/google/cts/enabler/test/BuildConfig.java -------------------------------------------------------------------------------- /app/build/generated/source/buildConfig/debug/google/cts/enabler/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/generated/source/buildConfig/debug/google/cts/enabler/BuildConfig.java -------------------------------------------------------------------------------- /app/build/intermediates/annotation_processor_list/debug/annotationProcessors.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /app/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /app/build/intermediates/apk/androidTest/debug/app-debug-androidTest.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/apk/androidTest/debug/app-debug-androidTest.apk -------------------------------------------------------------------------------- /app/build/intermediates/apk/androidTest/debug/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/apk/androidTest/debug/output-metadata.json -------------------------------------------------------------------------------- /app/build/intermediates/apk/debug/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/apk/debug/app-debug.apk -------------------------------------------------------------------------------- /app/build/intermediates/apk/debug/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/apk/debug/output-metadata.json -------------------------------------------------------------------------------- /app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt -------------------------------------------------------------------------------- /app/build/intermediates/apk_ide_redirect_file/debugAndroidTest/redirect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/apk_ide_redirect_file/debugAndroidTest/redirect.txt -------------------------------------------------------------------------------- /app/build/intermediates/app_classes/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/app_classes/debug/classes.jar -------------------------------------------------------------------------------- /app/build/intermediates/app_metadata/debug/app-metadata.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/app_metadata/debug/app-metadata.properties -------------------------------------------------------------------------------- /app/build/intermediates/assets/debug/mergeDebugAssets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/assets/debug/mergeDebugAssets/xposed_init -------------------------------------------------------------------------------- /app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/compatible_screen_manifest/debug/output-metadata.json -------------------------------------------------------------------------------- /app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar -------------------------------------------------------------------------------- /app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar -------------------------------------------------------------------------------- /app/build/intermediates/compressed_assets/debug/out/assets/xposed_init.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/compressed_assets/debug/out/assets/xposed_init.jar -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_0/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_2/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_2/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_3/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_3/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_4/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_4/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_5/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_5/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_4/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_4/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_5/graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_5/graph.bin -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/dex/debug/mergeProjectDexDebug/2/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/11/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/11/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex_archive_input_jar_hashes/debug/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/dex_archive_input_jar_hashes/debug/out -------------------------------------------------------------------------------- /app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out -------------------------------------------------------------------------------- /app/build/intermediates/dex_number_of_buckets_file/debug/out: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /app/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0HmiID0DFxyRTHYeGVEu+tr4rL4=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0HmiID0DFxyRTHYeGVEu+tr4rL4= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0hcXBNnFRRVJEGy0a8BpF6LH6Rw=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0hcXBNnFRRVJEGy0a8BpF6LH6Rw= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2_+kM9B2iipUqB+qHNwzKkD3RQg=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2_+kM9B2iipUqB+qHNwzKkD3RQg= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/6XfEm7xr8RI0ZCpjnM_g4TgoFvs=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/6XfEm7xr8RI0ZCpjnM_g4TgoFvs= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8gybEtonEas2ZKhwftL9fwNNzeQ=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8gybEtonEas2ZKhwftL9fwNNzeQ= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/95qqMQLTumjKGZTiomYAnZ7JW_M=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/95qqMQLTumjKGZTiomYAnZ7JW_M= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BV+TVGhpT+U1YbNRYdhyG1RcjMk=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BV+TVGhpT+U1YbNRYdhyG1RcjMk= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BYO6ruvr7htVufte4VBt1awwd60=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BYO6ruvr7htVufte4VBt1awwd60= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BaPKLLrRlADB1Qdyao2tpJystIw=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/BaPKLLrRlADB1Qdyao2tpJystIw= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CZUfR_Ae+XX+_1CpENsmYO753dI=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CZUfR_Ae+XX+_1CpENsmYO753dI= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FkRi245K72h6TcodKyMo5CQUDuI=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FkRi245K72h6TcodKyMo5CQUDuI= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Fl6PKFHFNXjmy0TTXfdS1Z6DTBc=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Fl6PKFHFNXjmy0TTXfdS1Z6DTBc= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FujwIO4dQcqW41Gezv7kmXaCE+E=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FujwIO4dQcqW41Gezv7kmXaCE+E= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FvXhaeVF4kuSoAW_y43f2_gaAiQ=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/FvXhaeVF4kuSoAW_y43f2_gaAiQ= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Jk+8+6mqdj0qtfEBX+CO6+OQ7lM=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Jk+8+6mqdj0qtfEBX+CO6+OQ7lM= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JovSpnzrzoP4mkvqChAxzXn7VeY=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/JovSpnzrzoP4mkvqChAxzXn7VeY= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/K9GfmQ1DjpSM2LkOJt8GdirVb7U=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/K9GfmQ1DjpSM2LkOJt8GdirVb7U= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Koy1V6ocU5INugjl0KjA9RaIQdA=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Koy1V6ocU5INugjl0KjA9RaIQdA= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/M4oTQIK0w5amJqGF6xKF1GqnFjw=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/M4oTQIK0w5amJqGF6xKF1GqnFjw= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MkWFgK1+TuWS8VmI8bSk5tve5Mk=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/MkWFgK1+TuWS8VmI8bSk5tve5Mk= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NP9VtQPdTBLnbziTwyOeMoibalg=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NP9VtQPdTBLnbziTwyOeMoibalg= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NY+OHd6a7nq7eUJ5FwIMF93SZwY=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NY+OHd6a7nq7eUJ5FwIMF93SZwY= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Og6AGROaQGV649kYxM8yJsh8EkE=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Og6AGROaQGV649kYxM8yJsh8EkE= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Q14FctfP3yh+lk7Hqv6LJL6FwAw=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Q14FctfP3yh+lk7Hqv6LJL6FwAw= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/QX7QrfCeXR+5mY7coGaGuPrkV8w=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/QX7QrfCeXR+5mY7coGaGuPrkV8w= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RJxycND0PpQ1xEOJLk+ShypmbRc=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RJxycND0PpQ1xEOJLk+ShypmbRc= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Rq+a2Aqf1d9F_AxzeV0H4eY9AYE=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Rq+a2Aqf1d9F_AxzeV0H4eY9AYE= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Svf1UhvQiBVfQC41I5deqxkq4aM=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Svf1UhvQiBVfQC41I5deqxkq4aM= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TOEOGqzumJgDHSw594086lF0f0U=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TOEOGqzumJgDHSw594086lF0f0U= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TaXQaeHR5JqZsFYr0k6tsEXtJmI=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TaXQaeHR5JqZsFYr0k6tsEXtJmI= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Vp2+uIj9D1QKKHoDbJFuNXJD+bI=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Vp2+uIj9D1QKKHoDbJFuNXJD+bI= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WnndKmjgKAnxZJsSOtAgIlSCQpg=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/WnndKmjgKAnxZJsSOtAgIlSCQpg= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XlH2K62lrztR1K9V+E1aXWSLUmc=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XlH2K62lrztR1K9V+E1aXWSLUmc= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YP2GA9r94qQGdJj_2SIEMdqsoXY=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YP2GA9r94qQGdJj_2SIEMdqsoXY= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YqC6JWREMtOcIJyArSSSyK_22GU=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YqC6JWREMtOcIJyArSSSyK_22GU= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Ytn1dwaDRLxOfNo13iNemGH1hrs=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Ytn1dwaDRLxOfNo13iNemGH1hrs= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/cPvJIcAhMNYwzBJrbEqXK2RAvAE=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/cPvJIcAhMNYwzBJrbEqXK2RAvAE= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dstEF+36q0Vmy0aEd9J__fUnCF8=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/dstEF+36q0Vmy0aEd9J__fUnCF8= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/eQAVjZK75thW7roXe26CGXB3v9Y=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/eQAVjZK75thW7roXe26CGXB3v9Y= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fDjBnuTIlJzEv2Eb9dPjYwpcRn4=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/fDjBnuTIlJzEv2Eb9dPjYwpcRn4= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/gGylQUPjYJlHYuXXwmdxc8sDOyg=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/gGylQUPjYJlHYuXXwmdxc8sDOyg= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/hi51GjH0VULn1KE6NKJzrDni4Jw=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/hi51GjH0VULn1KE6NKJzrDni4Jw= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lL3uiZLgjM83qyHTJBvRjkbBdxU=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lL3uiZLgjM83qyHTJBvRjkbBdxU= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/n0ge6a54VUqVOu0B_5FVyrK_SKs=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/n0ge6a54VUqVOu0B_5FVyrK_SKs= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nEseKU+bo6ly76kl2_T6bVZnjTQ=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nEseKU+bo6ly76kl2_T6bVZnjTQ= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nThnq7coNwhaRaLkR3x0S0ST3g0=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nThnq7coNwhaRaLkR3x0S0ST3g0= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nb_RuTXqcR9yYx0i4Kldoo4mV58=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/nb_RuTXqcR9yYx0i4Kldoo4mV58= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rZR8gh0CRSQm+Bea2juM9xEIQ5A=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rZR8gh0CRSQm+Bea2juM9xEIQ5A= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rvl2wN1pyj6jBOveXAYsa3rSubE=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rvl2wN1pyj6jBOveXAYsa3rSubE= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rwq5eiXCZoPTu2sNsSTd8cAYwz0=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/rwq5eiXCZoPTu2sNsSTd8cAYwz0= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sMi5zUSQm_Rt0CKm1eQQLtq9QXo=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sMi5zUSQm_Rt0CKm1eQQLtq9QXo= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zWedr5kzdGruHzAUlx69nQByzVY=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zWedr5kzdGruHzAUlx69nQByzVY= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zXnLzqVZdyogBFOfzHNTNzOH3Zg=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zXnLzqVZdyogBFOfzHNTNzOH3Zg= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zZUDBpUfG_NwttuJRM8lwGM_NHM=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zZUDBpUfG_NwttuJRM8lwGM_NHM= -------------------------------------------------------------------------------- /app/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Wed Mar 06 16:30:05 AEST 2024 2 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/mergeDebugAssets/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/mergeDebugResources/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/mergeDebugShaders/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources -------------------------------------------------------------------------------- /app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 -------------------------------------------------------------------------------- /app/build/intermediates/javac/debug/classes/google/cts/enabler/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/javac/debug/classes/google/cts/enabler/BuildConfig.class -------------------------------------------------------------------------------- /app/build/intermediates/javac/debugAndroidTest/classes/google/cts/enabler/test/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/javac/debugAndroidTest/classes/google/cts/enabler/test/BuildConfig.class -------------------------------------------------------------------------------- /app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt -------------------------------------------------------------------------------- /app/build/intermediates/merged_java_res/debug/base.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_java_res/debug/base.jar -------------------------------------------------------------------------------- /app/build/intermediates/merged_java_res/debugAndroidTest/feature-app.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_java_res/debugAndroidTest/feature-app.jar -------------------------------------------------------------------------------- /app/build/intermediates/merged_manifest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/merged_manifests/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/merged_manifests/debug/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_manifests/debug/output-metadata.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/drawable-anydpi-v24_ic_launcher_foreground.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/drawable-anydpi-v24_ic_launcher_foreground.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/drawable_ic_export.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/drawable_ic_export.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/drawable_ic_import.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/drawable_ic_import.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/drawable_ic_info.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/drawable_ic_info.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/drawable_ic_launcher_background.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/drawable_ic_launcher_background.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/drawable_ic_open.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/drawable_ic_open.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/layout_activity_main.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/layout_activity_main.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/layout_advanced_options_activity.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/layout_advanced_options_activity.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/layout_feature_customize.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/layout_feature_customize.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/menu_menu_activity_main.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/menu_menu_activity_main.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-anydpi-v26_ic_launcher_round.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_foreground.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_foreground.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-hdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_foreground.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_foreground.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-mdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_foreground.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_foreground.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-xhdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_foreground.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_foreground.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-xxhdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_foreground.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_foreground.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_round.webp.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/mipmap-xxxhdpi_ic_launcher_round.webp.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-as_values-as.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-as_values-as.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-az_values-az.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-az_values-az.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-b+es+419_values-b+es+419.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-b+es+419_values-b+es+419.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-b+sr+Latn_values-b+sr+Latn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-be_values-be.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-be_values-be.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-bn_values-bn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-bn_values-bn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-bs_values-bs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-bs_values-bs.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rAU_values-en-rAU.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-en-rAU_values-en-rAU.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rCA_values-en-rCA.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-en-rCA_values-en-rCA.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-en-rXC_values-en-rXC.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-en-rXC_values-en-rXC.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-et_values-et.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-et_values-et.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-eu_values-eu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-eu_values-eu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-gl_values-gl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-gl_values-gl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-gu_values-gu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-gu_values-gu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-h320dp-port-v13_values-h320dp-port-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-h360dp-land-v13_values-h360dp-land-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-h480dp-land-v13_values-h480dp-land-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-h550dp-port-v13_values-h550dp-port-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-hy_values-hy.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-hy_values-hy.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-is_values-is.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-is_values-is.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ka_values-ka.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ka_values-ka.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-kk_values-kk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-kk_values-kk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-km_values-km.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-km_values-km.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-kn_values-kn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-kn_values-kn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ky_values-ky.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ky_values-ky.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-large-v4_values-large-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-large-v4_values-large-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ldltr-v21_values-ldltr-v21.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ldrtl-v17_values-ldrtl-v17.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ldrtl-v17_values-ldrtl-v17.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-lo_values-lo.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-lo_values-lo.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-mk_values-mk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-mk_values-mk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ml_values-ml.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ml_values-ml.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-mn_values-mn.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-mn_values-mn.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-mr_values-mr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-mr_values-mr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ms_values-ms.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ms_values-ms.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-my_values-my.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-my_values-my.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ne_values-ne.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ne_values-ne.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-night-v8_values-night-v8.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-night-v8_values-night-v8.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-or_values-or.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-or_values-or.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pa_values-pa.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-pa_values-pa.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-port_values-port.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-port_values-port.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pt-rBR_values-pt-rBR.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-pt-rBR_values-pt-rBR.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-si_values-si.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-si_values-si.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-small-v4_values-small-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-small-v4_values-small-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sq_values-sq.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-sq_values-sq.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ta_values-ta.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ta_values-ta.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-te_values-te.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-te_values-te.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-ur_values-ur.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-ur_values-ur.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-uz_values-uz.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-uz_values-uz.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v16_values-v16.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v16_values-v16.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v17_values-v17.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v17_values-v17.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v18_values-v18.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v18_values-v18.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v22_values-v22.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v22_values-v22.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v23_values-v23.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v23_values-v23.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v24_values-v24.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v24_values-v24.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v25_values-v25.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v25_values-v25.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v26_values-v26.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v26_values-v26.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v28_values-v28.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v28_values-v28.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-v31_values-v31.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-v31_values-v31.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-w320dp-land-v13_values-w320dp-land-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-w360dp-port-v13_values-w360dp-port-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-w480dp-port-v13_values-w480dp-port-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-w600dp-land-v13_values-w600dp-land-v13.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-watch-v20_values-watch-v20.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-watch-v20_values-watch-v20.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-watch-v21_values-watch-v21.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-watch-v21_values-watch-v21.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/values_values.arsc.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/values_values.arsc.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res/debug/xml_provider_paths.xml.flat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res/debug/xml_provider_paths.xml.flat -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-as.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-as.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-az.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+es+419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+es+419.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+sr+Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-b+sr+Latn.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-be.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bs.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rAU.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rCA.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rXC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rXC.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gu.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h320dp-port-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h320dp-port-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h360dp-land-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h360dp-land-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h480dp-land-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h480dp-land-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h550dp-port-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h550dp-port-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h720dp-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hdpi-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-large-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-large-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ldltr-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ldltr-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ldrtl-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ldrtl-v17.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-night-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-night-v8.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-or.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pa.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-port.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rBR.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-small-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-small-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sq.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw600dp-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v16.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v17.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v18.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v22.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v23.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v24.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v25.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v26.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v28.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v31.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w320dp-land-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w320dp-land-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w360dp-port-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w360dp-port-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w480dp-port-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w480dp-port-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w600dp-land-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w600dp-land-v13.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v20.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-watch-v21.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-v4.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json -------------------------------------------------------------------------------- /app/build/intermediates/merged_res_blame_folder/debug/out/single/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/merged_res_blame_folder/debug/out/single/debug.json -------------------------------------------------------------------------------- /app/build/intermediates/navigation_json/debug/navigation.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /app/build/intermediates/packaged_manifests/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/packaged_manifests/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/packaged_manifests/debug/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/packaged_manifests/debug/output-metadata.json -------------------------------------------------------------------------------- /app/build/intermediates/packaged_manifests/debugAndroidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/packaged_manifests/debugAndroidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/packaged_manifests/debugAndroidTest/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/packaged_manifests/debugAndroidTest/output-metadata.json -------------------------------------------------------------------------------- /app/build/intermediates/processed_res/debug/out/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/processed_res/debug/out/output-metadata.json -------------------------------------------------------------------------------- /app/build/intermediates/processed_res/debug/out/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ -------------------------------------------------------------------------------- /app/build/intermediates/processed_res/debugAndroidTest/out/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/processed_res/debugAndroidTest/out/output-metadata.json -------------------------------------------------------------------------------- /app/build/intermediates/processed_res/debugAndroidTest/out/resources-debugAndroidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/processed_res/debugAndroidTest/out/resources-debugAndroidTest.ap_ -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/ActivityMain$onCreate$5$1.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/ActivityMain$onCreate$5$1.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/ActivityMain$pref$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/ActivityMain$pref$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/ActivityMain$utils$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/ActivityMain$utils$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/ActivityMain.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/ActivityMain.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/AdvancedOptionsActivity$pref$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/AdvancedOptionsActivity$pref$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/AdvancedOptionsActivity$save$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/AdvancedOptionsActivity$save$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/AdvancedOptionsActivity.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/AdvancedOptionsActivity.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/BuildConfig.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/BuildConfig.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/Constants.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/Constants.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceProps$AndroidVersion.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceProps$AndroidVersion.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceProps$DeviceEntries.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceProps$DeviceEntries.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceProps$Features.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceProps$Features.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceProps.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceProps.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceSpoofer$finalDeviceToSpoof$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceSpoofer$finalDeviceToSpoof$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceSpoofer$pref$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceSpoofer$pref$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceSpoofer$verboseLog$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceSpoofer$verboseLog$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceSpoofer.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/DeviceSpoofer.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureCustomize$pref$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureCustomize$pref$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureCustomize$utils$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureCustomize$utils$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureCustomize.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureCustomize.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureSpoofer$featuresNotToSpoof$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureSpoofer$featuresNotToSpoof$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureSpoofer$pref$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureSpoofer$pref$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureSpoofer$verboseLog$2.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureSpoofer$verboseLog$2.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureSpoofer.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/FeatureSpoofer.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/Utils.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debug/out/google/cts/enabler/Utils.dex -------------------------------------------------------------------------------- /app/build/intermediates/project_dex_archive/debugAndroidTest/out/google/cts/enabler/test/BuildConfig.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/project_dex_archive/debugAndroidTest/out/google/cts/enabler/test/BuildConfig.dex -------------------------------------------------------------------------------- /app/build/intermediates/runtime_symbol_list/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/runtime_symbol_list/debug/R.txt -------------------------------------------------------------------------------- /app/build/intermediates/runtime_symbol_list/debugAndroidTest/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/build/intermediates/signing_config_versions/debug/signing-config-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json -------------------------------------------------------------------------------- /app/build/intermediates/signing_config_versions/debugAndroidTest/signing-config-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/signing_config_versions/debugAndroidTest/signing-config-versions.json -------------------------------------------------------------------------------- /app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt -------------------------------------------------------------------------------- /app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugAndroidTestKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugAndroidTestKotlin/build-history.bin -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugAndroidTestKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugAndroidTestKotlin/last-build.bin -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/build-history.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/build-history.bin -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`&y -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`ƕ -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`ƕ -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`y -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/java-sources-proto-map.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`ƙ -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab: -------------------------------------------------------------------------------- 1 | 8 2 | 0 -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c`&y -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len: -------------------------------------------------------------------------------- 1 | c` -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len -------------------------------------------------------------------------------- /app/build/kotlin/compileDebugKotlin/last-build.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/kotlin/compileDebugKotlin/last-build.bin -------------------------------------------------------------------------------- /app/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/outputs/logs/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /app/build/tmp/compileDebugAndroidTestJavaWithJavac/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/compileDebugAndroidTestJavaWithJavac/previous-compilation-data.bin -------------------------------------------------------------------------------- /app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/META-INF/app_debug.kotlin_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/META-INF/app_debug.kotlin_module -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/ActivityMain$onCreate$5$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/ActivityMain$onCreate$5$1.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/ActivityMain$pref$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/ActivityMain$pref$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/ActivityMain$utils$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/ActivityMain$utils$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/ActivityMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/ActivityMain.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$androidVersionRadioGroup$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$androidVersionRadioGroup$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$androidVersionSpinner$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$androidVersionSpinner$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$deviceAndroidVersion$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$deviceAndroidVersion$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$deviceNameLabel$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$deviceNameLabel$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$pref$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$pref$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$save$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$save$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$verboseLogging$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity$verboseLogging$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/AdvancedOptionsActivity.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/Constants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/Constants.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceProps$AndroidVersion.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceProps$AndroidVersion.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceProps$DeviceEntries.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceProps$DeviceEntries.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceProps$Features.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceProps$Features.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceProps.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceProps.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer$androidVersionToSpoof$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer$androidVersionToSpoof$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer$finalDeviceToSpoof$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer$finalDeviceToSpoof$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer$pref$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer$pref$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer$verboseLog$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer$verboseLog$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/DeviceSpoofer.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$enabledFeaturesNames$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$enabledFeaturesNames$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$onCreate$2$checkedFeatureNames$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$onCreate$2$checkedFeatureNames$1.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$onCreate$2$checkedFeatureNames$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$onCreate$2$checkedFeatureNames$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$pref$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$pref$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$utils$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize$utils$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureCustomize.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$featuresNotToSpoof$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$featuresNotToSpoof$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$finalFeaturesToSpoof$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$finalFeaturesToSpoof$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$handleLoadPackage$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$handleLoadPackage$1.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$handleLoadPackage$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$handleLoadPackage$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$overrideCustomROMLevels$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$overrideCustomROMLevels$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$pref$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$pref$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$verboseLog$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer$verboseLog$2.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/FeatureSpoofer.class -------------------------------------------------------------------------------- /app/build/tmp/kotlin-classes/debug/google/cts/enabler/Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/build/tmp/kotlin-classes/debug/google/cts/enabler/Utils.class -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/assets/xposed_init -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/google/cts/enabler/ActivityMain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/java/google/cts/enabler/ActivityMain.kt -------------------------------------------------------------------------------- /app/src/main/java/google/cts/enabler/AdvancedOptionsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/java/google/cts/enabler/AdvancedOptionsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/google/cts/enabler/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/java/google/cts/enabler/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/google/cts/enabler/DeviceProps.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/java/google/cts/enabler/DeviceProps.kt -------------------------------------------------------------------------------- /app/src/main/java/google/cts/enabler/DeviceSpoofer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/java/google/cts/enabler/DeviceSpoofer.kt -------------------------------------------------------------------------------- /app/src/main/java/google/cts/enabler/FeatureCustomize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/java/google/cts/enabler/FeatureCustomize.kt -------------------------------------------------------------------------------- /app/src/main/java/google/cts/enabler/FeatureSpoofer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/java/google/cts/enabler/FeatureSpoofer.kt -------------------------------------------------------------------------------- /app/src/main/java/google/cts/enabler/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/java/google/cts/enabler/Utils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/drawable/ic_export.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_import.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/drawable/ic_import.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/drawable/ic_open.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/advanced_options_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/layout/advanced_options_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/feature_customize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/layout/feature_customize.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/menu/menu_activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/module_scope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/values/module_scope.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/app/src/main/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fillwithjoy1/circle-to-search-spoofer/HEAD/settings.gradle -------------------------------------------------------------------------------- /update_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "latest_version_code": 5 3 | } 4 | --------------------------------------------------------------------------------