├── .github └── FUNDING.yml ├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── libraries │ ├── Gradle__ch_acra_acra_4_5_0.xml │ ├── Gradle__com_github_Todd_Davies_ProgressWheel_1_1_aar.xml │ ├── Gradle__com_github_gabrielemariotti_changeloglib_library_1_5_1_aar.xml │ ├── Gradle__com_readystatesoftware_sqliteasset_sqliteassethelper_2_0_1.xml │ ├── Gradle__com_robinhood_ticker_ticker_1_1_1_aar.xml │ ├── Gradle__nl_qbusict_cupboard_2_0_1.xml │ └── Gradle__org_json_json_20080701.xml ├── misc.xml ├── modules.xml ├── modules │ ├── BetterOpenWith.iml │ └── app │ │ ├── BetterOpenWith.app.androidTest.iml │ │ ├── BetterOpenWith.app.iml │ │ ├── BetterOpenWith.app.main.iml │ │ └── BetterOpenWith.app.unitTest.iml └── vcs.xml ├── Feature.jpg ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── databases │ │ ├── applist.db │ │ ├── applist.db_upgrade_1-2.sql │ │ ├── applist.db_upgrade_10-11.sql │ │ ├── applist.db_upgrade_11-12.sql │ │ ├── applist.db_upgrade_2-3.sql │ │ ├── applist.db_upgrade_3-4.sql │ │ ├── applist.db_upgrade_4-5.sql │ │ ├── applist.db_upgrade_5-6.sql │ │ ├── applist.db_upgrade_6-7.sql │ │ ├── applist.db_upgrade_7-8.sql │ │ ├── applist.db_upgrade_8-9.sql │ │ └── applist.db_upgrade_9-10.sql │ ├── java │ └── com │ │ └── aboutmycode │ │ └── betteropenwith │ │ ├── AboutActivity.java │ │ ├── BetterOpenWithApplication.java │ │ ├── BrowserDetailsActivity.java │ │ ├── ChangelogDialogFragment.java │ │ ├── FileHandlerActivity.java │ │ ├── HandleItem.java │ │ ├── HandlerDetailsActivity.java │ │ ├── HandlerListActivity.java │ │ ├── HiddenApp.java │ │ ├── ItemBase.java │ │ ├── ResolveInfoDisplay.java │ │ ├── Site.java │ │ ├── SiteHandlerActivity.java │ │ ├── SpinnerSite.java │ │ ├── TimeoutDialogFragment.java │ │ ├── Utils.java │ │ ├── common │ │ ├── AbstractListLoader.java │ │ ├── YesNoDialogFragment.java │ │ ├── YesNoListener.java │ │ ├── adapter │ │ │ ├── CommonAdapter.java │ │ │ └── IBindView.java │ │ ├── baseActivities │ │ │ ├── LocaleAwareActivity.java │ │ │ └── LocaleAwareListActivity.java │ │ └── layout │ │ │ └── CheckableRelativeLayout.java │ │ ├── database │ │ ├── CupboardCursorLoader.java │ │ ├── CupboardSQLiteOpenHelper.java │ │ ├── HandleItemLoader.java │ │ └── SiteItemLoader.java │ │ └── settings │ │ ├── NumberPickerDialogPreference.java │ │ ├── SettingsActivity.java │ │ ├── SettingsFragment.java │ │ └── WorkingListPreference.java │ └── res │ ├── anim │ ├── slide_bottom_up.xml │ ├── slide_left_right.xml │ └── slide_right_left.xml │ ├── drawable-hdpi │ ├── btn_star_off_disabled_focused_holo_light.png │ ├── btn_star_off_disabled_holo_light.png │ ├── btn_star_off_focused_holo_light.png │ ├── btn_star_off_normal_holo_light.png │ ├── btn_star_off_pressed_holo_light.png │ ├── btn_star_on_disabled_focused_holo_light.png │ ├── btn_star_on_disabled_holo_light.png │ ├── btn_star_on_focused_holo_light.png │ ├── btn_star_on_normal_holo_light.png │ ├── btn_star_on_pressed_holo_light.png │ ├── google_plus_red.png │ ├── ic_action_app_settings.png │ ├── ic_action_audio.png │ ├── ic_action_audio_light.png │ ├── ic_action_browser.png │ ├── ic_action_browser_light.png │ ├── ic_action_calendar_month.png │ ├── ic_action_camera.png │ ├── ic_action_cancel.png │ ├── ic_action_disabled.png │ ├── ic_action_edit.png │ ├── ic_action_email.png │ ├── ic_action_email_light.png │ ├── ic_action_enabled.png │ ├── ic_action_epub.png │ ├── ic_action_epub_light.png │ ├── ic_action_excel.png │ ├── ic_action_excel_light.png │ ├── ic_action_html.png │ ├── ic_action_html_light.png │ ├── ic_action_images.png │ ├── ic_action_images_light.png │ ├── ic_action_map32.png │ ├── ic_action_map32_light.png │ ├── ic_action_phone_start.png │ ├── ic_action_powerpoint.png │ ├── ic_action_powerpoint_light.png │ ├── ic_action_torrent.png │ ├── ic_action_torrent_light.png │ ├── ic_action_txt.png │ ├── ic_action_txt_light.png │ ├── ic_action_video.png │ ├── ic_action_video_light.png │ ├── ic_action_video_stream.png │ ├── ic_action_video_stream_light.png │ ├── ic_action_word.png │ ├── ic_action_word_light.png │ ├── ic_action_xml.png │ ├── ic_action_zip.png │ ├── ic_adobe_acrobat.png │ ├── ic_adobe_acrobat_light.png │ ├── ic_audio_stream.png │ ├── ic_audio_stream_light.png │ ├── ic_launcher.png │ ├── ic_pause_circle_outline_grey600_36dp.png │ ├── ic_pause_circle_outline_white_36dp.png │ ├── ic_play_circle_outline_grey600_36dp.png │ ├── ic_play_circle_outline_white_36dp.png │ ├── ic_settings_grey600_36dp.png │ ├── ic_settings_white_36dp.png │ ├── play_store.png │ ├── reddit.png │ ├── twitter.png │ ├── wikipedia.png │ └── youtube.png │ ├── drawable-mdpi │ ├── btn_star_off_disabled_focused_holo_light.png │ ├── btn_star_off_disabled_holo_light.png │ ├── btn_star_off_focused_holo_light.png │ ├── btn_star_off_normal_holo_light.png │ ├── btn_star_off_pressed_holo_light.png │ ├── btn_star_on_disabled_focused_holo_light.png │ ├── btn_star_on_disabled_holo_light.png │ ├── btn_star_on_focused_holo_light.png │ ├── btn_star_on_normal_holo_light.png │ ├── btn_star_on_pressed_holo_light.png │ ├── google_plus_red.png │ ├── ic_action_app_settings.png │ ├── ic_action_audio.png │ ├── ic_action_audio_light.png │ ├── ic_action_browser.png │ ├── ic_action_browser_light.png │ ├── ic_action_calendar_month.png │ ├── ic_action_camera.png │ ├── ic_action_cancel.png │ ├── ic_action_disabled.png │ ├── ic_action_edit.png │ ├── ic_action_email.png │ ├── ic_action_email_light.png │ ├── ic_action_enabled.png │ ├── ic_action_epub.png │ ├── ic_action_epub_light.png │ ├── ic_action_excel.png │ ├── ic_action_excel_light.png │ ├── ic_action_html.png │ ├── ic_action_html_light.png │ ├── ic_action_images.png │ ├── ic_action_images_light.png │ ├── ic_action_map32.png │ ├── ic_action_map32_light.png │ ├── ic_action_phone_start.png │ ├── ic_action_powerpoint.png │ ├── ic_action_powerpoint_light.png │ ├── ic_action_torrent.png │ ├── ic_action_torrent_light.png │ ├── ic_action_txt.png │ ├── ic_action_txt_light.png │ ├── ic_action_video.png │ ├── ic_action_video_light.png │ ├── ic_action_video_stream.png │ ├── ic_action_video_stream_light.png │ ├── ic_action_word.png │ ├── ic_action_word_light.png │ ├── ic_action_xml.png │ ├── ic_action_zip.png │ ├── ic_adobe_acrobat.png │ ├── ic_adobe_acrobat_light.png │ ├── ic_audio_stream.png │ ├── ic_audio_stream_light.png │ ├── ic_launcher.png │ ├── ic_pause_circle_outline_grey600_36dp.png │ ├── ic_pause_circle_outline_white_36dp.png │ ├── ic_play_circle_outline_grey600_36dp.png │ ├── ic_play_circle_outline_white_36dp.png │ ├── ic_settings_grey600_36dp.png │ ├── ic_settings_white_36dp.png │ ├── play_store.png │ ├── reddit.png │ ├── twitter.png │ ├── wikipedia.png │ └── youtube.png │ ├── drawable-xhdpi │ ├── btn_star_off_disabled_focused_holo_light.png │ ├── btn_star_off_disabled_holo_light.png │ ├── btn_star_off_focused_holo_light.png │ ├── btn_star_off_normal_holo_light.png │ ├── btn_star_off_pressed_holo_light.png │ ├── btn_star_on_disabled_focused_holo_light.png │ ├── btn_star_on_disabled_holo_light.png │ ├── btn_star_on_focused_holo_light.png │ ├── btn_star_on_normal_holo_light.png │ ├── btn_star_on_pressed_holo_light.png │ ├── google_plus_red.png │ ├── ic_action_app_settings.png │ ├── ic_action_audio.png │ ├── ic_action_audio_light.png │ ├── ic_action_browser.png │ ├── ic_action_browser_light.png │ ├── ic_action_calendar_month.png │ ├── ic_action_camera.png │ ├── ic_action_cancel.png │ ├── ic_action_disabled.png │ ├── ic_action_edit.png │ ├── ic_action_email.png │ ├── ic_action_email_light.png │ ├── ic_action_enabled.png │ ├── ic_action_epub.png │ ├── ic_action_epub_light.png │ ├── ic_action_excel.png │ ├── ic_action_excel_light.png │ ├── ic_action_html.png │ ├── ic_action_html_light.png │ ├── ic_action_images.png │ ├── ic_action_images_light.png │ ├── ic_action_map32.png │ ├── ic_action_map32_light.png │ ├── ic_action_phone_start.png │ ├── ic_action_powerpoint.png │ ├── ic_action_powerpoint_light.png │ ├── ic_action_torrent.png │ ├── ic_action_torrent_light.png │ ├── ic_action_txt.png │ ├── ic_action_txt_light.png │ ├── ic_action_video.png │ ├── ic_action_video_light.png │ ├── ic_action_video_stream.png │ ├── ic_action_video_stream_light.png │ ├── ic_action_word.png │ ├── ic_action_word_light.png │ ├── ic_action_xml.png │ ├── ic_action_zip.png │ ├── ic_adobe_acrobat.png │ ├── ic_adobe_acrobat_light.png │ ├── ic_audio_stream.png │ ├── ic_audio_stream_light.png │ ├── ic_launcher.png │ ├── ic_pause_circle_outline_grey600_36dp.png │ ├── ic_pause_circle_outline_white_36dp.png │ ├── ic_play_circle_outline_grey600_36dp.png │ ├── ic_play_circle_outline_white_36dp.png │ ├── ic_settings_grey600_36dp.png │ ├── ic_settings_white_36dp.png │ ├── play_store.png │ ├── reddit.png │ ├── twitter.png │ └── wikipedia.png │ ├── drawable-xxhdpi │ ├── btn_star_off_disabled_focused_holo_light.png │ ├── btn_star_off_disabled_holo_light.png │ ├── btn_star_off_focused_holo_light.png │ ├── btn_star_off_normal_holo_light.png │ ├── btn_star_off_pressed_holo_light.png │ ├── btn_star_on_disabled_focused_holo_light.png │ ├── btn_star_on_disabled_holo_light.png │ ├── btn_star_on_focused_holo_light.png │ ├── btn_star_on_normal_holo_light.png │ ├── btn_star_on_pressed_holo_light.png │ ├── ic_action_audio.png │ ├── ic_action_audio_light.png │ ├── ic_action_browser.png │ ├── ic_action_browser_light.png │ ├── ic_action_calendar_month.png │ ├── ic_action_camera.png │ ├── ic_action_cancel.png │ ├── ic_action_disabled.png │ ├── ic_action_edit.png │ ├── ic_action_email.png │ ├── ic_action_email_light.png │ ├── ic_action_enabled.png │ ├── ic_action_epub.png │ ├── ic_action_epub_light.png │ ├── ic_action_excel.png │ ├── ic_action_excel_light.png │ ├── ic_action_html.png │ ├── ic_action_html_light.png │ ├── ic_action_images.png │ ├── ic_action_images_light.png │ ├── ic_action_map32.png │ ├── ic_action_map32_light.png │ ├── ic_action_phone_start.png │ ├── ic_action_powerpoint.png │ ├── ic_action_powerpoint_light.png │ ├── ic_action_torrent.png │ ├── ic_action_torrent_light.png │ ├── ic_action_txt.png │ ├── ic_action_txt_light.png │ ├── ic_action_video.png │ ├── ic_action_video_light.png │ ├── ic_action_video_stream.png │ ├── ic_action_video_stream_light.png │ ├── ic_action_word.png │ ├── ic_action_word_light.png │ ├── ic_action_xml.png │ ├── ic_action_zip.png │ ├── ic_adobe_acrobat.png │ ├── ic_adobe_acrobat_light.png │ ├── ic_audio_stream.png │ ├── ic_audio_stream_light.png │ ├── ic_launcher.png │ ├── ic_pause_circle_outline_grey600_36dp.png │ ├── ic_pause_circle_outline_white_36dp.png │ ├── ic_play_circle_outline_grey600_36dp.png │ ├── ic_play_circle_outline_white_36dp.png │ ├── ic_settings_grey600_36dp.png │ └── ic_settings_white_36dp.png │ ├── drawable-xxxhdpi │ ├── google_plus_red.png │ ├── ic_action_excel.png │ ├── ic_action_excel_light.png │ ├── ic_action_html.png │ ├── ic_action_html_light.png │ ├── ic_action_powerpoint.png │ ├── ic_action_powerpoint_light.png │ ├── ic_action_torrent.png │ ├── ic_action_torrent_light.png │ ├── ic_action_word.png │ ├── ic_action_word_light.png │ ├── ic_launcher.png │ ├── play_store.png │ ├── reddit.png │ ├── twitter.png │ ├── wikipedia.png │ └── youtube.png │ ├── drawable │ ├── btn_star_holo_light.xml │ ├── google_plus.png │ └── uservoice.png │ ├── layout-land │ ├── fragment_timeout_dialog.xml │ └── resolve_list_item.xml │ ├── layout-sw600dp │ └── fragment_timeout_dialog.xml │ ├── layout │ ├── about.xml │ ├── activity_main.xml │ ├── changelog_fragment_dialog.xml │ ├── file_handler.xml │ ├── fragment_timeout_dialog.xml │ ├── handler_details.xml │ ├── handler_list.xml │ ├── handler_types.xml │ ├── master_switch.xml │ ├── preference_number_picker_dialog.xml │ ├── resolve_info_checkable.xml │ ├── resolve_list_item.xml │ └── site_navigation_item.xml │ ├── menu │ ├── handler_details.xml │ └── main.xml │ ├── raw │ └── changelog.xml │ ├── values-ar │ ├── handle_list.xml │ └── strings.xml │ ├── values-ca │ ├── handle_list.xml │ └── strings.xml │ ├── values-cs │ ├── handle_list.xml │ └── strings.xml │ ├── values-de │ ├── handle_list.xml │ └── strings.xml │ ├── values-el │ ├── handle_list.xml │ └── strings.xml │ ├── values-es │ ├── handle_list.xml │ └── strings.xml │ ├── values-fr │ ├── handle_list.xml │ └── strings.xml │ ├── values-it │ ├── handle_list.xml │ └── strings.xml │ ├── values-lt │ ├── handle_list.xml │ └── strings.xml │ ├── values-nl │ ├── handle_list.xml │ └── strings.xml │ ├── values-pl │ ├── handle_list.xml │ └── strings.xml │ ├── values-pt-rBR │ ├── handle_list.xml │ └── strings.xml │ ├── values-pt │ ├── handle_list.xml │ └── strings.xml │ ├── values-ru │ ├── handle_list.xml │ └── strings.xml │ ├── values-sw600dp-v21 │ └── styles.xml │ ├── values-sw600dp │ └── styles.xml │ ├── values-tr │ ├── handle_list.xml │ └── strings.xml │ ├── values-v21 │ └── styles.xml │ ├── values │ ├── arrays.xml │ ├── attrs.xml │ ├── color.xml │ ├── dimens.xml │ ├── handle_list.xml │ ├── integers.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── preferences.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__ch_acra_acra_4_5_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/libraries/Gradle__ch_acra_acra_4_5_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_github_Todd_Davies_ProgressWheel_1_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/libraries/Gradle__com_github_Todd_Davies_ProgressWheel_1_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_github_gabrielemariotti_changeloglib_library_1_5_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/libraries/Gradle__com_github_gabrielemariotti_changeloglib_library_1_5_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_readystatesoftware_sqliteasset_sqliteassethelper_2_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/libraries/Gradle__com_readystatesoftware_sqliteasset_sqliteassethelper_2_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_robinhood_ticker_ticker_1_1_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/libraries/Gradle__com_robinhood_ticker_ticker_1_1_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__nl_qbusict_cupboard_2_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/libraries/Gradle__nl_qbusict_cupboard_2_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_json_json_20080701.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/libraries/Gradle__org_json_json_20080701.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/modules/BetterOpenWith.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/modules/BetterOpenWith.iml -------------------------------------------------------------------------------- /.idea/modules/app/BetterOpenWith.app.androidTest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/modules/app/BetterOpenWith.app.androidTest.iml -------------------------------------------------------------------------------- /.idea/modules/app/BetterOpenWith.app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/modules/app/BetterOpenWith.app.iml -------------------------------------------------------------------------------- /.idea/modules/app/BetterOpenWith.app.main.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/modules/app/BetterOpenWith.app.main.iml -------------------------------------------------------------------------------- /.idea/modules/app/BetterOpenWith.app.unitTest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/modules/app/BetterOpenWith.app.unitTest.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/Feature.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/proguard-rules.txt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_1-2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_1-2.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_10-11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_10-11.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_11-12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_11-12.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_2-3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_2-3.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_3-4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_3-4.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_4-5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_4-5.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_5-6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_5-6.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_6-7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_6-7.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_7-8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_7-8.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_8-9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_8-9.sql -------------------------------------------------------------------------------- /app/src/main/assets/databases/applist.db_upgrade_9-10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/assets/databases/applist.db_upgrade_9-10.sql -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/AboutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/AboutActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/BetterOpenWithApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/BetterOpenWithApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/BrowserDetailsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/BrowserDetailsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/ChangelogDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/ChangelogDialogFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/FileHandlerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/FileHandlerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/HandleItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/HandleItem.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/HandlerDetailsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/HandlerDetailsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/HandlerListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/HandlerListActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/HiddenApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/HiddenApp.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/ItemBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/ItemBase.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/ResolveInfoDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/ResolveInfoDisplay.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/Site.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/Site.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/SiteHandlerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/SiteHandlerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/SpinnerSite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/SpinnerSite.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/TimeoutDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/TimeoutDialogFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/Utils.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/common/AbstractListLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/common/AbstractListLoader.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/common/YesNoDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/common/YesNoDialogFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/common/YesNoListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/common/YesNoListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/common/adapter/CommonAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/common/adapter/CommonAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/common/adapter/IBindView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/common/adapter/IBindView.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/common/baseActivities/LocaleAwareActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/common/baseActivities/LocaleAwareActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/common/baseActivities/LocaleAwareListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/common/baseActivities/LocaleAwareListActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/common/layout/CheckableRelativeLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/common/layout/CheckableRelativeLayout.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/database/CupboardCursorLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/database/CupboardCursorLoader.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/database/CupboardSQLiteOpenHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/database/CupboardSQLiteOpenHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/database/HandleItemLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/database/HandleItemLoader.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/database/SiteItemLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/database/SiteItemLoader.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/settings/NumberPickerDialogPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/settings/NumberPickerDialogPreference.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/settings/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/settings/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/settings/SettingsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/settings/SettingsFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/aboutmycode/betteropenwith/settings/WorkingListPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/java/com/aboutmycode/betteropenwith/settings/WorkingListPreference.java -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_bottom_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/anim/slide_bottom_up.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_left_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/anim/slide_left_right.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_right_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/anim/slide_right_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_off_disabled_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_off_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_off_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_off_normal_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_off_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_on_disabled_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_on_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_on_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_on_normal_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/btn_star_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/btn_star_on_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/google_plus_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/google_plus_red.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_app_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_app_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_audio.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_audio_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_audio_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_browser.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_browser_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_browser_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_calendar_month.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_calendar_month.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_camera.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_disabled.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_edit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_email.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_email_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_email_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_enabled.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_epub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_epub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_epub_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_epub_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_excel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_excel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_excel_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_html.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_html_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_html_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_images.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_images_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_images_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_map32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_map32.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_map32_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_map32_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_phone_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_phone_start.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_powerpoint.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_powerpoint_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_powerpoint_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_torrent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_torrent_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_torrent_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_txt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_txt_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_txt_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_video.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_video_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_video_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_video_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_video_stream.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_video_stream_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_video_stream_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_word.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_word_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_word_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_xml.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_action_zip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_adobe_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_adobe_acrobat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_adobe_acrobat_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_adobe_acrobat_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_audio_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_audio_stream.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_audio_stream_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_audio_stream_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_pause_circle_outline_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_pause_circle_outline_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_pause_circle_outline_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_pause_circle_outline_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_play_circle_outline_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_play_circle_outline_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_play_circle_outline_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_play_circle_outline_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_settings_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_settings_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/ic_settings_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/play_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/play_store.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/reddit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/twitter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/wikipedia.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-hdpi/youtube.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_off_disabled_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_off_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_off_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_off_normal_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_off_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_on_disabled_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_on_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_on_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_on_normal_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/btn_star_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/btn_star_on_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/google_plus_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/google_plus_red.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_app_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_app_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_audio.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_audio_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_audio_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_browser.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_browser_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_browser_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_calendar_month.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_calendar_month.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_camera.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_disabled.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_edit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_email.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_email_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_email_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_enabled.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_epub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_epub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_epub_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_epub_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_excel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_excel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_excel_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_html.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_html_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_html_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_images.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_images_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_images_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_map32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_map32.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_map32_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_map32_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_phone_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_phone_start.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_powerpoint.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_powerpoint_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_powerpoint_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_torrent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_torrent_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_torrent_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_txt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_txt_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_txt_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_video.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_video_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_video_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_video_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_video_stream.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_video_stream_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_video_stream_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_word.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_word_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_word_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_xml.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_action_zip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_adobe_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_adobe_acrobat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_adobe_acrobat_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_adobe_acrobat_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_audio_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_audio_stream.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_audio_stream_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_audio_stream_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_pause_circle_outline_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_pause_circle_outline_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_pause_circle_outline_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_pause_circle_outline_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_play_circle_outline_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_play_circle_outline_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_play_circle_outline_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_play_circle_outline_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_settings_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_settings_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/ic_settings_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/play_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/play_store.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/reddit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/twitter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/wikipedia.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-mdpi/youtube.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_off_disabled_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_off_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_off_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_off_normal_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_off_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_on_disabled_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_on_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_on_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_on_normal_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/btn_star_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/btn_star_on_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/google_plus_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/google_plus_red.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_app_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_app_settings.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_audio.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_audio_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_audio_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_browser.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_browser_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_browser_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_calendar_month.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_calendar_month.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_camera.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_disabled.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_edit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_email.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_email_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_email_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_enabled.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_epub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_epub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_epub_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_epub_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_excel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_excel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_excel_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_html.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_html_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_html_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_images.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_images_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_images_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_map32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_map32.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_map32_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_map32_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_phone_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_phone_start.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_powerpoint.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_powerpoint_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_powerpoint_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_torrent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_torrent_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_torrent_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_txt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_txt_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_txt_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_video.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_video_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_video_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_video_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_video_stream.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_video_stream_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_video_stream_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_word.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_word_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_word_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_xml.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_action_zip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_adobe_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_adobe_acrobat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_adobe_acrobat_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_adobe_acrobat_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_audio_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_audio_stream.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_audio_stream_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_audio_stream_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_pause_circle_outline_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_pause_circle_outline_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_pause_circle_outline_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_pause_circle_outline_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_play_circle_outline_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_play_circle_outline_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_play_circle_outline_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_play_circle_outline_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_settings_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/ic_settings_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/play_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/play_store.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/reddit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/twitter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xhdpi/wikipedia.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_off_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_off_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_off_disabled_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_off_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_off_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_off_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_off_normal_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_off_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_off_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_on_disabled_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_on_disabled_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_on_disabled_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_on_focused_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_on_focused_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_on_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_on_normal_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/btn_star_on_pressed_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/btn_star_on_pressed_holo_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_audio.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_audio_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_audio_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_browser.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_browser_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_browser_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_calendar_month.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_calendar_month.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_camera.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_disabled.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_edit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_email.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_email_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_email_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_enabled.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_epub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_epub.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_epub_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_epub_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_excel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_excel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_excel_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_html.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_html_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_html_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_images.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_images_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_images_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_map32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_map32.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_map32_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_map32_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_phone_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_phone_start.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_powerpoint.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_powerpoint_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_powerpoint_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_torrent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_torrent_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_torrent_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_txt.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_txt_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_txt_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_video.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_video_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_video_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_video_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_video_stream.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_video_stream_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_video_stream_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_word.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_word_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_word_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_xml.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_zip.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_adobe_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_adobe_acrobat.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_adobe_acrobat_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_adobe_acrobat_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_audio_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_audio_stream.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_audio_stream_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_audio_stream_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_pause_circle_outline_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_pause_circle_outline_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_pause_circle_outline_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_pause_circle_outline_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_play_circle_outline_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_play_circle_outline_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_play_circle_outline_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_play_circle_outline_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_grey600_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_grey600_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/google_plus_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/google_plus_red.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_excel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_excel_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_excel_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_html.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_html_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_html_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_powerpoint.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_powerpoint_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_powerpoint_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_torrent.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_torrent_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_torrent_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_word.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_action_word_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_action_word_light.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/play_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/play_store.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/reddit.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/twitter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/wikipedia.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable-xxxhdpi/youtube.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_star_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable/btn_star_holo_light.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/google_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable/google_plus.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/uservoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/drawable/uservoice.png -------------------------------------------------------------------------------- /app/src/main/res/layout-land/fragment_timeout_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout-land/fragment_timeout_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-land/resolve_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout-land/resolve_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw600dp/fragment_timeout_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout-sw600dp/fragment_timeout_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/changelog_fragment_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/changelog_fragment_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/file_handler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/file_handler.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_timeout_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/fragment_timeout_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/handler_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/handler_details.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/handler_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/handler_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/handler_types.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/handler_types.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/master_switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/master_switch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/preference_number_picker_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/preference_number_picker_dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/resolve_info_checkable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/resolve_info_checkable.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/resolve_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/resolve_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/site_navigation_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/layout/site_navigation_item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/handler_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/menu/handler_details.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /app/src/main/res/raw/changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/raw/changelog.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ar/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-ar/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-ca/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-cs/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-de/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-el/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-es/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-fr/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-it/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lt/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-lt/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-nl/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-pl/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-pt-rBR/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-pt/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-ru/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-sw600dp-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sw600dp/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-sw600dp/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-tr/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values/color.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/handle_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values/handle_list.xml -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/app/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giorgi/BetterOpenWith/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------