├── .gradle └── 2.10 │ ├── taskArtifacts │ ├── cache.properties │ ├── cache.properties.lock │ ├── fileHashes.bin │ ├── fileSnapshots.bin │ ├── outputFileStates.bin │ └── taskArtifacts.bin │ └── tasks │ ├── _memoryBooster_compileDebugJavaWithJavac │ ├── localClassSetAnalysis │ │ ├── localClassSetAnalysis.bin │ │ └── localClassSetAnalysis.lock │ └── localJarClasspathSnapshot │ │ ├── localJarClasspathSnapshot.bin │ │ └── localJarClasspathSnapshot.lock │ └── _progressWheel_compileReleaseJavaWithJavac │ ├── localClassSetAnalysis │ ├── localClassSetAnalysis.bin │ └── localClassSetAnalysis.lock │ └── localJarClasspathSnapshot │ ├── localJarClasspathSnapshot.bin │ └── localJarClasspathSnapshot.lock ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── libraries │ ├── Circle_Progress_View_1_2_8.xml │ ├── animated_vector_drawable_24_1_1.xml │ ├── appcompat_v7_24_1_1.xml │ ├── com_haarman_listviewanimations_2_5_2.xml │ ├── core_0_9_0_1.xml │ ├── design_24_1_1.xml │ ├── firebase_analytics_9_0_0.xml │ ├── firebase_analytics_impl_9_0_0.xml │ ├── firebase_auth_9_0_0.xml │ ├── firebase_auth_common_9_0_0.xml │ ├── firebase_auth_module_9_0_0.xml │ ├── firebase_common_9_0_0.xml │ ├── firebase_config_9_0_0.xml │ ├── firebase_crash_9_0_0.xml │ ├── firebase_database_9_0_0.xml │ ├── firebase_database_connection_9_0_0.xml │ ├── firebase_iid_9_0_0.xml │ ├── firebase_messaging_9_0_0.xml │ ├── firebase_storage_9_0_0.xml │ ├── firebase_storage_common_9_0_0.xml │ ├── joda_time_2_9_2.xml │ ├── library_1_0_2.xml │ ├── library_1_1_7.xml │ ├── mediarouter_v7_23_0_0.xml │ ├── multidex_1_0_1.xml │ ├── multidex_instrumentation_1_0_1.xml │ ├── nineoldandroids_2_4_0.xml │ ├── play_services_9_0_0.xml │ ├── play_services_ads_9_0_0.xml │ ├── play_services_ads_lite_9_0_0.xml │ ├── play_services_analytics_9_0_0.xml │ ├── play_services_analytics_impl_9_0_0.xml │ ├── play_services_appindexing_9_0_0.xml │ ├── play_services_appinvite_9_0_0.xml │ ├── play_services_auth_9_0_0.xml │ ├── play_services_auth_base_9_0_0.xml │ ├── play_services_base_9_0_0.xml │ ├── play_services_basement_9_0_0.xml │ ├── play_services_cast_9_0_0.xml │ ├── play_services_drive_9_0_0.xml │ ├── play_services_fitness_9_0_0.xml │ ├── play_services_games_9_0_0.xml │ ├── play_services_gcm_9_0_0.xml │ ├── play_services_identity_9_0_0.xml │ ├── play_services_iid_9_0_0.xml │ ├── play_services_location_9_0_0.xml │ ├── play_services_maps_9_0_0.xml │ ├── play_services_nearby_9_0_0.xml │ ├── play_services_panorama_9_0_0.xml │ ├── play_services_plus_9_0_0.xml │ ├── play_services_safetynet_9_0_0.xml │ ├── play_services_tagmanager_9_0_0.xml │ ├── play_services_tagmanager_api_9_0_0.xml │ ├── play_services_tasks_9_0_0.xml │ ├── play_services_vision_9_0_0.xml │ ├── play_services_wallet_9_0_0.xml │ ├── play_services_wearable_9_0_0.xml │ ├── ratethisapp_1_0_5.xml │ ├── recyclerview_v7_24_1_1.xml │ ├── support_annotations_24_1_1.xml │ ├── support_v4_24_1_1.xml │ └── support_vector_drawable_24_1_1.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── MemoryBooster.iml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── local.properties ├── memoryBooster ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ └── r │ │ │ └── debug │ │ │ ├── android │ │ │ └── support │ │ │ │ ├── design │ │ │ │ └── R.java │ │ │ │ └── v7 │ │ │ │ ├── appcompat │ │ │ │ └── R.java │ │ │ │ ├── mediarouter │ │ │ │ └── R.java │ │ │ │ └── recyclerview │ │ │ │ └── R.java │ │ │ ├── at │ │ │ └── grabner │ │ │ │ └── circleprogress │ │ │ │ └── R.java │ │ │ └── com │ │ │ ├── google │ │ │ └── android │ │ │ │ └── gms │ │ │ │ ├── R.java │ │ │ │ └── play_services │ │ │ │ └── R.java │ │ │ ├── liulishuo │ │ │ └── magicprogresswidget │ │ │ │ └── R.java │ │ │ └── todddavies │ │ │ └── components │ │ │ └── progressbar │ │ │ └── R.java │ ├── intermediates │ │ ├── blame │ │ │ └── res │ │ │ │ └── debug │ │ │ │ ├── multi │ │ │ │ ├── values-af.json │ │ │ │ ├── values-am.json │ │ │ │ ├── values-ar.json │ │ │ │ ├── values-az-rAZ.json │ │ │ │ ├── values-az.json │ │ │ │ ├── values-b+sr+Latn.json │ │ │ │ ├── values-be-rBY.json │ │ │ │ ├── values-be.json │ │ │ │ ├── values-bg.json │ │ │ │ ├── values-bn-rBD.json │ │ │ │ ├── values-bn.json │ │ │ │ ├── values-bs-rBA.json │ │ │ │ ├── values-bs.json │ │ │ │ ├── values-ca.json │ │ │ │ ├── values-cs.json │ │ │ │ ├── values-da.json │ │ │ │ ├── values-de.json │ │ │ │ ├── values-el.json │ │ │ │ ├── values-en-rAU.json │ │ │ │ ├── values-en-rGB.json │ │ │ │ ├── values-en-rIN.json │ │ │ │ ├── values-es-rUS.json │ │ │ │ ├── values-es.json │ │ │ │ ├── values-et-rEE.json │ │ │ │ ├── values-et.json │ │ │ │ ├── values-eu-rES.json │ │ │ │ ├── values-eu.json │ │ │ │ ├── values-fa.json │ │ │ │ ├── values-fi.json │ │ │ │ ├── values-fr-rCA.json │ │ │ │ ├── values-fr.json │ │ │ │ ├── values-gl-rES.json │ │ │ │ ├── values-gl.json │ │ │ │ ├── values-gu-rIN.json │ │ │ │ ├── values-gu.json │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ ├── values-hi.json │ │ │ │ ├── values-hr.json │ │ │ │ ├── values-hu.json │ │ │ │ ├── values-hy-rAM.json │ │ │ │ ├── values-hy.json │ │ │ │ ├── values-in.json │ │ │ │ ├── values-is-rIS.json │ │ │ │ ├── values-is.json │ │ │ │ ├── values-it.json │ │ │ │ ├── values-iw.json │ │ │ │ ├── values-ja.json │ │ │ │ ├── values-ka-rGE.json │ │ │ │ ├── values-ka.json │ │ │ │ ├── values-kk-rKZ.json │ │ │ │ ├── values-kk.json │ │ │ │ ├── values-km-rKH.json │ │ │ │ ├── values-km.json │ │ │ │ ├── values-kn-rIN.json │ │ │ │ ├── values-kn.json │ │ │ │ ├── values-ko.json │ │ │ │ ├── values-ky-rKG.json │ │ │ │ ├── values-ky.json │ │ │ │ ├── values-land.json │ │ │ │ ├── values-large-v4.json │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ ├── values-lo-rLA.json │ │ │ │ ├── values-lo.json │ │ │ │ ├── values-lt.json │ │ │ │ ├── values-lv.json │ │ │ │ ├── values-mk-rMK.json │ │ │ │ ├── values-mk.json │ │ │ │ ├── values-ml-rIN.json │ │ │ │ ├── values-ml.json │ │ │ │ ├── values-mn-rMN.json │ │ │ │ ├── values-mn.json │ │ │ │ ├── values-mr-rIN.json │ │ │ │ ├── values-mr.json │ │ │ │ ├── values-ms-rMY.json │ │ │ │ ├── values-ms.json │ │ │ │ ├── values-my-rMM.json │ │ │ │ ├── values-my.json │ │ │ │ ├── values-nb.json │ │ │ │ ├── values-ne-rNP.json │ │ │ │ ├── values-ne.json │ │ │ │ ├── values-night-v8.json │ │ │ │ ├── values-nl.json │ │ │ │ ├── values-no.json │ │ │ │ ├── values-pa-rIN.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-rLK.json │ │ │ │ ├── values-si.json │ │ │ │ ├── values-sk.json │ │ │ │ ├── values-sl.json │ │ │ │ ├── values-sq-rAL.json │ │ │ │ ├── values-sq.json │ │ │ │ ├── values-sr.json │ │ │ │ ├── values-sv.json │ │ │ │ ├── values-sw.json │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ ├── values-sw720dp-land-v13.json │ │ │ │ ├── values-ta-rIN.json │ │ │ │ ├── values-ta.json │ │ │ │ ├── values-te-rIN.json │ │ │ │ ├── values-te.json │ │ │ │ ├── values-th.json │ │ │ │ ├── values-tl.json │ │ │ │ ├── values-tr.json │ │ │ │ ├── values-uk.json │ │ │ │ ├── values-ur-rPK.json │ │ │ │ ├── values-ur.json │ │ │ │ ├── values-uz-rUZ.json │ │ │ │ ├── values-uz.json │ │ │ │ ├── values-v11.json │ │ │ │ ├── values-v12.json │ │ │ │ ├── values-v13.json │ │ │ │ ├── values-v14.json │ │ │ │ ├── values-v17.json │ │ │ │ ├── values-v18.json │ │ │ │ ├── values-v21.json │ │ │ │ ├── values-v22.json │ │ │ │ ├── values-v23.json │ │ │ │ ├── values-vi.json │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ ├── values-zh-rCN.json │ │ │ │ ├── values-zh-rHK.json │ │ │ │ ├── values-zh-rTW.json │ │ │ │ ├── values-zu.json │ │ │ │ └── values.json │ │ │ │ └── single │ │ │ │ ├── anim.json │ │ │ │ ├── color-v11.json │ │ │ │ ├── color-v23.json │ │ │ │ ├── color.json │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ ├── drawable-hdpi.json │ │ │ │ ├── drawable-ldpi-v4.json │ │ │ │ ├── drawable-ldrtl-hdpi-v17.json │ │ │ │ ├── drawable-ldrtl-mdpi-v17.json │ │ │ │ ├── drawable-ldrtl-xhdpi-v17.json │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17.json │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17.json │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ ├── drawable-mdpi.json │ │ │ │ ├── drawable-tvdpi-v4.json │ │ │ │ ├── drawable-v21.json │ │ │ │ ├── drawable-v23.json │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ ├── drawable-xhdpi.json │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ ├── drawable-xxhdpi.json │ │ │ │ ├── drawable-xxxhdpi-v4.json │ │ │ │ ├── drawable.json │ │ │ │ ├── layout-v17.json │ │ │ │ ├── layout-v21.json │ │ │ │ ├── layout.json │ │ │ │ ├── menu.json │ │ │ │ └── raw.json │ │ ├── classes │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ └── v7 │ │ │ │ │ ├── appcompat │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ └── mediarouter │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ ├── google │ │ │ │ └── android │ │ │ │ │ └── gms │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$interpolator.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$raw.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ ├── R.class │ │ │ │ │ └── play_services │ │ │ │ │ └── R.class │ │ │ │ └── todddavies │ │ │ │ └── components │ │ │ │ └── progressbar │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ ├── exploded-aar │ │ │ ├── MemoryBooster │ │ │ │ └── progressWheel │ │ │ │ │ └── unspecified │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── jars │ │ │ │ │ └── classes.jar │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── header.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── login_gradient.png │ │ │ │ │ ├── login_gradient_flip.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── layout │ │ │ │ │ ├── main.xml │ │ │ │ │ ├── progress_spinner.xml │ │ │ │ │ └── progress_wheel_activity.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── com.android.support │ │ │ │ ├── animated-vector-drawable │ │ │ │ │ └── 24.1.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── appcompat-v7 │ │ │ │ │ └── 24.1.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ └── abc_slide_out_top.xml │ │ │ │ │ │ ├── color-v11 │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ ├── abc_color_highlight_material.xml │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ ├── abc_tint_switch_thumb.xml │ │ │ │ │ │ └── abc_tint_switch_track.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ ├── abc_tint_switch_thumb.xml │ │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ └── abc_edit_text_material.xml │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml │ │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ │ ├── abc_ic_go_search_api_material.xml │ │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ │ ├── abc_ic_search_api_material.xml │ │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ ├── abc_ratingbar_material.xml │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ └── abc_textfield_search_material.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ ├── notification_template_lines.xml │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ ├── values-be-rBY │ │ │ │ │ │ └── values-be-rBY.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ └── values-bn-rBD.xml │ │ │ │ │ │ ├── values-bs-rBA │ │ │ │ │ │ └── values-bs-rBA.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── design │ │ │ │ │ └── 24.1.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim-v21 │ │ │ │ │ │ ├── design_appbar_state_list_animator.xml │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ └── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ ├── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ ├── design_fab_in.xml │ │ │ │ │ │ ├── design_fab_out.xml │ │ │ │ │ │ ├── design_snackbar_in.xml │ │ │ │ │ │ └── design_snackbar_out.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── design_fab_background.xml │ │ │ │ │ │ └── design_snackbar_background.xml │ │ │ │ │ │ ├── layout-sw600dp-v13 │ │ │ │ │ │ └── design_layout_snackbar.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── design_bottom_sheet_dialog.xml │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ ├── design_layout_snackbar_include.xml │ │ │ │ │ │ ├── design_layout_tab_icon.xml │ │ │ │ │ │ ├── design_layout_tab_text.xml │ │ │ │ │ │ ├── design_menu_item_action_area.xml │ │ │ │ │ │ ├── design_navigation_item.xml │ │ │ │ │ │ ├── design_navigation_item_header.xml │ │ │ │ │ │ ├── design_navigation_item_separator.xml │ │ │ │ │ │ ├── design_navigation_item_subheader.xml │ │ │ │ │ │ ├── design_navigation_menu.xml │ │ │ │ │ │ └── design_navigation_menu_item.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── mediarouter-v7 │ │ │ │ │ └── 23.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── jars │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ └── internal_impl-23.0.0.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ ├── ic_cast_dark.png │ │ │ │ │ │ ├── ic_cast_disabled_light.png │ │ │ │ │ │ ├── ic_cast_light.png │ │ │ │ │ │ ├── ic_cast_off_light.png │ │ │ │ │ │ ├── ic_cast_on_0_light.png │ │ │ │ │ │ ├── ic_cast_on_1_light.png │ │ │ │ │ │ ├── ic_cast_on_2_light.png │ │ │ │ │ │ ├── ic_cast_on_light.png │ │ │ │ │ │ ├── ic_media_pause.png │ │ │ │ │ │ ├── ic_media_play.png │ │ │ │ │ │ ├── ic_media_route_disabled_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_off_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_0_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_1_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_2_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_mono_dark.png │ │ │ │ │ │ ├── ic_pause_dark.png │ │ │ │ │ │ ├── ic_pause_light.png │ │ │ │ │ │ ├── ic_play_dark.png │ │ │ │ │ │ ├── ic_play_light.png │ │ │ │ │ │ ├── ic_setting_dark.png │ │ │ │ │ │ └── ic_setting_light.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ ├── ic_cast_dark.png │ │ │ │ │ │ ├── ic_cast_disabled_light.png │ │ │ │ │ │ ├── ic_cast_light.png │ │ │ │ │ │ ├── ic_cast_off_light.png │ │ │ │ │ │ ├── ic_cast_on_0_light.png │ │ │ │ │ │ ├── ic_cast_on_1_light.png │ │ │ │ │ │ ├── ic_cast_on_2_light.png │ │ │ │ │ │ ├── ic_cast_on_light.png │ │ │ │ │ │ ├── ic_media_pause.png │ │ │ │ │ │ ├── ic_media_play.png │ │ │ │ │ │ ├── ic_media_route_disabled_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_off_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_0_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_1_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_2_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_mono_dark.png │ │ │ │ │ │ ├── ic_pause_dark.png │ │ │ │ │ │ ├── ic_pause_light.png │ │ │ │ │ │ ├── ic_play_dark.png │ │ │ │ │ │ ├── ic_play_light.png │ │ │ │ │ │ ├── ic_setting_dark.png │ │ │ │ │ │ └── ic_setting_light.png │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ ├── ic_cast_dark.png │ │ │ │ │ │ ├── ic_cast_disabled_light.png │ │ │ │ │ │ ├── ic_cast_light.png │ │ │ │ │ │ ├── ic_cast_off_light.png │ │ │ │ │ │ ├── ic_cast_on_0_light.png │ │ │ │ │ │ ├── ic_cast_on_1_light.png │ │ │ │ │ │ ├── ic_cast_on_2_light.png │ │ │ │ │ │ ├── ic_cast_on_light.png │ │ │ │ │ │ ├── ic_media_pause.png │ │ │ │ │ │ ├── ic_media_play.png │ │ │ │ │ │ ├── ic_media_route_disabled_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_off_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_0_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_1_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_2_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_mono_dark.png │ │ │ │ │ │ ├── ic_pause_dark.png │ │ │ │ │ │ ├── ic_pause_light.png │ │ │ │ │ │ ├── ic_play_dark.png │ │ │ │ │ │ ├── ic_play_light.png │ │ │ │ │ │ ├── ic_setting_dark.png │ │ │ │ │ │ └── ic_setting_light.png │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ ├── ic_cast_dark.png │ │ │ │ │ │ ├── ic_cast_disabled_light.png │ │ │ │ │ │ ├── ic_cast_light.png │ │ │ │ │ │ ├── ic_cast_off_light.png │ │ │ │ │ │ ├── ic_cast_on_0_light.png │ │ │ │ │ │ ├── ic_cast_on_1_light.png │ │ │ │ │ │ ├── ic_cast_on_2_light.png │ │ │ │ │ │ ├── ic_cast_on_light.png │ │ │ │ │ │ ├── ic_media_pause.png │ │ │ │ │ │ ├── ic_media_play.png │ │ │ │ │ │ ├── ic_media_route_disabled_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_off_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_0_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_1_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_2_mono_dark.png │ │ │ │ │ │ ├── ic_media_route_on_mono_dark.png │ │ │ │ │ │ ├── ic_pause_dark.png │ │ │ │ │ │ ├── ic_pause_light.png │ │ │ │ │ │ ├── ic_play_dark.png │ │ │ │ │ │ ├── ic_play_light.png │ │ │ │ │ │ ├── ic_setting_dark.png │ │ │ │ │ │ └── ic_setting_light.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── mr_ic_cast_dark.xml │ │ │ │ │ │ ├── mr_ic_cast_light.xml │ │ │ │ │ │ ├── mr_ic_media_route_connecting_mono_dark.xml │ │ │ │ │ │ ├── mr_ic_media_route_connecting_mono_light.xml │ │ │ │ │ │ ├── mr_ic_media_route_mono_dark.xml │ │ │ │ │ │ ├── mr_ic_media_route_mono_light.xml │ │ │ │ │ │ ├── mr_ic_pause_dark.xml │ │ │ │ │ │ ├── mr_ic_pause_light.xml │ │ │ │ │ │ ├── mr_ic_play_dark.xml │ │ │ │ │ │ ├── mr_ic_play_light.xml │ │ │ │ │ │ ├── mr_ic_settings_dark.xml │ │ │ │ │ │ └── mr_ic_settings_light.xml │ │ │ │ │ │ ├── layout-v17 │ │ │ │ │ │ └── mr_media_route_list_item.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── mr_media_route_chooser_dialog.xml │ │ │ │ │ │ ├── mr_media_route_controller_material_dialog_b.xml │ │ │ │ │ │ └── mr_media_route_list_item.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ └── values-bn-rBD.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-sw600dp │ │ │ │ │ │ └── values-sw600dp.xml │ │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── multidex-instrumentation │ │ │ │ │ └── 1.0.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── multidex │ │ │ │ │ └── 1.0.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ └── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── recyclerview-v7 │ │ │ │ │ └── 24.1.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── support-v4 │ │ │ │ │ └── 24.1.1 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ └── android │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ ├── MediaMetadataCompat.aidl │ │ │ │ │ │ │ ├── RatingCompat.aidl │ │ │ │ │ │ │ └── session │ │ │ │ │ │ │ │ ├── MediaSessionCompat.aidl │ │ │ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl │ │ │ │ │ │ │ │ └── PlaybackStateCompat.aidl │ │ │ │ │ │ │ └── os │ │ │ │ │ │ │ └── ResultReceiver.aidl │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── jars │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── libs │ │ │ │ │ │ │ └── internal_impl-24.1.1.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ └── support-vector-drawable │ │ │ │ │ └── 24.1.1 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── jars │ │ │ │ │ └── classes.jar │ │ │ ├── com.github.jakob-grabner │ │ │ │ └── Circle-Progress-View │ │ │ │ │ └── 1.2.8 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── jars │ │ │ │ │ └── classes.jar │ │ │ │ │ └── res │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── com.google.android.gms │ │ │ │ ├── play-services-ads-lite │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-ads │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-analytics-impl │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── raw │ │ │ │ │ │ └── gtm_analytics │ │ │ │ ├── play-services-analytics │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-appindexing │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-appinvite │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-auth-base │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-auth │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-base │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── common_google_signin_btn_text_dark.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_light.xml │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark.xml │ │ │ │ │ │ └── common_plus_signin_btn_text_light.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── common_ic_googleplayservices.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ │ └── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── drawable-ldpi-v4 │ │ │ │ │ │ └── common_ic_googleplayservices.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── common_ic_googleplayservices.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ │ └── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── drawable-tvdpi-v4 │ │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ │ └── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── common_ic_googleplayservices.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ │ └── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── common_ic_googleplayservices.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ │ └── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark.xml │ │ │ │ │ │ ├── common_google_signin_btn_icon_light.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_dark.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_light.xml │ │ │ │ │ │ ├── common_plus_signin_btn_icon_dark.xml │ │ │ │ │ │ ├── common_plus_signin_btn_icon_light.xml │ │ │ │ │ │ ├── common_plus_signin_btn_text_dark.xml │ │ │ │ │ │ └── common_plus_signin_btn_text_light.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-no │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-basement │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-no │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-cast │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── cast_ic_notification_0.png │ │ │ │ │ │ ├── cast_ic_notification_1.png │ │ │ │ │ │ ├── cast_ic_notification_2.png │ │ │ │ │ │ └── cast_ic_notification_on.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── cast_ic_notification_0.png │ │ │ │ │ │ ├── cast_ic_notification_1.png │ │ │ │ │ │ ├── cast_ic_notification_2.png │ │ │ │ │ │ └── cast_ic_notification_on.png │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── cast_ic_notification_0.png │ │ │ │ │ │ ├── cast_ic_notification_1.png │ │ │ │ │ │ ├── cast_ic_notification_2.png │ │ │ │ │ │ └── cast_ic_notification_on.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── cast_ic_notification_0.png │ │ │ │ │ │ ├── cast_ic_notification_1.png │ │ │ │ │ │ ├── cast_ic_notification_2.png │ │ │ │ │ │ └── cast_ic_notification_on.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── cast_ic_notification_connecting.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-drive │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-fitness │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-games │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-gcm │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-identity │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-iid │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-location │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ │ ├── layout-v21 │ │ │ │ │ │ └── place_autocomplete_fragment.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── place_autocomplete_fragment.xml │ │ │ │ │ │ ├── place_autocomplete_item_powered_by_google.xml │ │ │ │ │ │ ├── place_autocomplete_item_prediction.xml │ │ │ │ │ │ └── place_autocomplete_progress.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-no │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-maps │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-nearby │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-panorama │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-plus │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ │ └── ic_plusone_tall_off_client.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ │ └── ic_plusone_tall_off_client.png │ │ │ │ │ │ ├── drawable-tvdpi-v4 │ │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ │ └── ic_plusone_tall_off_client.png │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ │ └── ic_plusone_tall_off_client.png │ │ │ │ │ │ └── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ │ └── ic_plusone_tall_off_client.png │ │ │ │ ├── play-services-safetynet │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-tagmanager-api │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-tagmanager │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-tasks │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-vision │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── play-services-wallet │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── wallet_primary_text_holo_light.xml │ │ │ │ │ │ └── wallet_secondary_text_holo_dark.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── play-services-wearable │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ └── play-services │ │ │ │ │ └── 9.0.0 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ └── jars │ │ │ │ │ └── classes.jar │ │ │ ├── com.google.firebase │ │ │ │ ├── firebase-analytics-impl │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-analytics │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-auth-common │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-auth-module │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-auth │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-common │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-config │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-crash │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── firebase-database-connection │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-database │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-iid │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-messaging │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── firebase-storage-common │ │ │ │ │ └── 9.0.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ └── firebase-storage │ │ │ │ │ └── 9.0.0 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── jars │ │ │ │ │ └── classes.jar │ │ │ │ │ └── proguard.txt │ │ │ └── com.liulishuo.magicprogresswidget │ │ │ │ └── library │ │ │ │ └── 1.0.2 │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ ├── aapt │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── jars │ │ │ │ └── classes.jar │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── incremental-classes │ │ │ └── debug │ │ │ │ └── instant-run-bootstrap.jar │ │ ├── incremental-runtime-classes │ │ │ └── debug │ │ │ │ └── instant-run.jar │ │ ├── incremental-safeguard │ │ │ └── debug │ │ │ │ └── tag.txt │ │ ├── incremental-verifier │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ └── v7 │ │ │ │ │ ├── appcompat │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ └── mediarouter │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ ├── google │ │ │ │ └── android │ │ │ │ │ └── gms │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$interpolator.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$raw.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ ├── R.class │ │ │ │ │ └── play_services │ │ │ │ │ └── R.class │ │ │ │ └── todddavies │ │ │ │ └── components │ │ │ │ └── progressbar │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── ProgressWheel$1.class │ │ │ │ ├── ProgressWheel.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$styleable.class │ │ │ │ ├── R.class │ │ │ │ ├── main$1.class │ │ │ │ ├── main$2.class │ │ │ │ ├── main$3.class │ │ │ │ └── main.class │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ └── dependency.store │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugResources │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebug │ │ │ │ ├── dex-renamer-state.txt │ │ │ │ └── file-input-save-data.txt │ │ │ └── packageInstantRunResourcesDebug │ │ │ │ └── dex-renamer-state.txt │ │ ├── instant-run-resources │ │ │ └── resources-debug.ir.ap_ │ │ ├── instant-run-support │ │ │ └── debug │ │ │ │ ├── instant-run.zip │ │ │ │ ├── manifest.crc │ │ │ │ └── manifest.xml │ │ ├── manifest │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── manifests │ │ │ ├── full │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ └── instant-run │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── multi-dex │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── manifest_keep.txt │ │ ├── res │ │ │ ├── merged │ │ │ │ └── debug │ │ │ │ │ ├── anim │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ └── abc_slide_out_top.xml │ │ │ │ │ ├── color-v11 │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ ├── color-v23 │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ ├── abc_color_highlight_material.xml │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ ├── abc_tint_switch_thumb.xml │ │ │ │ │ └── abc_tint_switch_track.xml │ │ │ │ │ ├── color │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ ├── abc_tint_switch_thumb.xml │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ ├── common_google_signin_btn_text_dark.xml │ │ │ │ │ ├── common_google_signin_btn_text_light.xml │ │ │ │ │ ├── common_plus_signin_btn_text_dark.xml │ │ │ │ │ ├── common_plus_signin_btn_text_light.xml │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ ├── switch_thumb_material_light.xml │ │ │ │ │ ├── wallet_primary_text_holo_light.xml │ │ │ │ │ └── wallet_secondary_text_holo_dark.xml │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── cast_ic_notification_0.png │ │ │ │ │ ├── cast_ic_notification_1.png │ │ │ │ │ ├── cast_ic_notification_2.png │ │ │ │ │ ├── cast_ic_notification_on.png │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── common_ic_googleplayservices.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── header.png │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ ├── ic_plusone_tall_off_client.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── login_gradient.png │ │ │ │ │ ├── login_gradient_flip.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── ab_bottom_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_stacked_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_texture_tile_easyrambooster.png │ │ │ │ │ ├── ab_transparent_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_default_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_focused_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_pressed_easyrambooster.9.png │ │ │ │ │ ├── cab_background_bottom_easyrambooster.9.png │ │ │ │ │ ├── cab_background_top_easyrambooster.9.png │ │ │ │ │ ├── ic_cast_dark.png │ │ │ │ │ ├── ic_cast_disabled_light.png │ │ │ │ │ ├── ic_cast_light.png │ │ │ │ │ ├── ic_cast_off_light.png │ │ │ │ │ ├── ic_cast_on_0_light.png │ │ │ │ │ ├── ic_cast_on_1_light.png │ │ │ │ │ ├── ic_cast_on_2_light.png │ │ │ │ │ ├── ic_cast_on_light.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_media_pause.png │ │ │ │ │ ├── ic_media_play.png │ │ │ │ │ ├── ic_media_route_disabled_mono_dark.png │ │ │ │ │ ├── ic_media_route_off_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_0_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_1_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_2_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_mono_dark.png │ │ │ │ │ ├── ic_pause_dark.png │ │ │ │ │ ├── ic_pause_light.png │ │ │ │ │ ├── ic_play_dark.png │ │ │ │ │ ├── ic_play_light.png │ │ │ │ │ ├── ic_setting_dark.png │ │ │ │ │ ├── ic_setting_light.png │ │ │ │ │ ├── list_focused_easyrambooster.9.png │ │ │ │ │ ├── list_pressed_easyrambooster.9.png │ │ │ │ │ ├── menu_dropdown_panel_easyrambooster.9.png │ │ │ │ │ ├── progress_bg_easyrambooster.9.png │ │ │ │ │ ├── progress_primary_easyrambooster.9.png │ │ │ │ │ ├── progress_secondary_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_default_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_disabled_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_focused_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_pressed_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_focused_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_pressed_easyrambooster.9.png │ │ │ │ │ ├── tab_unselected_easyrambooster.9.png │ │ │ │ │ ├── tab_unselected_focused_easyrambooster.9.png │ │ │ │ │ └── tab_unselected_pressed_easyrambooster.9.png │ │ │ │ │ ├── drawable-ldpi-v4 │ │ │ │ │ ├── common_ic_googleplayservices.png │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── cast_ic_notification_0.png │ │ │ │ │ ├── cast_ic_notification_1.png │ │ │ │ │ ├── cast_ic_notification_2.png │ │ │ │ │ ├── cast_ic_notification_on.png │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── common_ic_googleplayservices.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ ├── ic_plusone_tall_off_client.png │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── ab_bottom_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_stacked_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_texture_tile_easyrambooster.png │ │ │ │ │ ├── ab_transparent_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_default_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_focused_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_pressed_easyrambooster.9.png │ │ │ │ │ ├── cab_background_bottom_easyrambooster.9.png │ │ │ │ │ ├── cab_background_top_easyrambooster.9.png │ │ │ │ │ ├── ic_cast_dark.png │ │ │ │ │ ├── ic_cast_disabled_light.png │ │ │ │ │ ├── ic_cast_light.png │ │ │ │ │ ├── ic_cast_off_light.png │ │ │ │ │ ├── ic_cast_on_0_light.png │ │ │ │ │ ├── ic_cast_on_1_light.png │ │ │ │ │ ├── ic_cast_on_2_light.png │ │ │ │ │ ├── ic_cast_on_light.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_media_pause.png │ │ │ │ │ ├── ic_media_play.png │ │ │ │ │ ├── ic_media_route_disabled_mono_dark.png │ │ │ │ │ ├── ic_media_route_off_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_0_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_1_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_2_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_mono_dark.png │ │ │ │ │ ├── ic_pause_dark.png │ │ │ │ │ ├── ic_pause_light.png │ │ │ │ │ ├── ic_play_dark.png │ │ │ │ │ ├── ic_play_light.png │ │ │ │ │ ├── ic_setting_dark.png │ │ │ │ │ ├── ic_setting_light.png │ │ │ │ │ ├── list_focused_easyrambooster.9.png │ │ │ │ │ ├── list_pressed_easyrambooster.9.png │ │ │ │ │ ├── menu_dropdown_panel_easyrambooster.9.png │ │ │ │ │ ├── progress_bg_easyrambooster.9.png │ │ │ │ │ ├── progress_primary_easyrambooster.9.png │ │ │ │ │ ├── progress_secondary_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_default_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_disabled_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_focused_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_pressed_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_focused_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_pressed_easyrambooster.9.png │ │ │ │ │ ├── tab_unselected_easyrambooster.9.png │ │ │ │ │ ├── tab_unselected_focused_easyrambooster.9.png │ │ │ │ │ └── tab_unselected_pressed_easyrambooster.9.png │ │ │ │ │ ├── drawable-tvdpi-v4 │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ └── ic_plusone_tall_off_client.png │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ └── abc_edit_text_material.xml │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── cast_ic_notification_0.png │ │ │ │ │ ├── cast_ic_notification_1.png │ │ │ │ │ ├── cast_ic_notification_2.png │ │ │ │ │ ├── cast_ic_notification_on.png │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── common_ic_googleplayservices.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ ├── ic_plusone_tall_off_client.png │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── ab_bottom_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_stacked_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_texture_tile_easyrambooster.png │ │ │ │ │ ├── ab_transparent_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_default_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_focused_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_pressed_easyrambooster.9.png │ │ │ │ │ ├── cab_background_bottom_easyrambooster.9.png │ │ │ │ │ ├── cab_background_top_easyrambooster.9.png │ │ │ │ │ ├── ic_cast_dark.png │ │ │ │ │ ├── ic_cast_disabled_light.png │ │ │ │ │ ├── ic_cast_light.png │ │ │ │ │ ├── ic_cast_off_light.png │ │ │ │ │ ├── ic_cast_on_0_light.png │ │ │ │ │ ├── ic_cast_on_1_light.png │ │ │ │ │ ├── ic_cast_on_2_light.png │ │ │ │ │ ├── ic_cast_on_light.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_media_pause.png │ │ │ │ │ ├── ic_media_play.png │ │ │ │ │ ├── ic_media_route_disabled_mono_dark.png │ │ │ │ │ ├── ic_media_route_off_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_0_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_1_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_2_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_mono_dark.png │ │ │ │ │ ├── ic_pause_dark.png │ │ │ │ │ ├── ic_pause_light.png │ │ │ │ │ ├── ic_play_dark.png │ │ │ │ │ ├── ic_play_light.png │ │ │ │ │ ├── ic_setting_dark.png │ │ │ │ │ ├── ic_setting_light.png │ │ │ │ │ ├── list_focused_easyrambooster.9.png │ │ │ │ │ ├── list_pressed_easyrambooster.9.png │ │ │ │ │ ├── menu_dropdown_panel_easyrambooster.9.png │ │ │ │ │ ├── progress_bg_easyrambooster.9.png │ │ │ │ │ ├── progress_primary_easyrambooster.9.png │ │ │ │ │ ├── progress_secondary_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_default_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_disabled_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_focused_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_pressed_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_focused_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_pressed_easyrambooster.9.png │ │ │ │ │ ├── tab_unselected_easyrambooster.9.png │ │ │ │ │ ├── tab_unselected_focused_easyrambooster.9.png │ │ │ │ │ └── tab_unselected_pressed_easyrambooster.9.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ ├── cast_ic_notification_0.png │ │ │ │ │ ├── cast_ic_notification_1.png │ │ │ │ │ ├── cast_ic_notification_2.png │ │ │ │ │ ├── cast_ic_notification_on.png │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── common_ic_googleplayservices.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_icon_light_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_dark_pressed.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_disabled.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_focused.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_normal.9.png │ │ │ │ │ ├── common_plus_signin_btn_text_light_pressed.9.png │ │ │ │ │ ├── ic_plusone_medium_off_client.png │ │ │ │ │ ├── ic_plusone_small_off_client.png │ │ │ │ │ ├── ic_plusone_standard_off_client.png │ │ │ │ │ ├── ic_plusone_tall_off_client.png │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── ab_bottom_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_stacked_solid_easyrambooster.9.png │ │ │ │ │ ├── ab_texture_tile_easyrambooster.png │ │ │ │ │ ├── ab_transparent_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_default_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_focused_easyrambooster.9.png │ │ │ │ │ ├── btn_cab_done_pressed_easyrambooster.9.png │ │ │ │ │ ├── cab_background_bottom_easyrambooster.9.png │ │ │ │ │ ├── cab_background_top_easyrambooster.9.png │ │ │ │ │ ├── ic_cast_dark.png │ │ │ │ │ ├── ic_cast_disabled_light.png │ │ │ │ │ ├── ic_cast_light.png │ │ │ │ │ ├── ic_cast_off_light.png │ │ │ │ │ ├── ic_cast_on_0_light.png │ │ │ │ │ ├── ic_cast_on_1_light.png │ │ │ │ │ ├── ic_cast_on_2_light.png │ │ │ │ │ ├── ic_cast_on_light.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_media_pause.png │ │ │ │ │ ├── ic_media_play.png │ │ │ │ │ ├── ic_media_route_disabled_mono_dark.png │ │ │ │ │ ├── ic_media_route_off_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_0_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_1_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_2_mono_dark.png │ │ │ │ │ ├── ic_media_route_on_mono_dark.png │ │ │ │ │ ├── ic_pause_dark.png │ │ │ │ │ ├── ic_pause_light.png │ │ │ │ │ ├── ic_play_dark.png │ │ │ │ │ ├── ic_play_light.png │ │ │ │ │ ├── ic_setting_dark.png │ │ │ │ │ ├── ic_setting_light.png │ │ │ │ │ ├── list_focused_easyrambooster.9.png │ │ │ │ │ ├── list_pressed_easyrambooster.9.png │ │ │ │ │ ├── menu_dropdown_panel_easyrambooster.9.png │ │ │ │ │ ├── progress_bg_easyrambooster.9.png │ │ │ │ │ ├── progress_primary_easyrambooster.9.png │ │ │ │ │ ├── progress_secondary_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_default_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_disabled_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_focused_easyrambooster.9.png │ │ │ │ │ ├── spinner_ab_pressed_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_focused_easyrambooster.9.png │ │ │ │ │ ├── tab_selected_pressed_easyrambooster.9.png │ │ │ │ │ ├── tab_unselected_easyrambooster.9.png │ │ │ │ │ ├── tab_unselected_focused_easyrambooster.9.png │ │ │ │ │ └── tab_unselected_pressed_easyrambooster.9.png │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ ├── places_ic_clear.png │ │ │ │ │ ├── places_ic_search.png │ │ │ │ │ ├── powered_by_google_dark.png │ │ │ │ │ └── powered_by_google_light.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── ab_background_textured_easyrambooster.xml │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ ├── abc_ic_go_search_api_material.xml │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ ├── abc_ic_search_api_material.xml │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ ├── abc_ratingbar_material.xml │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ ├── btn_cab_done_easyrambooster.xml │ │ │ │ │ ├── button_boost_hvr.xml │ │ │ │ │ ├── button_boost_norm.xml │ │ │ │ │ ├── button_boost_sel.xml │ │ │ │ │ ├── card_background.xml │ │ │ │ │ ├── cast_ic_notification_connecting.xml │ │ │ │ │ ├── common_google_signin_btn_icon_dark.xml │ │ │ │ │ ├── common_google_signin_btn_icon_light.xml │ │ │ │ │ ├── common_google_signin_btn_text_dark.xml │ │ │ │ │ ├── common_google_signin_btn_text_light.xml │ │ │ │ │ ├── common_plus_signin_btn_icon_dark.xml │ │ │ │ │ ├── common_plus_signin_btn_icon_light.xml │ │ │ │ │ ├── common_plus_signin_btn_text_dark.xml │ │ │ │ │ ├── common_plus_signin_btn_text_light.xml │ │ │ │ │ ├── dialog_bg.xml │ │ │ │ │ ├── dialog_titlebg.xml │ │ │ │ │ ├── killbtn_hv.xml │ │ │ │ │ ├── killbtn_norm.xml │ │ │ │ │ ├── killbtn_sel.xml │ │ │ │ │ ├── mr_ic_cast_dark.xml │ │ │ │ │ ├── mr_ic_cast_light.xml │ │ │ │ │ ├── mr_ic_media_route_connecting_mono_dark.xml │ │ │ │ │ ├── mr_ic_media_route_connecting_mono_light.xml │ │ │ │ │ ├── mr_ic_media_route_mono_dark.xml │ │ │ │ │ ├── mr_ic_media_route_mono_light.xml │ │ │ │ │ ├── mr_ic_pause_dark.xml │ │ │ │ │ ├── mr_ic_pause_light.xml │ │ │ │ │ ├── mr_ic_play_dark.xml │ │ │ │ │ ├── mr_ic_play_light.xml │ │ │ │ │ ├── mr_ic_settings_dark.xml │ │ │ │ │ ├── mr_ic_settings_light.xml │ │ │ │ │ ├── progress_horizontal_easyrambooster.xml │ │ │ │ │ ├── search_btn_sel.xml │ │ │ │ │ ├── search_btnhv.xml │ │ │ │ │ ├── selectable_background_easyrambooster.xml │ │ │ │ │ ├── serach_btnorm.xml │ │ │ │ │ ├── spinner_background_ab_easyrambooster.xml │ │ │ │ │ └── tab_indicator_ab_easyrambooster.xml │ │ │ │ │ ├── layout-v17 │ │ │ │ │ └── mr_media_route_list_item.xml │ │ │ │ │ ├── layout-v21 │ │ │ │ │ └── place_autocomplete_fragment.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── boost_dialog.xml │ │ │ │ │ ├── boost_layout.xml │ │ │ │ │ ├── main.xml │ │ │ │ │ ├── memory_info_layout.xml │ │ │ │ │ ├── mr_media_route_chooser_dialog.xml │ │ │ │ │ ├── mr_media_route_controller_material_dialog_b.xml │ │ │ │ │ ├── mr_media_route_list_item.xml │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ ├── notification_template_lines.xml │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ ├── place_autocomplete_fragment.xml │ │ │ │ │ ├── place_autocomplete_item_powered_by_google.xml │ │ │ │ │ ├── place_autocomplete_item_prediction.xml │ │ │ │ │ ├── place_autocomplete_progress.xml │ │ │ │ │ ├── process_list_layout.xml │ │ │ │ │ ├── progress_spinner.xml │ │ │ │ │ ├── progress_wheel_activity.xml │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml │ │ │ │ │ ├── task_list_layout.xml │ │ │ │ │ └── taskclean_dialog.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── main.xml │ │ │ │ │ ├── raw │ │ │ │ │ └── gtm_analytics │ │ │ │ │ ├── values-af │ │ │ │ │ └── values-af.xml │ │ │ │ │ ├── values-am │ │ │ │ │ └── values-am.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ ├── values-az │ │ │ │ │ └── values-az.xml │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ ├── values-be-rBY │ │ │ │ │ └── values-be-rBY.xml │ │ │ │ │ ├── values-be │ │ │ │ │ └── values-be.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ └── values-bn-rBD.xml │ │ │ │ │ ├── values-bn │ │ │ │ │ └── values-bn.xml │ │ │ │ │ ├── values-bs-rBA │ │ │ │ │ └── values-bs-rBA.xml │ │ │ │ │ ├── values-bs │ │ │ │ │ └── values-bs.xml │ │ │ │ │ ├── values-ca │ │ │ │ │ └── values-ca.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ └── values-cs.xml │ │ │ │ │ ├── values-da │ │ │ │ │ └── values-da.xml │ │ │ │ │ ├── values-de │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-el │ │ │ │ │ └── values-el.xml │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ ├── values-es │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ ├── values-et │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ ├── values-eu │ │ │ │ │ └── values-eu.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ └── values-fa.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ └── values-fi.xml │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ └── values-fr.xml │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ ├── values-gl │ │ │ │ │ └── values-gl.xml │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ ├── values-gu │ │ │ │ │ └── values-gu.xml │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ ├── values-hy │ │ │ │ │ └── values-hy.xml │ │ │ │ │ ├── values-in │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ ├── values-is │ │ │ │ │ └── values-is.xml │ │ │ │ │ ├── values-it │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ ├── values-ka │ │ │ │ │ └── values-ka.xml │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ ├── values-kk │ │ │ │ │ └── values-kk.xml │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ ├── values-km │ │ │ │ │ └── values-km.xml │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ ├── values-kn │ │ │ │ │ └── values-kn.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ ├── values-ky │ │ │ │ │ └── values-ky.xml │ │ │ │ │ ├── values-land │ │ │ │ │ └── values-land.xml │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ ├── values-lo │ │ │ │ │ └── values-lo.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ ├── values-mk │ │ │ │ │ └── values-mk.xml │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ ├── values-ml │ │ │ │ │ └── values-ml.xml │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ ├── values-mn │ │ │ │ │ └── values-mn.xml │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ ├── values-mr │ │ │ │ │ └── values-mr.xml │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ └── values-ms.xml │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ ├── values-my │ │ │ │ │ └── values-my.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ ├── values-ne │ │ │ │ │ └── values-ne.xml │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-no │ │ │ │ │ └── values-no.xml │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ ├── values-pa │ │ │ │ │ └── values-pa.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-port │ │ │ │ │ └── values-port.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ └── values-ro.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ ├── values-si │ │ │ │ │ └── values-si.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ ├── values-sq │ │ │ │ │ └── values-sq.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ ├── values-sw720dp-land-v13 │ │ │ │ │ └── values-sw720dp-land-v13.xml │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ ├── values-ta │ │ │ │ │ └── values-ta.xml │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ ├── values-te │ │ │ │ │ └── values-te.xml │ │ │ │ │ ├── values-th │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ ├── values-ur │ │ │ │ │ └── values-ur.xml │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ ├── values-uz │ │ │ │ │ └── values-uz.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v12 │ │ │ │ │ └── values-v12.xml │ │ │ │ │ ├── values-v13 │ │ │ │ │ └── values-v13.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ └── values-v14.xml │ │ │ │ │ ├── values-v17 │ │ │ │ │ └── values-v17.xml │ │ │ │ │ ├── values-v18 │ │ │ │ │ └── values-v18.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v22 │ │ │ │ │ └── values-v22.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ └── values-zu.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── resources-debug-androidTest.ap_ │ │ │ └── resources-debug.ap_ │ │ ├── restart-dex │ │ │ └── debug │ │ │ │ └── build-info.xml │ │ ├── symbols │ │ │ └── debug │ │ │ │ └── R.txt │ │ └── transforms │ │ │ ├── instantRun │ │ │ └── debug │ │ │ │ └── folders │ │ │ │ └── 1 │ │ │ │ └── 5 │ │ │ │ └── main │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ └── v7 │ │ │ │ │ ├── appcompat │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ └── mediarouter │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ ├── google │ │ │ │ └── android │ │ │ │ │ └── gms │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$interpolator.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$raw.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ ├── R.class │ │ │ │ │ └── play_services │ │ │ │ │ └── R.class │ │ │ │ └── todddavies │ │ │ │ └── components │ │ │ │ └── progressbar │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── ProgressWheel$1.class │ │ │ │ ├── ProgressWheel.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$styleable.class │ │ │ │ ├── R.class │ │ │ │ ├── main$1.class │ │ │ │ ├── main$2.class │ │ │ │ ├── main$3.class │ │ │ │ └── main.class │ │ │ ├── instantRunSlicer │ │ │ └── debug │ │ │ │ └── folders │ │ │ │ └── 1 │ │ │ │ └── 5 │ │ │ │ ├── slice_0 │ │ │ │ ├── android │ │ │ │ │ └── support │ │ │ │ │ │ └── v7 │ │ │ │ │ │ └── mediarouter │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── fd │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_0.class │ │ │ │ ├── slice_2 │ │ │ │ └── android │ │ │ │ │ └── support │ │ │ │ │ └── v7 │ │ │ │ │ └── appcompat │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ ├── slice_3 │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── fd │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_3.class │ │ │ │ ├── slice_4 │ │ │ │ └── com │ │ │ │ │ ├── android │ │ │ │ │ └── tools │ │ │ │ │ │ └── fd │ │ │ │ │ │ └── dummy │ │ │ │ │ │ └── slice_4.class │ │ │ │ │ ├── google │ │ │ │ │ └── android │ │ │ │ │ │ └── gms │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$interpolator.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$raw.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ │ └── todddavies │ │ │ │ │ └── components │ │ │ │ │ └── progressbar │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── ProgressWheel$1.class │ │ │ │ │ ├── ProgressWheel.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ ├── R.class │ │ │ │ │ ├── main$1.class │ │ │ │ │ ├── main$2.class │ │ │ │ │ ├── main$3.class │ │ │ │ │ └── main.class │ │ │ │ ├── slice_5 │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── fd │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_5.class │ │ │ │ ├── slice_6 │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── fd │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_6.class │ │ │ │ ├── slice_7 │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── tools │ │ │ │ │ └── fd │ │ │ │ │ └── dummy │ │ │ │ │ └── slice_7.class │ │ │ │ └── slice_8 │ │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── tools │ │ │ │ └── fd │ │ │ │ └── dummy │ │ │ │ └── slice_8.class │ │ │ └── mergeJavaRes │ │ │ └── debug │ │ │ └── jars │ │ │ └── 2 │ │ │ └── 1f │ │ │ └── main.jar │ └── outputs │ │ ├── apk │ │ └── memoryBooster-debug.apk │ │ └── logs │ │ └── manifest-merger-debug-report.txt ├── libs │ ├── com.haarman.listviewanimations-2.5.2.jar │ ├── libGoogleAnalyticsServices.jar │ └── nineoldandroids-2.4.0.jar ├── lint.xml ├── memoryBooster.iml └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── blackListActivities.json │ ├── blackListPackages.json │ ├── permissions.json │ └── whiteList.json │ ├── java │ └── com │ │ └── booster │ │ └── avivast │ │ ├── BoostDialog.java │ │ ├── BoostFragment.java │ │ ├── DeviceMemoryInfo.java │ │ ├── ExternalStorage.java │ │ ├── MainActivity.java │ │ ├── MemoryBoosterAdapter.java │ │ ├── MoreFragments.java │ │ ├── TaskDialog.java │ │ ├── TaskFragment.java │ │ ├── TaskKillDialog.java │ │ ├── antivirus │ │ ├── ActivityData.java │ │ ├── AntivirusActivity.java │ │ ├── AntivirusFragment.java │ │ ├── AppData.java │ │ ├── AppProblem.java │ │ ├── BadPackageDataSet.java │ │ ├── BootCompletedReceiver.java │ │ ├── DebugUSBEnabledProblem.java │ │ ├── EulaActivity.java │ │ ├── GoodPackageResultData.java │ │ ├── IDataSet.java │ │ ├── IDataSetChangesListener.java │ │ ├── IFactory.java │ │ ├── IJSONDataSet.java │ │ ├── IJSONSerializer.java │ │ ├── IOnActionFinished.java │ │ ├── IOnAdapterItemRemoved.java │ │ ├── IOnAppEvent.java │ │ ├── IPackageChangesListener.java │ │ ├── IProblem.java │ │ ├── IResultItemSelectedListener.java │ │ ├── IResultsAdapterItem.java │ │ ├── IconExtractor.java │ │ ├── IgnoredAdapter.java │ │ ├── IgnoredListFragment.java │ │ ├── InfoAppFragment.java │ │ ├── JSONDataSet.java │ │ ├── MainFragment.java │ │ ├── MenacesCacheSet.java │ │ ├── MonitorShieldService.java │ │ ├── PackageBroadcastReceiver.java │ │ ├── PackageData.java │ │ ├── PackageDataSet.java │ │ ├── PermissionData.java │ │ ├── ProblemDataSet.java │ │ ├── ProblemFactory.java │ │ ├── ProblemWrapper.java │ │ ├── ProblemsDataSetTools.java │ │ ├── ResultsAdapter.java │ │ ├── ResultsAdapterHeaderItem.java │ │ ├── ResultsAdapterProblemItem.java │ │ ├── ResultsFragment.java │ │ ├── Scanner.java │ │ ├── ScanningFileSystemAsyncTask.java │ │ ├── SplashActivity.java │ │ ├── StaticTools.java │ │ ├── SystemProblem.java │ │ ├── UnknownAppEnabledProblem.java │ │ ├── UserWhiteList.java │ │ ├── WarningData.java │ │ └── WarningsAdapter.java │ │ └── process │ │ ├── AppShort.java │ │ ├── PackagesInfo.java │ │ ├── ProcessListAdapter.java │ │ └── TaskInfo.java │ └── res │ ├── anim │ ├── slide_in_left.xml │ ├── slide_in_right.xml │ ├── slide_out_left.xml │ └── slide_out_right.xml │ ├── drawable-hdpi │ ├── ab_bottom_solid_easyrambooster.9.png │ ├── ab_solid_easyrambooster.9.png │ ├── ab_stacked_solid_easyrambooster.9.png │ ├── ab_texture_tile_easyrambooster.png │ ├── ab_transparent_easyrambooster.9.png │ ├── btn_cab_done_default_easyrambooster.9.png │ ├── btn_cab_done_focused_easyrambooster.9.png │ ├── btn_cab_done_pressed_easyrambooster.9.png │ ├── cab_background_bottom_easyrambooster.9.png │ ├── cab_background_top_easyrambooster.9.png │ ├── ic_launcher.png │ ├── list_focused_easyrambooster.9.png │ ├── list_pressed_easyrambooster.9.png │ ├── menu_dropdown_panel_easyrambooster.9.png │ ├── progress_bg_easyrambooster.9.png │ ├── progress_primary_easyrambooster.9.png │ ├── progress_secondary_easyrambooster.9.png │ ├── spinner_ab_default_easyrambooster.9.png │ ├── spinner_ab_disabled_easyrambooster.9.png │ ├── spinner_ab_focused_easyrambooster.9.png │ ├── spinner_ab_pressed_easyrambooster.9.png │ ├── tab_selected_easyrambooster.9.png │ ├── tab_selected_focused_easyrambooster.9.png │ ├── tab_selected_pressed_easyrambooster.9.png │ ├── tab_unselected_easyrambooster.9.png │ ├── tab_unselected_focused_easyrambooster.9.png │ └── tab_unselected_pressed_easyrambooster.9.png │ ├── drawable-mdpi │ ├── ab_bottom_solid_easyrambooster.9.png │ ├── ab_solid_easyrambooster.9.png │ ├── ab_stacked_solid_easyrambooster.9.png │ ├── ab_texture_tile_easyrambooster.png │ ├── ab_transparent_easyrambooster.9.png │ ├── btn_cab_done_default_easyrambooster.9.png │ ├── btn_cab_done_focused_easyrambooster.9.png │ ├── btn_cab_done_pressed_easyrambooster.9.png │ ├── cab_background_bottom_easyrambooster.9.png │ ├── cab_background_top_easyrambooster.9.png │ ├── ic_launcher.png │ ├── list_focused_easyrambooster.9.png │ ├── list_pressed_easyrambooster.9.png │ ├── menu_dropdown_panel_easyrambooster.9.png │ ├── progress_bg_easyrambooster.9.png │ ├── progress_primary_easyrambooster.9.png │ ├── progress_secondary_easyrambooster.9.png │ ├── spinner_ab_default_easyrambooster.9.png │ ├── spinner_ab_disabled_easyrambooster.9.png │ ├── spinner_ab_focused_easyrambooster.9.png │ ├── spinner_ab_pressed_easyrambooster.9.png │ ├── tab_selected_easyrambooster.9.png │ ├── tab_selected_focused_easyrambooster.9.png │ ├── tab_selected_pressed_easyrambooster.9.png │ ├── tab_unselected_easyrambooster.9.png │ ├── tab_unselected_focused_easyrambooster.9.png │ └── tab_unselected_pressed_easyrambooster.9.png │ ├── drawable-xhdpi │ ├── ab_bottom_solid_easyrambooster.9.png │ ├── ab_solid_easyrambooster.9.png │ ├── ab_stacked_solid_easyrambooster.9.png │ ├── ab_texture_tile_easyrambooster.png │ ├── ab_transparent_easyrambooster.9.png │ ├── antivirus.png │ ├── btn_cab_done_default_easyrambooster.9.png │ ├── btn_cab_done_focused_easyrambooster.9.png │ ├── btn_cab_done_pressed_easyrambooster.9.png │ ├── cab_background_bottom_easyrambooster.9.png │ ├── cab_background_top_easyrambooster.9.png │ ├── ic_launcher.png │ ├── list_focused_easyrambooster.9.png │ ├── list_pressed_easyrambooster.9.png │ ├── menu_dropdown_panel_easyrambooster.9.png │ ├── progress_bg_easyrambooster.9.png │ ├── progress_primary_easyrambooster.9.png │ ├── progress_secondary_easyrambooster.9.png │ ├── spinner_ab_default_easyrambooster.9.png │ ├── spinner_ab_disabled_easyrambooster.9.png │ ├── spinner_ab_focused_easyrambooster.9.png │ ├── spinner_ab_pressed_easyrambooster.9.png │ ├── tab_selected_easyrambooster.9.png │ ├── tab_selected_focused_easyrambooster.9.png │ ├── tab_selected_pressed_easyrambooster.9.png │ ├── tab_unselected_easyrambooster.9.png │ ├── tab_unselected_focused_easyrambooster.9.png │ └── tab_unselected_pressed_easyrambooster.9.png │ ├── drawable-xxhdpi │ ├── ab_bottom_solid_easyrambooster.9.png │ ├── ab_solid_easyrambooster.9.png │ ├── ab_stacked_solid_easyrambooster.9.png │ ├── ab_texture_tile_easyrambooster.png │ ├── ab_transparent_easyrambooster.9.png │ ├── btn_cab_done_default_easyrambooster.9.png │ ├── btn_cab_done_focused_easyrambooster.9.png │ ├── btn_cab_done_pressed_easyrambooster.9.png │ ├── cab_background_bottom_easyrambooster.9.png │ ├── cab_background_top_easyrambooster.9.png │ ├── ic_launcher.png │ ├── list_focused_easyrambooster.9.png │ ├── list_pressed_easyrambooster.9.png │ ├── menu_dropdown_panel_easyrambooster.9.png │ ├── progress_bg_easyrambooster.9.png │ ├── progress_primary_easyrambooster.9.png │ ├── progress_secondary_easyrambooster.9.png │ ├── spinner_ab_default_easyrambooster.9.png │ ├── spinner_ab_disabled_easyrambooster.9.png │ ├── spinner_ab_focused_easyrambooster.9.png │ ├── spinner_ab_pressed_easyrambooster.9.png │ ├── tab_selected_easyrambooster.9.png │ ├── tab_selected_focused_easyrambooster.9.png │ ├── tab_selected_pressed_easyrambooster.9.png │ ├── tab_unselected_easyrambooster.9.png │ ├── tab_unselected_focused_easyrambooster.9.png │ └── tab_unselected_pressed_easyrambooster.9.png │ ├── drawable │ ├── ab_background_textured_easyrambooster.xml │ ├── adware_icon.png │ ├── btn_cab_done_easyrambooster.xml │ ├── button_boost_hvr.xml │ ├── button_boost_norm.xml │ ├── button_boost_sel.xml │ ├── calibrate_button_selector.xml │ ├── camera_icon.png │ ├── cancel.png │ ├── card_background.xml │ ├── decline_eula_button_selector.xml │ ├── dialog_bg.xml │ ├── dialog_titlebg.xml │ ├── fine_location_icon.png │ ├── gear.png │ ├── history_icon.png │ ├── iconsplash.png │ ├── information.png │ ├── killbtn_hv.xml │ ├── killbtn_norm.xml │ ├── killbtn_sel.xml │ ├── ok_100.png │ ├── phone_icon.png │ ├── privacy_icon.png │ ├── progress_horizontal_easyrambooster.xml │ ├── read_sms.png │ ├── record_audio_icon.png │ ├── resolve_button_medium_risk.xml │ ├── resolve_button_selector.xml │ ├── search_btn_sel.xml │ ├── search_btnhv.xml │ ├── selectable_background_easyrambooster.xml │ ├── send_sms.png │ ├── serach_btnorm.xml │ ├── shield_high_risk_icon.png │ ├── shield_medium_risk_icon.png │ ├── shield_protected_icon.png │ ├── spinner_background_ab_easyrambooster.xml │ ├── tab_indicator_ab_easyrambooster.xml │ └── usb_icon.png │ ├── layout │ ├── activity_main.xml │ ├── anti_activity_main.xml │ ├── app_info_fragment.xml │ ├── boost_dialog.xml │ ├── boost_layout.xml │ ├── config_adapter.xml │ ├── eula.xml │ ├── ignored_list_fragment.xml │ ├── ignored_list_item.xml │ ├── main_fragment.xml │ ├── memory_info_layout.xml │ ├── process_list_layout.xml │ ├── results_fragment.xml │ ├── results_list_header.xml │ ├── results_list_item.xml │ ├── splash.xml │ ├── task_list_layout.xml │ ├── taskclean_dialog.xml │ └── warning_item.xml │ ├── menu │ ├── main.xml │ └── menu_layout.xml │ ├── values-large │ └── dimens.xml │ ├── values-sw600dp │ └── dimens.xml │ ├── values-sw720dp-land │ └── dimens.xml │ ├── values-v14 │ ├── styles.xml │ └── styles_easyrambooster.xml │ ├── values-xlarge │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ └── styles_easyrambooster.xml ├── progressWheel ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── todddavies │ │ │ │ │ └── components │ │ │ │ │ └── progressbar │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ ├── debug │ │ │ │ └── com │ │ │ │ │ └── todddavies │ │ │ │ │ └── components │ │ │ │ │ └── progressbar │ │ │ │ │ └── BuildConfig.java │ │ │ └── release │ │ │ │ └── com │ │ │ │ └── todddavies │ │ │ │ └── components │ │ │ │ └── progressbar │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ ├── androidTest │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── todddavies │ │ │ │ └── components │ │ │ │ └── progressbar │ │ │ │ ├── R.java │ │ │ │ └── test │ │ │ │ └── R.java │ │ │ ├── debug │ │ │ └── com │ │ │ │ └── todddavies │ │ │ │ └── components │ │ │ │ └── progressbar │ │ │ │ └── R.java │ │ │ └── release │ │ │ └── com │ │ │ └── todddavies │ │ │ └── components │ │ │ └── progressbar │ │ │ └── R.java │ ├── intermediates │ │ ├── blame │ │ │ └── res │ │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ ├── multi │ │ │ │ └── values.json │ │ │ │ └── single │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ ├── drawable-ldpi-v4.json │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ └── layout.json │ │ ├── bundles │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── header.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── login_gradient.png │ │ │ │ │ ├── login_gradient_flip.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── layout │ │ │ │ │ ├── main.xml │ │ │ │ │ ├── progress_spinner.xml │ │ │ │ │ └── progress_wheel_activity.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ └── release │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ ├── classes.jar │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ ├── header.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── icon.png │ │ │ │ ├── login_gradient.png │ │ │ │ ├── login_gradient_flip.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi-v4 │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ ├── main.xml │ │ │ │ ├── progress_spinner.xml │ │ │ │ └── progress_wheel_activity.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── classes │ │ │ └── release │ │ │ │ └── com │ │ │ │ └── todddavies │ │ │ │ └── components │ │ │ │ └── progressbar │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── ProgressWheel$1.class │ │ │ │ ├── ProgressWheel.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$styleable.class │ │ │ │ ├── R.class │ │ │ │ ├── main$1.class │ │ │ │ ├── main$2.class │ │ │ │ ├── main$3.class │ │ │ │ └── main.class │ │ ├── incremental-safeguard │ │ │ └── release │ │ │ │ └── tag.txt │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ └── dependency.store │ │ │ ├── compileReleaseAidl │ │ │ │ └── dependency.store │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ ├── merged.dir │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebugResources │ │ │ │ ├── merged.dir │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ └── packageReleaseResources │ │ │ │ ├── merged.dir │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ ├── manifest │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── manifests │ │ │ └── aapt │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── release │ │ │ │ └── AndroidManifest.xml │ │ ├── res │ │ │ ├── merged │ │ │ │ └── androidTest │ │ │ │ │ └── debug │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── header.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── login_gradient.png │ │ │ │ │ ├── login_gradient_flip.png │ │ │ │ │ └── logo.png │ │ │ │ │ ├── drawable-ldpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── layout │ │ │ │ │ ├── main.xml │ │ │ │ │ ├── progress_spinner.xml │ │ │ │ │ └── progress_wheel_activity.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ └── resources-debug-androidTest.ap_ │ │ └── symbols │ │ │ └── androidTest │ │ │ └── debug │ │ │ └── R.txt │ └── outputs │ │ └── aar │ │ ├── progressWheel-debug.aar │ │ └── progressWheel-release.aar ├── progressWheel.iml └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── todddavies │ │ └── components │ │ └── progressbar │ │ ├── ProgressWheel.java │ │ └── main.java │ └── res │ ├── drawable-hdpi │ ├── header.png │ ├── ic_launcher.png │ ├── icon.png │ ├── login_gradient.png │ ├── login_gradient_flip.png │ └── logo.png │ ├── drawable-ldpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── layout │ ├── main.xml │ ├── progress_spinner.xml │ └── progress_wheel_activity.xml │ └── values │ ├── attrs.xml │ └── strings.xml └── settings.gradle /.gradle/2.10/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Aug 01 15:37:14 PKT 2016 2 | -------------------------------------------------------------------------------- /.gradle/2.10/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.gradle/2.10/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /.gradle/2.10/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.gradle/2.10/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/2.10/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.gradle/2.10/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /.gradle/2.10/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.gradle/2.10/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /.gradle/2.10/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.gradle/2.10/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/Circle_Progress_View_1_2_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/Circle_Progress_View_1_2_8.xml -------------------------------------------------------------------------------- /.idea/libraries/animated_vector_drawable_24_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/animated_vector_drawable_24_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_24_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/appcompat_v7_24_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/com_haarman_listviewanimations_2_5_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/com_haarman_listviewanimations_2_5_2.xml -------------------------------------------------------------------------------- /.idea/libraries/core_0_9_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/core_0_9_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/design_24_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/design_24_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_analytics_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_analytics_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_analytics_impl_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_analytics_impl_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_auth_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_auth_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_auth_common_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_auth_common_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_auth_module_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_auth_module_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_common_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_common_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_config_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_config_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_crash_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_crash_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_database_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_database_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_database_connection_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_database_connection_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_iid_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_iid_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_messaging_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_messaging_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_storage_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_storage_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/firebase_storage_common_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/firebase_storage_common_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/joda_time_2_9_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/joda_time_2_9_2.xml -------------------------------------------------------------------------------- /.idea/libraries/library_1_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/library_1_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/library_1_1_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/library_1_1_7.xml -------------------------------------------------------------------------------- /.idea/libraries/mediarouter_v7_23_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/mediarouter_v7_23_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/multidex_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/multidex_1_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/multidex_instrumentation_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/multidex_instrumentation_1_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/nineoldandroids_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/nineoldandroids_2_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_ads_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_ads_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_ads_lite_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_ads_lite_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_analytics_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_analytics_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_analytics_impl_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_analytics_impl_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_appindexing_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_appindexing_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_appinvite_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_appinvite_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_auth_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_auth_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_auth_base_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_auth_base_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_base_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_base_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_basement_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_basement_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_cast_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_cast_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_drive_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_drive_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_fitness_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_fitness_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_games_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_games_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_gcm_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_gcm_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_identity_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_identity_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_iid_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_iid_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_location_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_location_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_maps_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_maps_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_nearby_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_nearby_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_panorama_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_panorama_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_plus_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_plus_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_safetynet_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_safetynet_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_tagmanager_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_tagmanager_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_tagmanager_api_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_tagmanager_api_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_tasks_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_tasks_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_vision_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_vision_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_wallet_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_wallet_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_wearable_9_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/play_services_wearable_9_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/ratethisapp_1_0_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/ratethisapp_1_0_5.xml -------------------------------------------------------------------------------- /.idea/libraries/recyclerview_v7_24_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/recyclerview_v7_24_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_24_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/support_annotations_24_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_24_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/support_v4_24_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/support_vector_drawable_24_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/libraries/support_vector_drawable_24_1_1.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /MemoryBooster.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/MemoryBooster.iml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/import-summary.txt -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/local.properties -------------------------------------------------------------------------------- /memoryBooster/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build.gradle -------------------------------------------------------------------------------- /memoryBooster/build/generated/source/r/debug/android/support/design/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/generated/source/r/debug/android/support/design/R.java -------------------------------------------------------------------------------- /memoryBooster/build/generated/source/r/debug/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/generated/source/r/debug/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /memoryBooster/build/generated/source/r/debug/android/support/v7/mediarouter/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/generated/source/r/debug/android/support/v7/mediarouter/R.java -------------------------------------------------------------------------------- /memoryBooster/build/generated/source/r/debug/android/support/v7/recyclerview/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/generated/source/r/debug/android/support/v7/recyclerview/R.java -------------------------------------------------------------------------------- /memoryBooster/build/generated/source/r/debug/at/grabner/circleprogress/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/generated/source/r/debug/at/grabner/circleprogress/R.java -------------------------------------------------------------------------------- /memoryBooster/build/generated/source/r/debug/com/google/android/gms/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/generated/source/r/debug/com/google/android/gms/R.java -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-af.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-am.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ar.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-az-rAZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-az-rAZ.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-az.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-b+sr+Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-b+sr+Latn.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-be-rBY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-be-rBY.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-be.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-bg.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-bn-rBD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-bn-rBD.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-bn.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-bs-rBA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-bs-rBA.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-bs.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ca.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-cs.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-da.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-de.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-el.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-en-rAU.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-en-rGB.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-en-rIN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-es-rUS.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-es.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-et-rEE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-et-rEE.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-et.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-eu-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-eu-rES.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-eu.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-fa.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-fi.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-fr-rCA.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-fr.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-gl-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-gl-rES.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-gl.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-gu-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-gu-rIN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-gu.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-h720dp-v13.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-hi.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-hr.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-hu.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-hy-rAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-hy-rAM.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-hy.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-in.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-is-rIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-is-rIS.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-is.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-it.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-iw.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ja.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ka-rGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ka-rGE.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ka.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-kk.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-km-rKH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-km-rKH.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-km.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-kn-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-kn-rIN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-kn.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ko.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ky-rKG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ky-rKG.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ky.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-land.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-large-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-large-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ldltr-v21.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-lo-rLA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-lo-rLA.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-lo.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-lt.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-lv.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-mk-rMK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-mk-rMK.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-mk.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ml-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ml-rIN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ml.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-mn-rMN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-mn-rMN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-mn.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-mr-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-mr-rIN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-mr.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ms-rMY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ms-rMY.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ms.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-my-rMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-my-rMM.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-my.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-nb.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ne-rNP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ne-rNP.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ne.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-night-v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-night-v8.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-nl.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-no.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-pa-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-pa-rIN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-pa.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-pl.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-port.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-pt-rBR.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-pt-rPT.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-pt.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ro.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ru.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-si-rLK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-si-rLK.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-si.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-sk.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-sl.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-sq-rAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-sq-rAL.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-sq.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-sr.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-sv.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-sw.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-sw600dp-v13.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ta-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ta-rIN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ta.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-te-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-te-rIN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-te.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-th.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-tl.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-tr.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-uk.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ur-rPK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ur-rPK.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-ur.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-uz.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-v11.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-v12.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-v13.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-v14.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-v17.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-v18.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-v21.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-v22.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-v23.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-vi.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-xlarge-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-zh-rCN.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-zh-rHK.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values-zu.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/multi/values.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/anim.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/color-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/color-v11.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/color-v23.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/color.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-hdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-hdpi.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-ldpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-ldpi-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-mdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-mdpi.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-tvdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-tvdpi-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-v21.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-v23.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-xhdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-xhdpi.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-xxhdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-xxhdpi.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable-xxxhdpi-v4.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/drawable.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/layout-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/layout-v17.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/layout-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/layout-v21.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/layout.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/menu.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/blame/res/debug/single/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/blame/res/debug/single/raw.json -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$anim.class -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$attr.class -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$bool.class -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$id.class -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R$raw.class -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/classes/debug/com/google/android/gms/R.class -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/exploded-aar/com.google.android.gms/play-services/9.0.0/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental-runtime-classes/debug/instant-run.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/incremental-runtime-classes/debug/instant-run.jar -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental-safeguard/debug/tag.txt: -------------------------------------------------------------------------------- 1 | incremental task execution -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/incremental/mergeDebugAssets/merger.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental/mergeDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/incremental/mergeDebugResources/merger.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/incremental/mergeDebugShaders/merger.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental/packageDebug/dex-renamer-state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/incremental/packageDebug/dex-renamer-state.txt -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental/packageDebug/file-input-save-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/incremental/packageDebug/file-input-save-data.txt -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/incremental/packageInstantRunResourcesDebug/dex-renamer-state.txt: -------------------------------------------------------------------------------- 1 | #Mon Aug 29 15:48:51 PKT 2016 2 | -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/instant-run-resources/resources-debug.ir.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/instant-run-resources/resources-debug.ir.ap_ -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/instant-run-support/debug/instant-run.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/instant-run-support/debug/instant-run.zip -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/instant-run-support/debug/manifest.crc: -------------------------------------------------------------------------------- 1 | 4137814391 -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/instant-run-support/debug/manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/instant-run-support/debug/manifest.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/manifests/full/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/manifests/instant-run/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/manifests/instant-run/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/multi-dex/androidTest/debug/manifest_keep.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color-v23/abc_tint_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color-v23/abc_tint_default.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color-v23/abc_tint_edittext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color-v23/abc_tint_edittext.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color-v23/abc_tint_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color-v23/abc_tint_spinner.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_btn_checkable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_btn_checkable.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_default.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_edittext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_edittext.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_seek_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_seek_thumb.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_spinner.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_switch_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_switch_thumb.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_switch_track.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/color/abc_tint_switch_track.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi-v4/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi-v4/header.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi-v4/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi-v4/icon.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi-v4/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi-v4/logo.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_cast_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_cast_dark.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_cast_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_cast_light.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_media_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_media_pause.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_media_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_media_play.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_pause_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-hdpi/ic_pause_dark.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/button_boost_hvr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/button_boost_hvr.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/button_boost_sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/button_boost_sel.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/card_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/card_background.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/dialog_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/dialog_bg.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/dialog_titlebg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/dialog_titlebg.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/killbtn_hv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/killbtn_hv.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/killbtn_norm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/killbtn_norm.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/killbtn_sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/killbtn_sel.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_cast_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_cast_dark.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_cast_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_cast_light.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_pause_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_pause_dark.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_play_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_play_dark.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_play_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/mr_ic_play_light.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/search_btn_sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/search_btn_sel.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/search_btnhv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/search_btnhv.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/drawable/serach_btnorm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/drawable/serach_btnorm.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/abc_screen_toolbar.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/abc_search_view.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/activity_main.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/boost_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/boost_dialog.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/boost_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/boost_layout.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/main.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/memory_info_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/memory_info_layout.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/progress_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/progress_spinner.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/task_list_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/task_list_layout.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/layout/taskclean_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/layout/taskclean_dialog.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/menu/main.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/raw/gtm_analytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/raw/gtm_analytics -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-af/values-af.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-am/values-am.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ar/values-ar.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-az/values-az.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-az/values-az.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-be/values-be.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-be/values-be.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-bg/values-bg.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-bn/values-bn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-bn/values-bn.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-bs/values-bs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-bs/values-bs.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ca/values-ca.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-cs/values-cs.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-da/values-da.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-de/values-de.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-el/values-el.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-es/values-es.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-et/values-et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-et/values-et.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-eu/values-eu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-eu/values-eu.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-fa/values-fa.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-fi/values-fi.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-fr/values-fr.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-gl/values-gl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-gl/values-gl.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-gu/values-gu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-gu/values-gu.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-hi/values-hi.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-hr/values-hr.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-hu/values-hu.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-hy/values-hy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-hy/values-hy.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-in/values-in.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-is/values-is.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-is/values-is.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-it/values-it.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-iw/values-iw.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ja/values-ja.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ka/values-ka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ka/values-ka.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-kk/values-kk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-kk/values-kk.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-km/values-km.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-km/values-km.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-kn/values-kn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-kn/values-kn.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ko/values-ko.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ky/values-ky.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ky/values-ky.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-land/values-land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-land/values-land.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-lo/values-lo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-lo/values-lo.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-lt/values-lt.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-lv/values-lv.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-mk/values-mk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-mk/values-mk.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ml/values-ml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ml/values-ml.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-mn/values-mn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-mn/values-mn.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-mr/values-mr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-mr/values-mr.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ms/values-ms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ms/values-ms.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-my/values-my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-my/values-my.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-nb/values-nb.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ne/values-ne.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ne/values-ne.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-nl/values-nl.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-no/values-no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-no/values-no.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-pa/values-pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-pa/values-pa.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-pl/values-pl.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-port/values-port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-port/values-port.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-pt/values-pt.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ro/values-ro.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ru/values-ru.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-si/values-si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-si/values-si.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-sk/values-sk.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-sl/values-sl.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-sq/values-sq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-sq/values-sq.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-sr/values-sr.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-sv/values-sv.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-sw/values-sw.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ta/values-ta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ta/values-ta.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-te/values-te.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-te/values-te.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-th/values-th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-th/values-th.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-tl/values-tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-tl/values-tl.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-tr/values-tr.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-uk/values-uk.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-ur/values-ur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-ur/values-ur.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-uz/values-uz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-uz/values-uz.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-v11/values-v11.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-v12/values-v12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-v12/values-v12.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-v13/values-v13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-v13/values-v13.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-v14/values-v14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-v14/values-v14.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-v17/values-v17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-v17/values-v17.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-v18/values-v18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-v18/values-v18.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-v21/values-v21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-v21/values-v21.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-v22/values-v22.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-v22/values-v22.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-v23/values-v23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-v23/values-v23.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-vi/values-vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-vi/values-vi.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values-zu/values-zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values-zu/values-zu.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/merged/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/merged/debug/values/values.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/res/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/res/resources-debug.ap_ -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/restart-dex/debug/build-info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/restart-dex/debug/build-info.xml -------------------------------------------------------------------------------- /memoryBooster/build/intermediates/symbols/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/intermediates/symbols/debug/R.txt -------------------------------------------------------------------------------- /memoryBooster/build/outputs/apk/memoryBooster-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/outputs/apk/memoryBooster-debug.apk -------------------------------------------------------------------------------- /memoryBooster/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/build/outputs/logs/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /memoryBooster/libs/com.haarman.listviewanimations-2.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/libs/com.haarman.listviewanimations-2.5.2.jar -------------------------------------------------------------------------------- /memoryBooster/libs/libGoogleAnalyticsServices.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/libs/libGoogleAnalyticsServices.jar -------------------------------------------------------------------------------- /memoryBooster/libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /memoryBooster/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/lint.xml -------------------------------------------------------------------------------- /memoryBooster/memoryBooster.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/memoryBooster.iml -------------------------------------------------------------------------------- /memoryBooster/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/assets/blackListActivities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/assets/blackListActivities.json -------------------------------------------------------------------------------- /memoryBooster/src/main/assets/blackListPackages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/assets/blackListPackages.json -------------------------------------------------------------------------------- /memoryBooster/src/main/assets/permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/assets/permissions.json -------------------------------------------------------------------------------- /memoryBooster/src/main/assets/whiteList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/assets/whiteList.json -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/BoostDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/BoostDialog.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/BoostFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/BoostFragment.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/DeviceMemoryInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/DeviceMemoryInfo.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/ExternalStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/ExternalStorage.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/MainActivity.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/MemoryBoosterAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/MemoryBoosterAdapter.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/MoreFragments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/MoreFragments.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/TaskDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/TaskDialog.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/TaskFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/TaskFragment.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/TaskKillDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/TaskKillDialog.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/ActivityData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/ActivityData.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/AntivirusActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/AntivirusActivity.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/AntivirusFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/AntivirusFragment.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/AppData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/AppData.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/AppProblem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/AppProblem.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/BadPackageDataSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/BadPackageDataSet.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/EulaActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/EulaActivity.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/IDataSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/IDataSet.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/IFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/IFactory.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/IJSONDataSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/IJSONDataSet.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/IJSONSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/IJSONSerializer.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/IOnActionFinished.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/IOnActionFinished.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/IOnAppEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/IOnAppEvent.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/IProblem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/IProblem.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/IconExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/IconExtractor.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/IgnoredAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/IgnoredAdapter.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/InfoAppFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/InfoAppFragment.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/JSONDataSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/JSONDataSet.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/MainFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/MainFragment.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/MenacesCacheSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/MenacesCacheSet.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/PackageData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/PackageData.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/PackageDataSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/PackageDataSet.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/PermissionData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/PermissionData.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/ProblemDataSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/ProblemDataSet.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/ProblemFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/ProblemFactory.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/ProblemWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/ProblemWrapper.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/ResultsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/ResultsAdapter.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/ResultsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/ResultsFragment.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/Scanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/Scanner.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/SplashActivity.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/StaticTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/StaticTools.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/SystemProblem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/SystemProblem.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/UserWhiteList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/UserWhiteList.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/WarningData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/WarningData.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/antivirus/WarningsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/antivirus/WarningsAdapter.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/process/AppShort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/process/AppShort.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/process/PackagesInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/process/PackagesInfo.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/process/ProcessListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/process/ProcessListAdapter.java -------------------------------------------------------------------------------- /memoryBooster/src/main/java/com/booster/avivast/process/TaskInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/java/com/booster/avivast/process/TaskInfo.java -------------------------------------------------------------------------------- /memoryBooster/src/main/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/anim/slide_in_left.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/anim/slide_in_right.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/anim/slide_out_left.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/anim/slide_out_right.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/ab_bottom_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/ab_bottom_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/ab_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/ab_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/ab_stacked_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/ab_stacked_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/ab_texture_tile_easyrambooster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/ab_texture_tile_easyrambooster.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/ab_transparent_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/ab_transparent_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/cab_background_top_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/cab_background_top_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/list_focused_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/list_focused_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/list_pressed_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/list_pressed_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/progress_bg_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/progress_bg_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/progress_primary_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/progress_primary_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/progress_secondary_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/progress_secondary_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/spinner_ab_default_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/spinner_ab_default_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/spinner_ab_focused_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/spinner_ab_focused_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/spinner_ab_pressed_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/spinner_ab_pressed_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/tab_selected_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/tab_selected_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-hdpi/tab_unselected_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-hdpi/tab_unselected_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/ab_bottom_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/ab_bottom_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/ab_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/ab_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/ab_stacked_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/ab_stacked_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/ab_texture_tile_easyrambooster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/ab_texture_tile_easyrambooster.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/ab_transparent_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/ab_transparent_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/cab_background_top_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/cab_background_top_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/list_focused_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/list_focused_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/list_pressed_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/list_pressed_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/progress_bg_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/progress_bg_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/progress_primary_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/progress_primary_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/progress_secondary_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/progress_secondary_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/spinner_ab_default_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/spinner_ab_default_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/spinner_ab_focused_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/spinner_ab_focused_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/spinner_ab_pressed_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/spinner_ab_pressed_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/tab_selected_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/tab_selected_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-mdpi/tab_unselected_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-mdpi/tab_unselected_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/ab_bottom_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/ab_bottom_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/ab_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/ab_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/ab_stacked_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/ab_stacked_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/ab_texture_tile_easyrambooster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/ab_texture_tile_easyrambooster.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/ab_transparent_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/ab_transparent_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/antivirus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/antivirus.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/list_focused_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/list_focused_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/list_pressed_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/list_pressed_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/progress_bg_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/progress_bg_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/progress_primary_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/progress_primary_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/tab_selected_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/tab_selected_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xhdpi/tab_unselected_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xhdpi/tab_unselected_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/ab_bottom_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/ab_bottom_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/ab_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/ab_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/ab_stacked_solid_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/ab_stacked_solid_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/ab_texture_tile_easyrambooster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/ab_texture_tile_easyrambooster.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/ab_transparent_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/ab_transparent_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/list_focused_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/list_focused_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/list_pressed_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/list_pressed_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/progress_bg_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/progress_bg_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/progress_primary_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/progress_primary_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/tab_selected_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/tab_selected_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable-xxhdpi/tab_unselected_easyrambooster.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable-xxhdpi/tab_unselected_easyrambooster.9.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/ab_background_textured_easyrambooster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/ab_background_textured_easyrambooster.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/adware_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/adware_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/btn_cab_done_easyrambooster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/btn_cab_done_easyrambooster.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/button_boost_hvr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/button_boost_hvr.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/button_boost_norm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/button_boost_norm.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/button_boost_sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/button_boost_sel.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/calibrate_button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/calibrate_button_selector.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/camera_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/camera_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/cancel.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/card_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/card_background.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/decline_eula_button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/decline_eula_button_selector.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/dialog_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/dialog_bg.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/dialog_titlebg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/dialog_titlebg.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/fine_location_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/fine_location_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/gear.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/history_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/history_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/iconsplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/iconsplash.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/information.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/killbtn_hv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/killbtn_hv.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/killbtn_norm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/killbtn_norm.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/killbtn_sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/killbtn_sel.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/ok_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/ok_100.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/phone_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/phone_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/privacy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/privacy_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/progress_horizontal_easyrambooster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/progress_horizontal_easyrambooster.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/read_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/read_sms.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/record_audio_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/record_audio_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/resolve_button_medium_risk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/resolve_button_medium_risk.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/resolve_button_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/resolve_button_selector.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/search_btn_sel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/search_btn_sel.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/search_btnhv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/search_btnhv.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/selectable_background_easyrambooster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/selectable_background_easyrambooster.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/send_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/send_sms.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/serach_btnorm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/serach_btnorm.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/shield_high_risk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/shield_high_risk_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/shield_medium_risk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/shield_medium_risk_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/shield_protected_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/shield_protected_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/spinner_background_ab_easyrambooster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/spinner_background_ab_easyrambooster.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/tab_indicator_ab_easyrambooster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/tab_indicator_ab_easyrambooster.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/drawable/usb_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/drawable/usb_icon.png -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/anti_activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/anti_activity_main.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/app_info_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/app_info_fragment.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/boost_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/boost_dialog.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/boost_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/boost_layout.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/config_adapter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/config_adapter.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/eula.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/eula.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/ignored_list_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/ignored_list_fragment.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/ignored_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/ignored_list_item.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/main_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/main_fragment.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/memory_info_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/memory_info_layout.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/process_list_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/process_list_layout.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/results_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/results_fragment.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/results_list_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/results_list_header.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/results_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/results_list_item.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/splash.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/task_list_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/task_list_layout.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/taskclean_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/taskclean_dialog.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/layout/warning_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/layout/warning_item.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/menu/menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/menu/menu_layout.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values-large/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values-large/dimens.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values-v14/styles_easyrambooster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values-v14/styles_easyrambooster.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values-xlarge/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values-xlarge/dimens.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /memoryBooster/src/main/res/values/styles_easyrambooster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/memoryBooster/src/main/res/values/styles_easyrambooster.xml -------------------------------------------------------------------------------- /progressWheel/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build.gradle -------------------------------------------------------------------------------- /progressWheel/build/intermediates/blame/res/androidTest/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/blame/res/androidTest/debug/multi/values.json -------------------------------------------------------------------------------- /progressWheel/build/intermediates/blame/res/androidTest/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/blame/res/androidTest/debug/single/layout.json -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/debug/R.txt -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/debug/res/drawable-hdpi-v4/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/debug/res/drawable-hdpi-v4/header.png -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/debug/res/drawable-hdpi-v4/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/debug/res/drawable-hdpi-v4/icon.png -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/debug/res/drawable-hdpi-v4/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/debug/res/drawable-hdpi-v4/logo.png -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/debug/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/debug/res/layout/main.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/debug/res/layout/progress_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/debug/res/layout/progress_spinner.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/debug/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/debug/res/values/values.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/release/AndroidManifest.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/release/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/release/R.txt -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/release/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/release/classes.jar -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/release/res/drawable-hdpi-v4/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/release/res/drawable-hdpi-v4/icon.png -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/release/res/drawable-hdpi-v4/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/release/res/drawable-hdpi-v4/logo.png -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/release/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/release/res/layout/main.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/bundles/release/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/bundles/release/res/values/values.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental-safeguard/release/tag.txt: -------------------------------------------------------------------------------- 1 | incremental task execution -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental/compileReleaseAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/incremental/mergeDebugAssets/merger.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/incremental/mergeDebugShaders/merger.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental/mergeReleaseAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/incremental/mergeReleaseAssets/merger.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental/mergeReleaseShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/incremental/mergeReleaseShaders/merger.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental/packageDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/incremental/packageDebugResources/merger.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/incremental/packageReleaseResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/incremental/packageReleaseResources/merger.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/manifests/aapt/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/manifests/aapt/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/manifests/aapt/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/manifests/aapt/release/AndroidManifest.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/res/merged/androidTest/debug/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/res/merged/androidTest/debug/layout/main.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/res/merged/androidTest/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/res/merged/androidTest/debug/values/values.xml -------------------------------------------------------------------------------- /progressWheel/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /progressWheel/build/intermediates/symbols/androidTest/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/intermediates/symbols/androidTest/debug/R.txt -------------------------------------------------------------------------------- /progressWheel/build/outputs/aar/progressWheel-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/outputs/aar/progressWheel-debug.aar -------------------------------------------------------------------------------- /progressWheel/build/outputs/aar/progressWheel-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/build/outputs/aar/progressWheel-release.aar -------------------------------------------------------------------------------- /progressWheel/progressWheel.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/progressWheel.iml -------------------------------------------------------------------------------- /progressWheel/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /progressWheel/src/main/java/com/todddavies/components/progressbar/main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/java/com/todddavies/components/progressbar/main.java -------------------------------------------------------------------------------- /progressWheel/src/main/res/drawable-hdpi/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/drawable-hdpi/header.png -------------------------------------------------------------------------------- /progressWheel/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /progressWheel/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /progressWheel/src/main/res/drawable-hdpi/login_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/drawable-hdpi/login_gradient.png -------------------------------------------------------------------------------- /progressWheel/src/main/res/drawable-hdpi/login_gradient_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/drawable-hdpi/login_gradient_flip.png -------------------------------------------------------------------------------- /progressWheel/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /progressWheel/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /progressWheel/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /progressWheel/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /progressWheel/src/main/res/layout/progress_spinner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/layout/progress_spinner.xml -------------------------------------------------------------------------------- /progressWheel/src/main/res/layout/progress_wheel_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/layout/progress_wheel_activity.xml -------------------------------------------------------------------------------- /progressWheel/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /progressWheel/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/progressWheel/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharjeelhaider/MemoryBooster-Android/HEAD/settings.gradle --------------------------------------------------------------------------------