├── .gradle └── 2.2.1 │ └── taskArtifacts │ ├── cache.properties │ ├── cache.properties.lock │ ├── fileHashes.bin │ ├── fileSnapshots.bin │ ├── outputFileStates.bin │ └── taskArtifacts.bin ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── libraries │ └── android_support_v4.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── AUTHORS ├── LICENSE ├── README.md ├── app ├── app.iml ├── build.gradle ├── build │ ├── intermediates │ │ ├── assets │ │ │ ├── debug │ │ │ │ ├── app_func_theme.xml │ │ │ │ ├── desk.xml │ │ │ │ └── themecfg.xml │ │ │ └── release │ │ │ │ ├── app_func_theme.xml │ │ │ │ ├── desk.xml │ │ │ │ └── themecfg.xml │ │ ├── classes │ │ │ ├── debug │ │ │ │ └── areeb │ │ │ │ │ └── scratch │ │ │ │ │ └── iconpack │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── Icons$IconsAdapter.class │ │ │ │ │ ├── Icons.class │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ ├── R$array.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$menu.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$xml.class │ │ │ │ │ └── R.class │ │ │ └── release │ │ │ │ └── areeb │ │ │ │ └── scratch │ │ │ │ └── iconpack │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── MainActivity$IconsAdapter.class │ │ │ │ ├── MainActivity.class │ │ │ │ ├── R$array.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$menu.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$xml.class │ │ │ │ └── R.class │ │ ├── dex │ │ │ ├── debug │ │ │ │ └── classes.dex │ │ │ └── release │ │ │ │ └── classes.dex │ │ ├── incremental │ │ │ ├── aidl │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ ├── debug │ │ │ │ │ └── dependency.store │ │ │ │ └── release │ │ │ │ │ └── dependency.store │ │ │ ├── mergeAssets │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ ├── debug │ │ │ │ │ └── merger.xml │ │ │ │ └── release │ │ │ │ │ └── merger.xml │ │ │ └── mergeResources │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ │ ├── debug │ │ │ │ └── merger.xml │ │ │ │ └── release │ │ │ │ └── merger.xml │ │ ├── manifests │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ └── full │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── release │ │ │ │ └── AndroidManifest.xml │ │ ├── res │ │ │ ├── debug │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── allapp.png │ │ │ │ │ ├── allapp_current_focuse.png │ │ │ │ │ ├── allapp_selected.png │ │ │ │ │ ├── appfunc_folder_close_up.png │ │ │ │ │ ├── appfunc_folderback.png │ │ │ │ │ ├── appfunc_home_clear.png │ │ │ │ │ ├── appfunc_home_clear_light.png │ │ │ │ │ ├── appfunc_home_menu.png │ │ │ │ │ ├── appfunc_home_menu_light.png │ │ │ │ │ ├── appfunc_home_runing_clear.png │ │ │ │ │ ├── appfunc_home_runing_clear_ligh.png │ │ │ │ │ ├── appfunc_home_runing_lock_list.png │ │ │ │ │ ├── appfunc_home_runing_lock_list_light.png │ │ │ │ │ ├── appfunc_home_search.png │ │ │ │ │ ├── appfunc_home_search_light.png │ │ │ │ │ ├── appfunc_memory_bg.9.png │ │ │ │ │ ├── appfunc_memory_high.9.png │ │ │ │ │ ├── appfunc_memory_low.9.png │ │ │ │ │ ├── appfunc_memory_middle.9.png │ │ │ │ │ ├── appfunc_menu_bg_h.9.png │ │ │ │ │ ├── appfunc_menu_bg_v.9.png │ │ │ │ │ ├── appfunc_menu_item_selector.9.png │ │ │ │ │ ├── appfunc_menu_line.9.png │ │ │ │ │ ├── appfunc_recent_nodata_bg.png │ │ │ │ │ ├── appfunc_rename.9.png │ │ │ │ │ ├── appfunchome.png │ │ │ │ │ ├── appfunchome_selected.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── backpress.png │ │ │ │ │ ├── dock.png │ │ │ │ │ ├── exit.png │ │ │ │ │ ├── exitpress.png │ │ │ │ │ ├── feature.png │ │ │ │ │ ├── folderopenback.9.png │ │ │ │ │ ├── funbg.png │ │ │ │ │ ├── history.png │ │ │ │ │ ├── history_current_focuse.png │ │ │ │ │ ├── history_selected.png │ │ │ │ │ ├── hmetro.9.png │ │ │ │ │ ├── hmetrof.9.png │ │ │ │ │ ├── hmetrov.9.png │ │ │ │ │ ├── menu_more_overflow.png │ │ │ │ │ ├── menu_selected.9.png │ │ │ │ │ ├── menuitem_add.png │ │ │ │ │ ├── menuitem_appcenter.png │ │ │ │ │ ├── menuitem_desklock.png │ │ │ │ │ ├── menuitem_deskunlock.png │ │ │ │ │ ├── menuitem_effect.png │ │ │ │ │ ├── menuitem_fb.png │ │ │ │ │ ├── menuitem_gobackup.png │ │ │ │ │ ├── menuitem_golocker.png │ │ │ │ │ ├── menuitem_gostore.png │ │ │ │ │ ├── menuitem_gowidget.png │ │ │ │ │ ├── menuitem_grade.png │ │ │ │ │ ├── menuitem_hideapp.png │ │ │ │ │ ├── menuitem_language.png │ │ │ │ │ ├── menuitem_message.png │ │ │ │ │ ├── menuitem_newfolder.png │ │ │ │ │ ├── menuitem_notification.png │ │ │ │ │ ├── menuitem_notificationbar.png │ │ │ │ │ ├── menuitem_preference.png │ │ │ │ │ ├── menuitem_restart.png │ │ │ │ │ ├── menuitem_screenedit.png │ │ │ │ │ ├── menuitem_share.png │ │ │ │ │ ├── menuitem_sort.png │ │ │ │ │ ├── menuitem_syssetting.png │ │ │ │ │ ├── menuitem_theme.png │ │ │ │ │ ├── menuitem_update.png │ │ │ │ │ ├── menuitem_wallpaper.png │ │ │ │ │ ├── preview1.jpg │ │ │ │ │ ├── preview2.jpg │ │ │ │ │ ├── run.png │ │ │ │ │ ├── run_current_focuse.png │ │ │ │ │ ├── run_selected.png │ │ │ │ │ ├── screennow.png │ │ │ │ │ ├── screenother.png │ │ │ │ │ ├── vmetro.9.png │ │ │ │ │ ├── vmetrof.9.png │ │ │ │ │ └── vmetrov.9.png │ │ │ │ ├── drawable-nodpi │ │ │ │ │ ├── com_android_browser_browseractivity.png │ │ │ │ │ └── iconback.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable │ │ │ │ │ ├── grid_selector.xml │ │ │ │ │ └── square_over.xml │ │ │ │ ├── layout │ │ │ │ │ └── icon_picker.xml │ │ │ │ ├── menu │ │ │ │ │ └── icons.xml │ │ │ │ ├── values-sw720dp-land │ │ │ │ │ └── values-sw720dp-land.xml │ │ │ │ ├── values │ │ │ │ │ └── values.xml │ │ │ │ └── xml │ │ │ │ │ ├── appfilter.xml │ │ │ │ │ └── drawable.xml │ │ │ └── release │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── allapp.png │ │ │ │ ├── allapp_current_focuse.png │ │ │ │ ├── allapp_selected.png │ │ │ │ ├── appfunc_folder_close_up.png │ │ │ │ ├── appfunc_folderback.png │ │ │ │ ├── appfunc_home_clear.png │ │ │ │ ├── appfunc_home_clear_light.png │ │ │ │ ├── appfunc_home_menu.png │ │ │ │ ├── appfunc_home_menu_light.png │ │ │ │ ├── appfunc_home_runing_clear.png │ │ │ │ ├── appfunc_home_runing_clear_ligh.png │ │ │ │ ├── appfunc_home_runing_lock_list.png │ │ │ │ ├── appfunc_home_runing_lock_list_light.png │ │ │ │ ├── appfunc_home_search.png │ │ │ │ ├── appfunc_home_search_light.png │ │ │ │ ├── appfunc_memory_bg.9.png │ │ │ │ ├── appfunc_memory_high.9.png │ │ │ │ ├── appfunc_memory_low.9.png │ │ │ │ ├── appfunc_memory_middle.9.png │ │ │ │ ├── appfunc_menu_bg_h.9.png │ │ │ │ ├── appfunc_menu_bg_v.9.png │ │ │ │ ├── appfunc_menu_item_selector.9.png │ │ │ │ ├── appfunc_menu_line.9.png │ │ │ │ ├── appfunc_recent_nodata_bg.png │ │ │ │ ├── appfunc_rename.9.png │ │ │ │ ├── appfunchome.png │ │ │ │ ├── appfunchome_selected.png │ │ │ │ ├── back.png │ │ │ │ ├── backpress.png │ │ │ │ ├── dock.png │ │ │ │ ├── exit.png │ │ │ │ ├── exitpress.png │ │ │ │ ├── feature.png │ │ │ │ ├── folderopenback.9.png │ │ │ │ ├── funbg.png │ │ │ │ ├── history.png │ │ │ │ ├── history_current_focuse.png │ │ │ │ ├── history_selected.png │ │ │ │ ├── hmetro.9.png │ │ │ │ ├── hmetrof.9.png │ │ │ │ ├── hmetrov.9.png │ │ │ │ ├── menu_more_overflow.png │ │ │ │ ├── menu_selected.9.png │ │ │ │ ├── menuitem_add.png │ │ │ │ ├── menuitem_appcenter.png │ │ │ │ ├── menuitem_desklock.png │ │ │ │ ├── menuitem_deskunlock.png │ │ │ │ ├── menuitem_effect.png │ │ │ │ ├── menuitem_fb.png │ │ │ │ ├── menuitem_gobackup.png │ │ │ │ ├── menuitem_golocker.png │ │ │ │ ├── menuitem_gostore.png │ │ │ │ ├── menuitem_gowidget.png │ │ │ │ ├── menuitem_grade.png │ │ │ │ ├── menuitem_hideapp.png │ │ │ │ ├── menuitem_language.png │ │ │ │ ├── menuitem_message.png │ │ │ │ ├── menuitem_newfolder.png │ │ │ │ ├── menuitem_notification.png │ │ │ │ ├── menuitem_notificationbar.png │ │ │ │ ├── menuitem_preference.png │ │ │ │ ├── menuitem_restart.png │ │ │ │ ├── menuitem_screenedit.png │ │ │ │ ├── menuitem_share.png │ │ │ │ ├── menuitem_sort.png │ │ │ │ ├── menuitem_syssetting.png │ │ │ │ ├── menuitem_theme.png │ │ │ │ ├── menuitem_update.png │ │ │ │ ├── menuitem_wallpaper.png │ │ │ │ ├── preview1.jpg │ │ │ │ ├── preview2.jpg │ │ │ │ ├── run.png │ │ │ │ ├── run_current_focuse.png │ │ │ │ ├── run_selected.png │ │ │ │ ├── screennow.png │ │ │ │ ├── screenother.png │ │ │ │ ├── vmetro.9.png │ │ │ │ ├── vmetrof.9.png │ │ │ │ └── vmetrov.9.png │ │ │ │ ├── drawable-nodpi │ │ │ │ ├── com_android_browser_browseractivity.png │ │ │ │ └── iconback.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── com_android_browser.png │ │ │ │ ├── com_android_gallery3d.png │ │ │ │ ├── com_android_music.png │ │ │ │ └── icon.png │ │ │ │ ├── drawable │ │ │ │ ├── grid_selector.xml │ │ │ │ └── square_over.xml │ │ │ │ ├── layout │ │ │ │ └── icon_picker.xml │ │ │ │ ├── menu │ │ │ │ └── icons.xml │ │ │ │ ├── values-sw720dp-land │ │ │ │ └── values-sw720dp-land.xml │ │ │ │ ├── values │ │ │ │ └── values.xml │ │ │ │ └── xml │ │ │ │ ├── appfilter.xml │ │ │ │ └── drawable.xml │ │ └── resources │ │ │ ├── resources-debug-androidTest.ap_ │ │ │ ├── resources-debug.ap_ │ │ │ └── resources-release.ap_ │ └── outputs │ │ ├── apk │ │ ├── app-debug-unaligned.apk │ │ ├── app-debug.apk │ │ └── app-release-unaligned.apk │ │ ├── lint-results-release-fatal.html │ │ ├── lint-results-release-fatal.xml │ │ ├── lint-results-release-fatal_files │ │ ├── hololike.css │ │ ├── lint-error.png │ │ ├── lint-run.png │ │ └── lint-warning.png │ │ └── logs │ │ ├── manifest-merger-debug-report.txt │ │ └── manifest-merger-release-report.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── app_func_theme.xml │ ├── desk.xml │ └── themecfg.xml │ └── res │ ├── drawable-hdpi │ ├── allapp.png │ ├── allapp_current_focuse.png │ ├── allapp_selected.png │ ├── appfunc_folder_close_up.png │ ├── appfunc_folderback.png │ ├── appfunc_home_clear.png │ ├── appfunc_home_clear_light.png │ ├── appfunc_home_menu.png │ ├── appfunc_home_menu_light.png │ ├── appfunc_home_runing_clear.png │ ├── appfunc_home_runing_clear_ligh.png │ ├── appfunc_home_runing_lock_list.png │ ├── appfunc_home_runing_lock_list_light.png │ ├── appfunc_home_search.png │ ├── appfunc_home_search_light.png │ ├── appfunc_memory_bg.9.png │ ├── appfunc_memory_high.9.png │ ├── appfunc_memory_low.9.png │ ├── appfunc_memory_middle.9.png │ ├── appfunc_menu_bg_h.9.png │ ├── appfunc_menu_bg_v.9.png │ ├── appfunc_menu_item_selector.9.png │ ├── appfunc_menu_line.9.png │ ├── appfunc_recent_nodata_bg.png │ ├── appfunc_rename.9.png │ ├── appfunchome.png │ ├── appfunchome_selected.png │ ├── back.png │ ├── backpress.png │ ├── dock.png │ ├── exit.png │ ├── exitpress.png │ ├── feature.png │ ├── folderopenback.9.png │ ├── funbg.png │ ├── history.png │ ├── history_current_focuse.png │ ├── history_selected.png │ ├── hmetro.9.png │ ├── hmetrof.9.png │ ├── hmetrov.9.png │ ├── menu_more_overflow.png │ ├── menu_selected.9.png │ ├── menuitem_add.png │ ├── menuitem_appcenter.png │ ├── menuitem_desklock.png │ ├── menuitem_deskunlock.png │ ├── menuitem_effect.png │ ├── menuitem_fb.png │ ├── menuitem_gobackup.png │ ├── menuitem_golocker.png │ ├── menuitem_gostore.png │ ├── menuitem_gowidget.png │ ├── menuitem_grade.png │ ├── menuitem_hideapp.png │ ├── menuitem_language.png │ ├── menuitem_message.png │ ├── menuitem_newfolder.png │ ├── menuitem_notification.png │ ├── menuitem_notificationbar.png │ ├── menuitem_preference.png │ ├── menuitem_restart.png │ ├── menuitem_screenedit.png │ ├── menuitem_share.png │ ├── menuitem_sort.png │ ├── menuitem_syssetting.png │ ├── menuitem_theme.png │ ├── menuitem_update.png │ ├── menuitem_wallpaper.png │ ├── preview1.jpg │ ├── preview2.jpg │ ├── run.png │ ├── run_current_focuse.png │ ├── run_selected.png │ ├── screennow.png │ ├── screenother.png │ ├── vmetro.9.png │ ├── vmetrof.9.png │ └── vmetrov.9.png │ ├── drawable-nodpi │ ├── com_android_browser_browseractivity.png │ └── iconback.png │ ├── drawable-xhdpi │ ├── au_com_shiftyjelly_pocketcasts.png │ ├── battery.png │ ├── bottom.png │ ├── clock_widget.png │ ├── com_adobe_reader.png │ ├── com_aimp_player.png │ ├── com_alensw_picfolder.png │ ├── com_alephzain_framaroot.png │ ├── com_alexjlockwood_twentyfortyeight.png │ ├── com_alibaba_aliexpresshd.png │ ├── com_anddoes_launcher.png │ ├── com_android_alarm.png │ ├── com_android_bluetooth.png │ ├── com_android_browser.png │ ├── com_android_calculator2.png │ ├── com_android_calendar.png │ ├── com_android_camera.png │ ├── com_android_contacts.png │ ├── com_android_deskclock.png │ ├── com_android_dialer.png │ ├── com_android_email.png │ ├── com_android_equalizer.png │ ├── com_android_gallery3d.png │ ├── com_android_mms.png │ ├── com_android_mplayer.png │ ├── com_android_music.png │ ├── com_android_providers_downloads_ui.png │ ├── com_android_quicksearchbox.png │ ├── com_android_radio.png │ ├── com_android_secundomer.png │ ├── com_android_settings.png │ ├── com_android_settings_wifi.png │ ├── com_android_soundrecorder.png │ ├── com_android_vending.png │ ├── com_android_videoeditor.png │ ├── com_android_voicedialer.png │ ├── com_android_world_clock.png │ ├── com_artifex_mupdfdemo.png │ ├── com_avito_android.png │ ├── com_bambuna_podcastaddict.png │ ├── com_cleanmaster_mguard.png │ ├── com_delphicoder_flud.png │ ├── com_desmos_calculator.png │ ├── com_devexpert_weather.png │ ├── com_doubleiq_podcast.png │ ├── com_dropbox_android.png │ ├── com_duolingo.png │ ├── com_dv_adm.png │ ├── com_endomondo_android.png │ ├── com_facebook_katana.png │ ├── com_facebook_orca.png │ ├── com_flyersoft_moonreader.png │ ├── com_flyingottersoftware_mega.png │ ├── com_foobnix_pdf_reader.png │ ├── com_ghisler_android_totalcommander.png │ ├── com_google_android_apps_books.png │ ├── com_google_android_apps_chrome.png │ ├── com_google_android_apps_chromecast_app.png │ ├── com_google_android_apps_docs.png │ ├── com_google_android_apps_docs_editors_sheets.png │ ├── com_google_android_apps_docs_editors_slides.png │ ├── com_google_android_apps_fitness.png │ ├── com_google_android_apps_genie_geniewidget.png │ ├── com_google_android_apps_inbox.png │ ├── com_google_android_apps_magazines.png │ ├── com_google_android_apps_plus.png │ ├── com_google_android_apps_translate.png │ ├── com_google_android_docs_editors_docs.png │ ├── com_google_android_gm.png │ ├── com_google_android_gms.png │ ├── com_google_android_googlequicksearchbox.png │ ├── com_google_android_keep.png │ ├── com_google_android_maps.png │ ├── com_google_android_music.png │ ├── com_google_android_play_games.png │ ├── com_google_android_talk.png │ ├── com_google_android_videos.png │ ├── com_google_android_youtube.png │ ├── com_google_earth.png │ ├── com_idamob_tinkoff_android.png │ ├── com_ideashower_readitlater_pro.png │ ├── com_indeed_android_jobsearch.png │ ├── com_instagram_android.png │ ├── com_its_rto.png │ ├── com_keramidas_titaniumbackup.png │ ├── com_kmplayer.png │ ├── com_lenovo_anyshare_gps.png │ ├── com_maxmpz_audioplayer.png │ ├── com_microsoft_office_outlook.png │ ├── com_mixradio_droid.png │ ├── com_mobilityflow_torrent.png │ ├── com_motorola_bodyguard.png │ ├── com_motorola_contextual_smartrules2.png │ ├── com_motorola_genie.png │ ├── com_motorola_migrate.png │ ├── com_ms_screencastfree.png │ ├── com_mv2studio_amarok_kontrol_free.png │ ├── com_mxtech_videoplayer_ad.png │ ├── com_neogb_rtac.png │ ├── com_oasisfeng_greenify.png │ ├── com_opera_browser.png │ ├── com_opera_browser_beta.png │ ├── com_opera_max_global.png │ ├── com_paragon_mts_ma_android.png │ ├── com_piksoft_turboscan.png │ ├── com_piriform_ccleaner.png │ ├── com_pushbullet_android.png │ ├── com_rarlab_rar.png │ ├── com_scee_psxandroid.png │ ├── com_skype_android_raider.png │ ├── com_softwarebakery_drivedroid.png │ ├── com_soundcloud_android.png │ ├── com_stackexchange_marvin.png │ ├── com_syntellia_fleksy_keyboard.png │ ├── com_teslacoilsw_launcher.png │ ├── com_trablone_geekhabr.png │ ├── com_ttxapps_dropsync.png │ ├── com_twitter_android.png │ ├── com_ucmobile_intl.png │ ├── com_uzumapps_wakelockdetector.png │ ├── com_venticake_retrica.png │ ├── com_viber_voip.png │ ├── com_vkontakte_android.png │ ├── com_vortexwolf_chan.png │ ├── com_vsco_cam.png │ ├── com_webmoney_my.png │ ├── com_whatsapp.png │ ├── com_yandex_browser.png │ ├── de_qspool_clementineremote.png │ ├── de_szalkowski_activitylauncher.png │ ├── elementary_logo.png │ ├── elementary_logo_white.png │ ├── elementary_logo_white_shadow.png │ ├── f_droid.png │ ├── file_explorer.png │ ├── fonarik.png │ ├── fr_kwiatkowski_apktrack.png │ ├── fr_outadev_lastfm_scrobb.png │ ├── google_settings.png │ ├── icon.png │ ├── io_meduza_android.png │ ├── it_msec_dukto.png │ ├── keepass2android_keepass2android.png │ ├── midori.png │ ├── mobi_beyondpod.png │ ├── news_reader.png │ ├── nya_miku_wishmaster_sfw.png │ ├── opera_store.png │ ├── org_adaway.png │ ├── org_cohortor_gstrings.png │ ├── org_deadbeef_android.png │ ├── org_geometerplus_zlibrary_ui_android.png │ ├── org_jamienicol_episodes.png │ ├── org_kde_kdeconnect_tp.png │ ├── org_kman_aquamail.png │ ├── org_mozilla_fennec_fdroid.png │ ├── org_mozilla_firefox.png │ ├── org_mozilla_firefox_beta.png │ ├── org_sufficientlysecure_viewer.png │ ├── org_telegram_messenger.png │ ├── org_transdroid_lite.png │ ├── org_videolan_vlc_betav7neon.png │ ├── org_wikipedia.png │ ├── phone.png │ ├── power.png │ ├── qr_code.png │ ├── rename_me_app_drawer.png │ ├── ru_alfabank_mobile_android.png │ ├── ru_beeline_services.png │ ├── ru_droidlab_smiler.png │ ├── ru_dublgis_dgismobile.png │ ├── ru_ideast_championat.png │ ├── ru_kraynov_app_tjournal.png │ ├── ru_mail_cloud.png │ ├── ru_mail_mailapp.png │ ├── ru_megafon_mlk.png │ ├── ru_mw.png │ ├── ru_ok_android.png │ ├── ru_rosbank_android.png │ ├── ru_sberbankmobile.png │ ├── ru_sports.png │ ├── ru_superjob_client_android.png │ ├── ru_yandex_disk.png │ ├── ru_yandex_mail.png │ ├── ru_yandex_market.png │ ├── ru_yandex_money.png │ ├── ru_yandex_weatherplugin.png │ ├── ru_yandex_yandexmaps.png │ ├── sim.png │ ├── super_su.png │ ├── terminal.png │ ├── themes.png │ ├── tunein_player.png │ ├── twitter.png │ ├── ua_privatbank_ap24.png │ ├── ua_slando.png │ ├── update.png │ └── yandex_store.png │ ├── drawable │ ├── grid_selector.xml │ └── square_over.xml │ ├── layout │ └── icon_picker.xml │ ├── menu │ └── icons.xml │ ├── values-sw600dp │ └── dimens.xml │ ├── values-sw720dp-land │ └── dimens.xml │ ├── values │ ├── bools.xml │ ├── dimens.xml │ ├── iconpack.xml │ └── strings.xml │ └── xml │ ├── appfilter.xml │ └── drawable.xml ├── build.gradle ├── build └── intermediates │ ├── dex-cache │ └── cache.xml │ └── gradle_project_sync_data.bin ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icon-source ├── au_com_shiftyjelly_pocketcasts.svg ├── battery.svg ├── bottom.svg ├── clock_widget.svg ├── com_adobe_reader.svg ├── com_aimp_player.svg ├── com_alensw_picfolder.svg ├── com_alephzain_framaroot.svg ├── com_alexjlockwood_twentyfortyeight.svg ├── com_alibaba_aliexpresshd.svg ├── com_anddoes_launcher.svg ├── com_android_alarm.svg ├── com_android_bluetooth.svg ├── com_android_browser.svg ├── com_android_calculator2.svg ├── com_android_calendar.svg ├── com_android_camera.svg ├── com_android_contacts.svg ├── com_android_deskclock.svg ├── com_android_dialer.svg ├── com_android_email.svg ├── com_android_equalizer.svg ├── com_android_gallery3d.svg ├── com_android_mms.svg ├── com_android_mplayer.svg ├── com_android_music.svg ├── com_android_providers_downloads_ui.svg ├── com_android_quicksearchbox.svg ├── com_android_radio.svg ├── com_android_secundomer.svg ├── com_android_settings.svg ├── com_android_settings_wifi.svg ├── com_android_soundrecorder.svg ├── com_android_vending.svg ├── com_android_videoeditor.svg ├── com_android_voicedialer.svg ├── com_android_world_clock.svg ├── com_artifex_mupdfdemo.svg ├── com_avito_android.svg ├── com_bambuna_podcastaddict.svg ├── com_cleanmaster_mguard.svg ├── com_delphicoder_flud.svg ├── com_desmos_calculator.svg ├── com_devexpert_weather.svg ├── com_doubleiq_podcast.svg ├── com_dropbox_android.svg ├── com_duolingo.svg ├── com_dv_adm.svg ├── com_endomondo_android.svg ├── com_facebook_katana.svg ├── com_facebook_orca.svg ├── com_flyersoft_moonreader.svg ├── com_flyingottersoftware_mega.svg ├── com_foobnix_pdf_reader.svg ├── com_ghisler_android_totalcommander.svg ├── com_google_android_apps_books.svg ├── com_google_android_apps_chrome.svg ├── com_google_android_apps_chromecast_app.svg ├── com_google_android_apps_docs.svg ├── com_google_android_apps_docs_editors_sheets.svg ├── com_google_android_apps_docs_editors_slides.svg ├── com_google_android_apps_fitness.svg ├── com_google_android_apps_genie_geniewidget.svg ├── com_google_android_apps_inbox.svg ├── com_google_android_apps_magazines.svg ├── com_google_android_apps_plus.svg ├── com_google_android_apps_translate.svg ├── com_google_android_docs_editors_docs.svg ├── com_google_android_gm.svg ├── com_google_android_gms.svg ├── com_google_android_googlequicksearchbox.svg ├── com_google_android_keep.svg ├── com_google_android_maps.svg ├── com_google_android_music.svg ├── com_google_android_play_games.svg ├── com_google_android_talk.svg ├── com_google_android_videos.svg ├── com_google_android_youtube.svg ├── com_google_earth.svg ├── com_idamob_tinkoff_android.svg ├── com_ideashower_readitlater_pro.svg ├── com_indeed_android_jobsearch.svg ├── com_instagram_android.svg ├── com_its_rto.svg ├── com_keramidas_titaniumbackup.svg ├── com_kmplayer.svg ├── com_lenovo_anyshare_gps.svg ├── com_maxmpz_audioplayer.svg ├── com_microsoft_office_outlook.svg ├── com_mixradio_droid.svg ├── com_mobilityflow_torrent.svg ├── com_motorola_bodyguard.svg ├── com_motorola_contextual_smartrules2.svg ├── com_motorola_genie.svg ├── com_motorola_migrate.svg ├── com_ms_screencastfree.svg ├── com_mv2studio_amarok_kontrol_free.svg ├── com_mxtech_videoplayer_ad.svg ├── com_neogb_rtac.svg ├── com_oasisfeng_greenify.svg ├── com_opera_browser.svg ├── com_opera_browser_beta.svg ├── com_opera_max_global.svg ├── com_paragon_mts_ma_android.svg ├── com_piksoft_turboscan.svg ├── com_piriform_ccleaner.svg ├── com_pushbullet_android.svg ├── com_rarlab_rar.svg ├── com_scee_psxandroid.svg ├── com_skype_android_raider.svg ├── com_softwarebakery_drivedroid.svg ├── com_soundcloud_android.svg ├── com_stackexchange_marvin.svg ├── com_syntellia_fleksy_keyboard.svg ├── com_teslacoilsw_launcher.svg ├── com_trablone_geekhabr.svg ├── com_ttxapps_dropsync.svg ├── com_twitter_android.svg ├── com_ucmobile_intl.svg ├── com_uzumapps_wakelockdetector.svg ├── com_venticake_retrica.svg ├── com_viber_voip.svg ├── com_vkontakte_android.svg ├── com_vortexwolf_chan.svg ├── com_vsco_cam.svg ├── com_webmoney_my.svg ├── com_whatsapp.svg ├── com_yandex_browser.svg ├── de_qspool_clementineremote.svg ├── de_szalkowski_activitylauncher.svg ├── elementary_logo.svg ├── elementary_logo_white.svg ├── elementary_logo_white_shadow.svg ├── f_droid.svg ├── file_explorer.svg ├── fonarik.svg ├── fr_kwiatkowski_apktrack.svg ├── fr_outadev_lastfm_scrobb.svg ├── google_settings.svg ├── icon.svg ├── io_meduza_android.svg ├── it_msec_dukto.svg ├── keepass2android_keepass2android.svg ├── midori.svg ├── mobi_beyondpod.svg ├── news_reader.svg ├── nya_miku_wishmaster_sfw.svg ├── opera_store.svg ├── org_adaway.svg ├── org_cohortor_gstrings.svg ├── org_deadbeef_android.svg ├── org_geometerplus_zlibrary_ui_android.svg ├── org_jamienicol_episodes.svg ├── org_kde_kdeconnect_tp.svg ├── org_kman_aquamail.svg ├── org_mozilla_fennec_fdroid.svg ├── org_mozilla_firefox.svg ├── org_mozilla_firefox_beta.svg ├── org_sufficientlysecure_viewer.svg ├── org_telegram_messenger.svg ├── org_transdroid_lite.svg ├── org_videolan_vlc_betav7neon.svg ├── org_wikipedia.svg ├── phone.svg ├── power.svg ├── qr_code.svg ├── rename_me_app_drawer.svg ├── ru_alfabank_mobile_android.svg ├── ru_beeline_services.svg ├── ru_droidlab_smiler.svg ├── ru_dublgis_dgismobile.svg ├── ru_ideast_championat.svg ├── ru_kraynov_app_tjournal.svg ├── ru_mail_cloud.svg ├── ru_mail_mailapp.svg ├── ru_megafon_mlk.svg ├── ru_mw.svg ├── ru_ok_android.svg ├── ru_rosbank_android.svg ├── ru_sberbankmobile.svg ├── ru_sports.svg ├── ru_superjob_client_android.svg ├── ru_yandex_disk.svg ├── ru_yandex_mail.svg ├── ru_yandex_market.svg ├── ru_yandex_money.svg ├── ru_yandex_weatherplugin.svg ├── ru_yandex_yandexmaps.svg ├── sim.svg ├── super_su.svg ├── terminal.svg ├── themes.svg ├── tunein_player.svg ├── twitter.svg ├── ua_privatbank_ap24.svg ├── ua_slando.svg ├── update.svg └── yandex_store.svg ├── import-summary.txt ├── local.properties ├── settings.gradle ├── theia-icon-theme.iml └── wuzzapcom.jks /.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Jul 10 00:54:40 MSK 2015 2 | -------------------------------------------------------------------------------- /.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/.gradle/2.2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | theia-icon-theme -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /.idea/libraries/android_support_v4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 22 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | # Developers 2 | Yuly Nesterov (crow) 3 | Alexey Varfolomeev (varlesh) 4 | Maxim Taranov (PNG) 5 | Vladimir Lapatin (wuzzapcom) 6 | 7 | # Sources Android icon theme 8 | https://github.com/varlesh/theia-icon-theme 9 | 10 | # Sources elementary icon theme 11 | https://launchpad.net/elementaryicons 12 | https://github.com/varlesh/elementary-add 13 | https://github.com/mank319/elementaryPlus 14 | 15 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 17 5 | buildToolsVersion "22.0.1" 6 | 7 | defaultConfig { 8 | applicationId "com.elementarytoday.theia" 9 | targetSdkVersion 19 10 | } 11 | 12 | buildTypes { 13 | release { 14 | minifyEnabled false 15 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 16 | } 17 | } 18 | } 19 | 20 | dependencies { 21 | compile 'com.android.support:support-v4:22.0.1' 22 | } 23 | -------------------------------------------------------------------------------- /app/build/intermediates/assets/debug/themecfg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | Sample Icon Pack 5 | This is your theme information 6 | 7 | -------------------------------------------------------------------------------- /app/build/intermediates/assets/release/themecfg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | Sample Icon Pack 5 | This is your theme information 6 | 7 | -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/BuildConfig.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/Icons$IconsAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/Icons$IconsAdapter.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/Icons.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/Icons.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/MainActivity.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$array.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$attr.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$bool.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$dimen.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$drawable.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$id.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$layout.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$menu.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$string.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R$xml.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/areeb/scratch/iconpack/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/debug/areeb/scratch/iconpack/R.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/BuildConfig.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/MainActivity$IconsAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/MainActivity$IconsAdapter.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/MainActivity.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$array.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$attr.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$bool.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$dimen.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$drawable.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$id.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$layout.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$menu.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$string.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R$xml.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/release/areeb/scratch/iconpack/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/classes/release/areeb/scratch/iconpack/R.class -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/dex/debug/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/dex/release/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/dex/release/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/incremental/aidl/androidTest/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/intermediates/incremental/aidl/release/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeAssets/release/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeResources/androidTest/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /app/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /app/build/intermediates/manifests/full/release/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/allapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/allapp.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/allapp_current_focuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/allapp_current_focuse.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/allapp_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/allapp_selected.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_folder_close_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_folder_close_up.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_folderback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_folderback.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_clear.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_clear_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_clear_light.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_menu.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_menu_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_menu_light.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_runing_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_runing_clear.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_runing_clear_ligh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_runing_clear_ligh.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_runing_lock_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_runing_lock_list.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_runing_lock_list_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_runing_lock_list_light.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_search.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_home_search_light.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_memory_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_memory_bg.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_memory_high.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_memory_high.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_memory_low.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_memory_low.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_memory_middle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_memory_middle.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_menu_bg_h.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_menu_bg_h.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_menu_bg_v.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_menu_bg_v.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_menu_item_selector.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_menu_item_selector.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_menu_line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_menu_line.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_recent_nodata_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_recent_nodata_bg.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunc_rename.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunc_rename.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunchome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunchome.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/appfunchome_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/appfunchome_selected.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/back.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/backpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/backpress.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/dock.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/exit.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/exitpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/exitpress.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/feature.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/folderopenback.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/folderopenback.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/funbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/funbg.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/history.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/history_current_focuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/history_current_focuse.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/history_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/history_selected.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/hmetro.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/hmetro.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/hmetrof.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/hmetrof.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/hmetrov.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/hmetrov.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menu_more_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menu_more_overflow.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menu_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menu_selected.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_add.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_appcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_appcenter.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_desklock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_desklock.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_deskunlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_deskunlock.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_effect.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_fb.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_gobackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_gobackup.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_golocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_golocker.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_gostore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_gostore.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_gowidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_gowidget.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_grade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_grade.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_hideapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_hideapp.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_language.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_message.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_newfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_newfolder.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_notification.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_notificationbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_notificationbar.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_preference.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_restart.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_screenedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_screenedit.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_share.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_sort.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_syssetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_syssetting.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_theme.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_update.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/menuitem_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/menuitem_wallpaper.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/preview1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/preview1.jpg -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/preview2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/preview2.jpg -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/run.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/run_current_focuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/run_current_focuse.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/run_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/run_selected.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/screennow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/screennow.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/screenother.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/screenother.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/vmetro.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/vmetro.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/vmetrof.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/vmetrof.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-hdpi/vmetrov.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-hdpi/vmetrov.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-nodpi/com_android_browser_browseractivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-nodpi/com_android_browser_browseractivity.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-nodpi/iconback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-nodpi/iconback.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/debug/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable/grid_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/drawable/square_over.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/layout/icon_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 18 | 19 | 22 | 23 | 24 | 25 | 30 | 31 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/menu/icons.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/build/intermediates/res/debug/values-sw720dp-land/values-sw720dp-land.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 128dp 6 | -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/allapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/allapp.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/allapp_current_focuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/allapp_current_focuse.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/allapp_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/allapp_selected.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_folder_close_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_folder_close_up.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_folderback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_folderback.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_clear.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_clear_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_clear_light.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_menu.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_menu_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_menu_light.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_runing_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_runing_clear.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_runing_clear_ligh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_runing_clear_ligh.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_runing_lock_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_runing_lock_list.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_runing_lock_list_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_runing_lock_list_light.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_search.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_home_search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_home_search_light.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_memory_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_memory_bg.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_memory_high.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_memory_high.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_memory_low.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_memory_low.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_memory_middle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_memory_middle.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_menu_bg_h.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_menu_bg_h.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_menu_bg_v.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_menu_bg_v.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_menu_item_selector.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_menu_item_selector.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_menu_line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_menu_line.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_recent_nodata_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_recent_nodata_bg.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunc_rename.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunc_rename.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunchome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunchome.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/appfunchome_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/appfunchome_selected.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/back.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/backpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/backpress.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/dock.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/exit.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/exitpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/exitpress.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/feature.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/folderopenback.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/folderopenback.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/funbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/funbg.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/history.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/history_current_focuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/history_current_focuse.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/history_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/history_selected.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/hmetro.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/hmetro.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/hmetrof.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/hmetrof.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/hmetrov.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/hmetrov.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menu_more_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menu_more_overflow.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menu_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menu_selected.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_add.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_appcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_appcenter.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_desklock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_desklock.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_deskunlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_deskunlock.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_effect.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_fb.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_gobackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_gobackup.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_golocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_golocker.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_gostore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_gostore.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_gowidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_gowidget.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_grade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_grade.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_hideapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_hideapp.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_language.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_message.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_newfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_newfolder.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_notification.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_notificationbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_notificationbar.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_preference.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_restart.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_screenedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_screenedit.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_share.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_sort.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_syssetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_syssetting.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_theme.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_update.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/menuitem_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/menuitem_wallpaper.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/preview1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/preview1.jpg -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/preview2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/preview2.jpg -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/run.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/run_current_focuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/run_current_focuse.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/run_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/run_selected.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/screennow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/screennow.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/screenother.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/screenother.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/vmetro.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/vmetro.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/vmetrof.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/vmetrof.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-hdpi/vmetrov.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-hdpi/vmetrov.9.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-nodpi/com_android_browser_browseractivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-nodpi/com_android_browser_browseractivity.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-nodpi/iconback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-nodpi/iconback.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-xhdpi/com_android_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-xhdpi/com_android_browser.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-xhdpi/com_android_gallery3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-xhdpi/com_android_gallery3d.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-xhdpi/com_android_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-xhdpi/com_android_music.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/res/release/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable/grid_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/build/intermediates/res/release/drawable/square_over.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/build/intermediates/res/release/layout/icon_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 18 | 19 | 22 | 23 | 24 | 25 | 30 | 31 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /app/build/intermediates/res/release/menu/icons.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/build/intermediates/res/release/values-sw720dp-land/values-sw720dp-land.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 128dp 6 | -------------------------------------------------------------------------------- /app/build/intermediates/resources/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/resources/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /app/build/intermediates/resources/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/resources/resources-debug.ap_ -------------------------------------------------------------------------------- /app/build/intermediates/resources/resources-release.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/intermediates/resources/resources-release.ap_ -------------------------------------------------------------------------------- /app/build/outputs/apk/app-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/outputs/apk/app-debug-unaligned.apk -------------------------------------------------------------------------------- /app/build/outputs/apk/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/outputs/apk/app-debug.apk -------------------------------------------------------------------------------- /app/build/outputs/apk/app-release-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/outputs/apk/app-release-unaligned.apk -------------------------------------------------------------------------------- /app/build/outputs/lint-results-release-fatal.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Lint Report 5 | 6 | 7 | 17 | 18 | 19 |

Lint Report

20 |
21 | Check performed at Fri Jul 17 00:54:37 MSK 2015.
22 | 0 errors and 0 warnings found:

23 | Congratulations! 24 | 25 | -------------------------------------------------------------------------------- /app/build/outputs/lint-results-release-fatal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/build/outputs/lint-results-release-fatal_files/lint-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/outputs/lint-results-release-fatal_files/lint-error.png -------------------------------------------------------------------------------- /app/build/outputs/lint-results-release-fatal_files/lint-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/outputs/lint-results-release-fatal_files/lint-run.png -------------------------------------------------------------------------------- /app/build/outputs/lint-results-release-fatal_files/lint-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/build/outputs/lint-results-release-fatal_files/lint-warning.png -------------------------------------------------------------------------------- /app/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- 1 | -- Merging decision tree log --- 2 | manifest 3 | ADDED from AndroidManifest.xml:2:1 4 | package 5 | ADDED from AndroidManifest.xml:3:5 6 | INJECTED from AndroidManifest.xml:0:0 7 | INJECTED from AndroidManifest.xml:0:0 8 | android:versionName 9 | ADDED from AndroidManifest.xml:6:5 10 | android:versionCode 11 | ADDED from AndroidManifest.xml:5:5 12 | INJECTED from AndroidManifest.xml:0:0 13 | INJECTED from AndroidManifest.xml:0:0 14 | xmlns:android 15 | ADDED from AndroidManifest.xml:2:11 16 | android:installLocation 17 | ADDED from AndroidManifest.xml:4:5 18 | uses-sdk 19 | ADDED from AndroidManifest.xml:8:5 20 | android:targetSdkVersion 21 | ADDED from AndroidManifest.xml:9:9 22 | INJECTED from AndroidManifest.xml:0:0 23 | INJECTED from AndroidManifest.xml:0:0 24 | android:minSdkVersion 25 | ADDED from AndroidManifest.xml:8:15 26 | application 27 | ADDED from AndroidManifest.xml:11:5 28 | android:label 29 | ADDED from AndroidManifest.xml:13:9 30 | android:icon 31 | ADDED from AndroidManifest.xml:12:9 32 | activity#com.elementarytoday.theia.MainActivity 33 | ADDED from AndroidManifest.xml:14:9 34 | android:label 35 | ADDED from AndroidManifest.xml:16:13 36 | android:name 37 | ADDED from AndroidManifest.xml:15:13 38 | intent-filter#android.intent.action.MAIN+com.anddoes.launcher.THEME 39 | ADDED from AndroidManifest.xml:17:13 40 | action#android.intent.action.MAIN 41 | ADDED from AndroidManifest.xml:18:17 42 | android:name 43 | ADDED from AndroidManifest.xml:18:25 44 | category#com.anddoes.launcher.THEME 45 | ADDED from AndroidManifest.xml:20:17 46 | android:name 47 | ADDED from AndroidManifest.xml:20:27 48 | intent-filter#android.intent.action.MAIN+android.intent.category.INFO 49 | ADDED from AndroidManifest.xml:22:13 50 | category#android.intent.category.INFO 51 | ADDED from AndroidManifest.xml:25:17 52 | android:name 53 | ADDED from AndroidManifest.xml:25:27 54 | intent-filter#android.intent.action.MAIN+android.intent.category.DEFAULT+com.gau.go.launcherex.theme.gowidget 55 | ADDED from AndroidManifest.xml:27:13 56 | action#com.gau.go.launcherex.theme.gowidget 57 | ADDED from AndroidManifest.xml:29:17 58 | android:name 59 | ADDED from AndroidManifest.xml:29:25 60 | category#android.intent.category.DEFAULT 61 | ADDED from AndroidManifest.xml:31:17 62 | android:name 63 | ADDED from AndroidManifest.xml:31:27 64 | intent-filter#android.intent.action.MAIN+android.intent.category.DEFAULT+com.gau.go.launcherex.theme 65 | ADDED from AndroidManifest.xml:33:13 66 | action#com.gau.go.launcherex.theme 67 | ADDED from AndroidManifest.xml:35:17 68 | android:name 69 | ADDED from AndroidManifest.xml:35:25 70 | intent-filter#android.intent.category.INFO 71 | ADDED from AndroidManifest.xml:39:13 72 | intent-filter#android.intent.action.MAIN+com.fede.launcher.THEME_ICONPACK 73 | ADDED from AndroidManifest.xml:48:13 74 | category#com.fede.launcher.THEME_ICONPACK 75 | ADDED from AndroidManifest.xml:51:17 76 | android:name 77 | ADDED from AndroidManifest.xml:51:27 78 | intent-filter#android.intent.action.MAIN+android.intent.category.DEFAULT+org.adw.launcher.THEMES 79 | ADDED from AndroidManifest.xml:53:13 80 | action#org.adw.launcher.THEMES 81 | ADDED from AndroidManifest.xml:55:17 82 | android:name 83 | ADDED from AndroidManifest.xml:55:25 84 | -------------------------------------------------------------------------------- /app/build/outputs/logs/manifest-merger-release-report.txt: -------------------------------------------------------------------------------- 1 | -- Merging decision tree log --- 2 | manifest 3 | ADDED from AndroidManifest.xml:2:1 4 | package 5 | ADDED from AndroidManifest.xml:3:5 6 | INJECTED from AndroidManifest.xml:0:0 7 | INJECTED from AndroidManifest.xml:0:0 8 | android:versionName 9 | ADDED from AndroidManifest.xml:6:5 10 | android:versionCode 11 | ADDED from AndroidManifest.xml:5:5 12 | INJECTED from AndroidManifest.xml:0:0 13 | INJECTED from AndroidManifest.xml:0:0 14 | xmlns:android 15 | ADDED from AndroidManifest.xml:2:11 16 | android:installLocation 17 | ADDED from AndroidManifest.xml:4:5 18 | uses-sdk 19 | ADDED from AndroidManifest.xml:8:5 20 | android:targetSdkVersion 21 | ADDED from AndroidManifest.xml:9:9 22 | INJECTED from AndroidManifest.xml:0:0 23 | INJECTED from AndroidManifest.xml:0:0 24 | android:minSdkVersion 25 | ADDED from AndroidManifest.xml:8:15 26 | application 27 | ADDED from AndroidManifest.xml:11:5 28 | android:label 29 | ADDED from AndroidManifest.xml:13:9 30 | android:icon 31 | ADDED from AndroidManifest.xml:12:9 32 | activity#com.elementarytoday.theia.MainActivity 33 | ADDED from AndroidManifest.xml:14:9 34 | android:label 35 | ADDED from AndroidManifest.xml:16:13 36 | android:name 37 | ADDED from AndroidManifest.xml:15:13 38 | intent-filter#android.intent.action.MAIN+com.anddoes.launcher.THEME 39 | ADDED from AndroidManifest.xml:17:13 40 | action#android.intent.action.MAIN 41 | ADDED from AndroidManifest.xml:18:17 42 | android:name 43 | ADDED from AndroidManifest.xml:18:25 44 | category#com.anddoes.launcher.THEME 45 | ADDED from AndroidManifest.xml:20:17 46 | android:name 47 | ADDED from AndroidManifest.xml:20:27 48 | intent-filter#android.intent.action.MAIN+android.intent.category.INFO 49 | ADDED from AndroidManifest.xml:22:13 50 | category#android.intent.category.INFO 51 | ADDED from AndroidManifest.xml:25:17 52 | android:name 53 | ADDED from AndroidManifest.xml:25:27 54 | intent-filter#android.intent.action.MAIN+android.intent.category.DEFAULT+com.gau.go.launcherex.theme.gowidget 55 | ADDED from AndroidManifest.xml:27:13 56 | action#com.gau.go.launcherex.theme.gowidget 57 | ADDED from AndroidManifest.xml:29:17 58 | android:name 59 | ADDED from AndroidManifest.xml:29:25 60 | category#android.intent.category.DEFAULT 61 | ADDED from AndroidManifest.xml:31:17 62 | android:name 63 | ADDED from AndroidManifest.xml:31:27 64 | intent-filter#android.intent.action.MAIN+android.intent.category.DEFAULT+com.gau.go.launcherex.theme 65 | ADDED from AndroidManifest.xml:33:13 66 | action#com.gau.go.launcherex.theme 67 | ADDED from AndroidManifest.xml:35:17 68 | android:name 69 | ADDED from AndroidManifest.xml:35:25 70 | intent-filter#android.intent.category.INFO 71 | ADDED from AndroidManifest.xml:39:13 72 | intent-filter#android.intent.action.MAIN+com.fede.launcher.THEME_ICONPACK 73 | ADDED from AndroidManifest.xml:48:13 74 | category#com.fede.launcher.THEME_ICONPACK 75 | ADDED from AndroidManifest.xml:51:17 76 | android:name 77 | ADDED from AndroidManifest.xml:51:27 78 | intent-filter#android.intent.action.MAIN+android.intent.category.DEFAULT+org.adw.launcher.THEMES 79 | ADDED from AndroidManifest.xml:53:13 80 | action#org.adw.launcher.THEMES 81 | ADDED from AndroidManifest.xml:55:17 82 | android:name 83 | ADDED from AndroidManifest.xml:55:25 84 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /app/src/main/assets/themecfg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1 4 | Sample Icon Pack 5 | This is your theme information 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/allapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/allapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/allapp_current_focuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/allapp_current_focuse.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/allapp_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/allapp_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_folder_close_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_folder_close_up.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_folderback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_folderback.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_clear.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_clear_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_clear_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_menu.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_menu_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_menu_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_runing_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_runing_clear.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_runing_clear_ligh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_runing_clear_ligh.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_runing_lock_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_runing_lock_list.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_runing_lock_list_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_runing_lock_list_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_search.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_home_search_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_home_search_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_memory_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_memory_bg.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_memory_high.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_memory_high.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_memory_low.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_memory_low.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_memory_middle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_memory_middle.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_menu_bg_h.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_menu_bg_h.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_menu_bg_v.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_menu_bg_v.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_menu_item_selector.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_menu_item_selector.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_menu_line.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_menu_line.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_recent_nodata_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_recent_nodata_bg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunc_rename.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunc_rename.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunchome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunchome.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/appfunchome_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/appfunchome_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/back.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/backpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/backpress.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/dock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/exit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/exitpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/exitpress.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/feature.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/folderopenback.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/folderopenback.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/funbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/funbg.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/history.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/history_current_focuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/history_current_focuse.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/history_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/history_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/hmetro.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/hmetro.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/hmetrof.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/hmetrof.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/hmetrov.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/hmetrov.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menu_more_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menu_more_overflow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menu_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menu_selected.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_appcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_appcenter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_desklock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_desklock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_deskunlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_deskunlock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_effect.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_fb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_gobackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_gobackup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_golocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_golocker.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_gostore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_gostore.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_gowidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_gowidget.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_grade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_grade.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_hideapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_hideapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_language.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_message.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_newfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_newfolder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_notificationbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_notificationbar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_preference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_preference.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_restart.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_screenedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_screenedit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_share.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_sort.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_syssetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_syssetting.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_theme.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_update.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/menuitem_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/menuitem_wallpaper.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/preview1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/preview1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/preview2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/preview2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/run.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/run_current_focuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/run_current_focuse.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/run_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/run_selected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/screennow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/screennow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/screenother.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/screenother.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/vmetro.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/vmetro.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/vmetrof.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/vmetrof.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/vmetrov.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-hdpi/vmetrov.9.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/com_android_browser_browseractivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-nodpi/com_android_browser_browseractivity.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/iconback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-nodpi/iconback.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/au_com_shiftyjelly_pocketcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/au_com_shiftyjelly_pocketcasts.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/battery.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/bottom.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/clock_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/clock_widget.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_adobe_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_adobe_reader.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_aimp_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_aimp_player.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_alensw_picfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_alensw_picfolder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_alephzain_framaroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_alephzain_framaroot.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_alexjlockwood_twentyfortyeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_alexjlockwood_twentyfortyeight.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_alibaba_aliexpresshd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_alibaba_aliexpresshd.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_anddoes_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_anddoes_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_alarm.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_bluetooth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_browser.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_calculator2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_calculator2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_calendar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_camera.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_contacts.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_deskclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_deskclock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_dialer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_dialer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_email.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_equalizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_equalizer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_gallery3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_gallery3d.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_mms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_mms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_mplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_mplayer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_music.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_providers_downloads_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_providers_downloads_ui.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_quicksearchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_quicksearchbox.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_radio.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_secundomer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_secundomer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_settings_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_settings_wifi.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_soundrecorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_soundrecorder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_vending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_vending.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_videoeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_videoeditor.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_voicedialer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_voicedialer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_android_world_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_android_world_clock.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_artifex_mupdfdemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_artifex_mupdfdemo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_avito_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_avito_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_bambuna_podcastaddict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_bambuna_podcastaddict.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_cleanmaster_mguard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_cleanmaster_mguard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_delphicoder_flud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_delphicoder_flud.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_desmos_calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_desmos_calculator.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_devexpert_weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_devexpert_weather.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_doubleiq_podcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_doubleiq_podcast.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_dropbox_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_dropbox_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_duolingo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_duolingo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_dv_adm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_dv_adm.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_endomondo_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_endomondo_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_facebook_katana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_facebook_katana.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_facebook_orca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_facebook_orca.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_flyersoft_moonreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_flyersoft_moonreader.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_flyingottersoftware_mega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_flyingottersoftware_mega.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_foobnix_pdf_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_foobnix_pdf_reader.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_ghisler_android_totalcommander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_ghisler_android_totalcommander.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_books.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_chrome.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_chromecast_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_chromecast_app.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_docs.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_docs_editors_sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_docs_editors_sheets.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_docs_editors_slides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_docs_editors_slides.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_fitness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_fitness.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_genie_geniewidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_genie_geniewidget.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_inbox.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_magazines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_magazines.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_plus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_apps_translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_apps_translate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_docs_editors_docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_docs_editors_docs.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_gm.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_gms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_gms.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_googlequicksearchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_googlequicksearchbox.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_keep.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_maps.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_music.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_play_games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_play_games.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_talk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_talk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_videos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_videos.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_android_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_android_youtube.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_google_earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_google_earth.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_idamob_tinkoff_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_idamob_tinkoff_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_ideashower_readitlater_pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_ideashower_readitlater_pro.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_indeed_android_jobsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_indeed_android_jobsearch.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_instagram_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_instagram_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_its_rto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_its_rto.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_keramidas_titaniumbackup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_keramidas_titaniumbackup.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_kmplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_kmplayer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_lenovo_anyshare_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_lenovo_anyshare_gps.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_maxmpz_audioplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_maxmpz_audioplayer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_microsoft_office_outlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_microsoft_office_outlook.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_mixradio_droid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_mixradio_droid.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_mobilityflow_torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_mobilityflow_torrent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_motorola_bodyguard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_motorola_bodyguard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_motorola_contextual_smartrules2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_motorola_contextual_smartrules2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_motorola_genie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_motorola_genie.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_motorola_migrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_motorola_migrate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_ms_screencastfree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_ms_screencastfree.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_mv2studio_amarok_kontrol_free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_mv2studio_amarok_kontrol_free.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_mxtech_videoplayer_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_mxtech_videoplayer_ad.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_neogb_rtac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_neogb_rtac.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_oasisfeng_greenify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_oasisfeng_greenify.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_opera_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_opera_browser.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_opera_browser_beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_opera_browser_beta.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_opera_max_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_opera_max_global.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_paragon_mts_ma_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_paragon_mts_ma_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_piksoft_turboscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_piksoft_turboscan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_piriform_ccleaner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_piriform_ccleaner.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_pushbullet_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_pushbullet_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_rarlab_rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_rarlab_rar.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_scee_psxandroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_scee_psxandroid.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_skype_android_raider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_skype_android_raider.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_softwarebakery_drivedroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_softwarebakery_drivedroid.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_soundcloud_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_soundcloud_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_stackexchange_marvin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_stackexchange_marvin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_syntellia_fleksy_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_syntellia_fleksy_keyboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_teslacoilsw_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_teslacoilsw_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_trablone_geekhabr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_trablone_geekhabr.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_ttxapps_dropsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_ttxapps_dropsync.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_twitter_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_twitter_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_ucmobile_intl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_ucmobile_intl.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_uzumapps_wakelockdetector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_uzumapps_wakelockdetector.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_venticake_retrica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_venticake_retrica.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_viber_voip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_viber_voip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_vkontakte_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_vkontakte_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_vortexwolf_chan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_vortexwolf_chan.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_vsco_cam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_vsco_cam.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_webmoney_my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_webmoney_my.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_whatsapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/com_yandex_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/com_yandex_browser.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/de_qspool_clementineremote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/de_qspool_clementineremote.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/de_szalkowski_activitylauncher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/de_szalkowski_activitylauncher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/elementary_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/elementary_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/elementary_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/elementary_logo_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/elementary_logo_white_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/elementary_logo_white_shadow.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/f_droid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/f_droid.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/file_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/file_explorer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/fonarik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/fonarik.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/fr_kwiatkowski_apktrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/fr_kwiatkowski_apktrack.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/fr_outadev_lastfm_scrobb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/fr_outadev_lastfm_scrobb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/google_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/google_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/io_meduza_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/io_meduza_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/it_msec_dukto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/it_msec_dukto.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/keepass2android_keepass2android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/keepass2android_keepass2android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/midori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/midori.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/mobi_beyondpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/mobi_beyondpod.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/news_reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/news_reader.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/nya_miku_wishmaster_sfw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/nya_miku_wishmaster_sfw.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/opera_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/opera_store.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_adaway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_adaway.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_cohortor_gstrings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_cohortor_gstrings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_deadbeef_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_deadbeef_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_geometerplus_zlibrary_ui_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_geometerplus_zlibrary_ui_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_jamienicol_episodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_jamienicol_episodes.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_kde_kdeconnect_tp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_kde_kdeconnect_tp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_kman_aquamail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_kman_aquamail.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_mozilla_fennec_fdroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_mozilla_fennec_fdroid.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_mozilla_firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_mozilla_firefox.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_mozilla_firefox_beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_mozilla_firefox_beta.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_sufficientlysecure_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_sufficientlysecure_viewer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_telegram_messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_telegram_messenger.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_transdroid_lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_transdroid_lite.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_videolan_vlc_betav7neon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_videolan_vlc_betav7neon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/org_wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/org_wikipedia.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/phone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/power.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/qr_code.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/rename_me_app_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/rename_me_app_drawer.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_alfabank_mobile_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_alfabank_mobile_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_beeline_services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_beeline_services.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_droidlab_smiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_droidlab_smiler.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_dublgis_dgismobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_dublgis_dgismobile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_ideast_championat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_ideast_championat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_kraynov_app_tjournal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_kraynov_app_tjournal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_mail_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_mail_cloud.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_mail_mailapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_mail_mailapp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_megafon_mlk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_megafon_mlk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_mw.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_ok_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_ok_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_rosbank_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_rosbank_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_sberbankmobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_sberbankmobile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_sports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_sports.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_superjob_client_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_superjob_client_android.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_yandex_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_yandex_disk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_yandex_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_yandex_mail.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_yandex_market.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_yandex_market.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_yandex_money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_yandex_money.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_yandex_weatherplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_yandex_weatherplugin.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ru_yandex_yandexmaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ru_yandex_yandexmaps.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/sim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/sim.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/super_su.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/super_su.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/terminal.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/themes.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/tunein_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/tunein_player.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/twitter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ua_privatbank_ap24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ua_privatbank_ap24.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ua_slando.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/ua_slando.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/update.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/yandex_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/app/src/main/res/drawable-xhdpi/yandex_store.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/grid_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/square_over.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/layout/icon_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 18 | 19 | 22 | 23 | 24 | 25 | 30 | 31 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /app/src/main/res/menu/icons.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 128dp 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | false 5 | false 6 | true 7 | true 8 | false 9 | false 10 | false 11 | true 12 | false 13 | false 14 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Theia Icon Theme 6 | elementary OS Russian Community 7 | 8 | https://elementary.today 9 | Тема создана в порыве любви к святейшему Daniel Fore. Слава elementary, дизайну слава! 10 | 11 | 12 | 13 | feature 14 | 15 | 16 | preview1 17 | preview2 18 | Icons 19 | Settings 20 | 21 | 22 | Тема создана в порыве любви к святейшему Daniel Fore. Слава elementary, дизайну слава! 23 | Text for theme applied popup 24 | 25 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | buildscript { 3 | repositories { 4 | jcenter() 5 | } 6 | dependencies { 7 | classpath 'com.android.tools.build:gradle:1.2.3' 8 | } 9 | } 10 | 11 | allprojects { 12 | repositories { 13 | jcenter() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /build/intermediates/dex-cache/cache.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 16 | 17 | 18 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /build/intermediates/gradle_project_sync_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/build/intermediates/gradle_project_sync_data.bin -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /import-summary.txt: -------------------------------------------------------------------------------- 1 | ECLIPSE ANDROID PROJECT IMPORT SUMMARY 2 | ====================================== 3 | 4 | Risky Project Location: 5 | ----------------------- 6 | The tools *should* handle project locations in any directory. However, 7 | due to bugs, placing projects in directories containing spaces in the 8 | path, or characters like ", ' and &, have had issues. We're working to 9 | eliminate these bugs, but to save yourself headaches you may want to 10 | move your project to a location where this is not a problem. 11 | C:\Users\user\AndroidStudioProjects\Новая папка (2)2 12 | - - 13 | 14 | Ignored Files: 15 | -------------- 16 | The following files were *not* copied into the new Gradle project; you 17 | should evaluate whether these are still needed in your project and if 18 | so manually move them: 19 | 20 | * LICENSE 21 | * README.md 22 | 23 | Moved Files: 24 | ------------ 25 | Android Gradle projects use a different directory structure than ADT 26 | Eclipse projects. Here's how the projects were restructured: 27 | 28 | * AndroidManifest.xml => app\src\main\AndroidManifest.xml 29 | * assets\ => app\src\main\assets\ 30 | * libs\android-support-v4.jar => app\libs\android-support-v4.jar 31 | * res\ => app\src\main\res\ 32 | * src\ => app\src\main\java\ 33 | 34 | Next Steps: 35 | ----------- 36 | You can now build the project. The Gradle project needs network 37 | connectivity to download dependencies. 38 | 39 | Bugs: 40 | ----- 41 | If for some reason your project does not build, and you determine that 42 | it is due to a bug or limitation of the Eclipse to Gradle importer, 43 | please file a bug at http://b.android.com with category 44 | Component-Tools. 45 | 46 | (This import summary is for your information only, and can be deleted 47 | after import once you are satisfied with the results.) 48 | -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- 1 | ## This file must *NOT* be checked into Version Control Systems, 2 | # as it contains information specific to your local configuration. 3 | # 4 | # Location of the SDK. This is only used by Gradle. 5 | # 6 | #Fri Jul 10 00:49:46 MSK 2015 7 | sdk.dir=C\:\\Users\\user\\AppData\\Local\\Android\\Sdk 8 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /theia-icon-theme.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /wuzzapcom.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/varlesh/theia-icon-theme/fbdf2d99c5fa705ba93a408b6259cba07368e981/wuzzapcom.jks --------------------------------------------------------------------------------