├── .gitignore ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── assets ├── changelog.html ├── test.html ├── test2.html └── third_party.html ├── pom.xml ├── res ├── drawable-hdpi │ ├── ab_bottom_solid_cheapcast.9.png │ ├── ab_solid_cheapcast.9.png │ ├── ab_stacked_solid_cheapcast.9.png │ ├── ab_texture_tile_cheapcast.png │ ├── ab_transparent_cheapcast.9.png │ ├── btn_cab_done_default_cheapcast.9.png │ ├── btn_cab_done_focused_cheapcast.9.png │ ├── btn_cab_done_pressed_cheapcast.9.png │ ├── cab_background_bottom_cheapcast.9.png │ ├── cab_background_top_cheapcast.9.png │ ├── ic_launcher.png │ ├── list_focused_cheapcast.9.png │ ├── menu_dropdown_panel_cheapcast.9.png │ ├── progress_bg_cheapcast.9.png │ ├── progress_primary_cheapcast.9.png │ ├── progress_secondary_cheapcast.9.png │ ├── spinner_ab_default_cheapcast.9.png │ ├── spinner_ab_disabled_cheapcast.9.png │ ├── spinner_ab_focused_cheapcast.9.png │ ├── spinner_ab_pressed_cheapcast.9.png │ ├── tab_selected_cheapcast.9.png │ ├── tab_selected_focused_cheapcast.9.png │ ├── tab_selected_pressed_cheapcast.9.png │ ├── tab_unselected_cheapcast.9.png │ ├── tab_unselected_focused_cheapcast.9.png │ └── tab_unselected_pressed_cheapcast.9.png ├── drawable-mdpi │ ├── ab_bottom_solid_cheapcast.9.png │ ├── ab_solid_cheapcast.9.png │ ├── ab_stacked_solid_cheapcast.9.png │ ├── ab_texture_tile_cheapcast.png │ ├── ab_transparent_cheapcast.9.png │ ├── btn_cab_done_default_cheapcast.9.png │ ├── btn_cab_done_focused_cheapcast.9.png │ ├── btn_cab_done_pressed_cheapcast.9.png │ ├── cab_background_bottom_cheapcast.9.png │ ├── cab_background_top_cheapcast.9.png │ ├── ic_launcher.png │ ├── list_focused_cheapcast.9.png │ ├── menu_dropdown_panel_cheapcast.9.png │ ├── progress_bg_cheapcast.9.png │ ├── progress_primary_cheapcast.9.png │ ├── progress_secondary_cheapcast.9.png │ ├── spinner_ab_default_cheapcast.9.png │ ├── spinner_ab_disabled_cheapcast.9.png │ ├── spinner_ab_focused_cheapcast.9.png │ ├── spinner_ab_pressed_cheapcast.9.png │ ├── tab_selected_cheapcast.9.png │ ├── tab_selected_focused_cheapcast.9.png │ ├── tab_selected_pressed_cheapcast.9.png │ ├── tab_unselected_cheapcast.9.png │ ├── tab_unselected_focused_cheapcast.9.png │ └── tab_unselected_pressed_cheapcast.9.png ├── drawable-xhdpi │ ├── ab_bottom_solid_cheapcast.9.png │ ├── ab_solid_cheapcast.9.png │ ├── ab_stacked_solid_cheapcast.9.png │ ├── ab_texture_tile_cheapcast.png │ ├── ab_transparent_cheapcast.9.png │ ├── btn_cab_done_default_cheapcast.9.png │ ├── btn_cab_done_focused_cheapcast.9.png │ ├── btn_cab_done_pressed_cheapcast.9.png │ ├── cab_background_bottom_cheapcast.9.png │ ├── cab_background_top_cheapcast.9.png │ ├── ic_launcher.png │ ├── list_focused_cheapcast.9.png │ ├── menu_dropdown_panel_cheapcast.9.png │ ├── progress_bg_cheapcast.9.png │ ├── progress_primary_cheapcast.9.png │ ├── progress_secondary_cheapcast.9.png │ ├── spinner_ab_default_cheapcast.9.png │ ├── spinner_ab_disabled_cheapcast.9.png │ ├── spinner_ab_focused_cheapcast.9.png │ ├── spinner_ab_pressed_cheapcast.9.png │ ├── tab_selected_cheapcast.9.png │ ├── tab_selected_focused_cheapcast.9.png │ ├── tab_selected_pressed_cheapcast.9.png │ ├── tab_unselected_cheapcast.9.png │ ├── tab_unselected_focused_cheapcast.9.png │ └── tab_unselected_pressed_cheapcast.9.png ├── drawable-xxhdpi │ ├── card_bg.9.png │ ├── ic_ab.png │ ├── ic_about.png │ ├── ic_analytics.png │ ├── ic_boot.png │ ├── ic_custom_services.png │ ├── ic_donation.png │ ├── ic_friendlyname.png │ ├── ic_launcher.png │ ├── ic_reload.png │ ├── ic_service.png │ ├── ic_start.png │ └── ic_stop.png ├── drawable │ ├── ab_background_textured_cheapcast.xml │ ├── btn_cab_done_cheapcast.xml │ ├── pressed_background_cheapcast.xml │ ├── progress_horizontal_cheapcast.xml │ ├── selectable_background_cheapcast.xml │ ├── spinner_background_ab_cheapcast.xml │ └── tab_indicator_ab_cheapcast.xml ├── layout-land │ └── activity_about.xml ├── layout │ ├── activity_about.xml │ ├── activity_cast.xml │ ├── activity_donate.xml │ ├── donations__fragment.xml │ ├── donations__fragment_flattr.xml │ ├── donations__fragment_paypal.xml │ ├── fragment_about.xml │ └── fragment_html.xml ├── menu │ ├── preferences_menu.xml │ └── preferences_menu_start.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ ├── styles.xml │ └── styles_cheapcast.xml ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ ├── styles.xml │ └── styles_cheapcast.xml └── xml │ └── settings.xml └── src └── main └── java └── at └── maui └── cheapcast ├── App.java ├── Const.java ├── Installation.java ├── Utils.java ├── activity ├── AboutActivity.java ├── CastActivity.java ├── DonateActivity.java └── PreferenceActivity.java ├── chromecast ├── App.java ├── ConnectionSocket.java ├── ReceiverSocket.java ├── SessionSocket.java ├── SystemControlSocket.java └── model │ ├── AppRegistration.java │ ├── Command.java │ ├── ConnectionCommand.java │ ├── ConnectionResponse.java │ ├── ProtocolMessage.java │ ├── ProtocolPayload.java │ ├── ramp │ ├── RampMessage.java │ ├── RampResponse.java │ └── RampVolume.java │ └── syscontrol │ └── SetVolumeMessage.java ├── fragment ├── AboutFragment.java ├── ChangelogFragment.java ├── DonationsFragment.java ├── ExtLibrariesFragment.java └── HtmlAssetFragment.java ├── json └── deserializer │ ├── ProtocolMessageDeserializer.java │ └── RampMessageDeserializer.java ├── receiver ├── OnBootBroadcastReceiver.java └── ServiceControlReceiver.java ├── service ├── CheapCastService.java ├── ICheapCastCallback.aidl └── ICheapCastService.aidl ├── ssdp └── SSDP.java └── ws ├── HybiParser.java ├── WebSocket.java ├── WebSocketClient.java └── WebSocketFactory.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/README.md -------------------------------------------------------------------------------- /assets/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/assets/changelog.html -------------------------------------------------------------------------------- /assets/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/assets/test.html -------------------------------------------------------------------------------- /assets/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/assets/test2.html -------------------------------------------------------------------------------- /assets/third_party.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/assets/third_party.html -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/pom.xml -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_bottom_solid_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/ab_bottom_solid_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_solid_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/ab_solid_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_stacked_solid_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/ab_stacked_solid_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_texture_tile_cheapcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/ab_texture_tile_cheapcast.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_transparent_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/ab_transparent_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_cab_done_default_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/btn_cab_done_default_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_cab_done_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/btn_cab_done_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_cab_done_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/btn_cab_done_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cab_background_bottom_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/cab_background_bottom_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cab_background_top_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/cab_background_top_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/list_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/menu_dropdown_panel_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/menu_dropdown_panel_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/progress_bg_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/progress_bg_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/progress_primary_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/progress_primary_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/progress_secondary_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/progress_secondary_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_default_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/spinner_ab_default_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_disabled_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/spinner_ab_disabled_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/spinner_ab_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/spinner_ab_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/spinner_ab_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_selected_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/tab_selected_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_selected_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/tab_selected_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_selected_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/tab_selected_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_unselected_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/tab_unselected_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_unselected_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/tab_unselected_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tab_unselected_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-hdpi/tab_unselected_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_bottom_solid_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/ab_bottom_solid_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_solid_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/ab_solid_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_stacked_solid_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/ab_stacked_solid_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_texture_tile_cheapcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/ab_texture_tile_cheapcast.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_transparent_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/ab_transparent_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_cab_done_default_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/btn_cab_done_default_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_cab_done_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/btn_cab_done_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_cab_done_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/btn_cab_done_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/cab_background_bottom_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/cab_background_bottom_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/cab_background_top_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/cab_background_top_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/list_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/menu_dropdown_panel_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/menu_dropdown_panel_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/progress_bg_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/progress_bg_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/progress_primary_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/progress_primary_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/progress_secondary_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/progress_secondary_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_default_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/spinner_ab_default_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_disabled_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/spinner_ab_disabled_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/spinner_ab_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/spinner_ab_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/spinner_ab_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_selected_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/tab_selected_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_selected_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/tab_selected_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_selected_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/tab_selected_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_unselected_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/tab_unselected_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_unselected_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/tab_unselected_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/tab_unselected_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-mdpi/tab_unselected_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_bottom_solid_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/ab_bottom_solid_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_solid_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/ab_solid_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_stacked_solid_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/ab_stacked_solid_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_texture_tile_cheapcast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/ab_texture_tile_cheapcast.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ab_transparent_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/ab_transparent_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_cab_done_default_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/btn_cab_done_default_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_cab_done_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/btn_cab_done_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/btn_cab_done_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/btn_cab_done_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/cab_background_bottom_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/cab_background_bottom_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/cab_background_top_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/cab_background_top_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/list_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/menu_dropdown_panel_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/menu_dropdown_panel_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/progress_bg_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/progress_bg_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/progress_primary_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/progress_primary_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/progress_secondary_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/progress_secondary_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_default_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/spinner_ab_default_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_disabled_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/spinner_ab_disabled_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/spinner_ab_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/spinner_ab_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/spinner_ab_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_selected_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/tab_selected_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_selected_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/tab_selected_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_selected_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/tab_selected_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_unselected_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/tab_unselected_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_unselected_focused_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/tab_unselected_focused_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/tab_unselected_pressed_cheapcast.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xhdpi/tab_unselected_pressed_cheapcast.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/card_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/card_bg.9.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_ab.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_about.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_analytics.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_boot.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_custom_services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_custom_services.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_donation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_donation.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_friendlyname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_friendlyname.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_reload.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_service.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_start.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable-xxhdpi/ic_stop.png -------------------------------------------------------------------------------- /res/drawable/ab_background_textured_cheapcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable/ab_background_textured_cheapcast.xml -------------------------------------------------------------------------------- /res/drawable/btn_cab_done_cheapcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable/btn_cab_done_cheapcast.xml -------------------------------------------------------------------------------- /res/drawable/pressed_background_cheapcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable/pressed_background_cheapcast.xml -------------------------------------------------------------------------------- /res/drawable/progress_horizontal_cheapcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable/progress_horizontal_cheapcast.xml -------------------------------------------------------------------------------- /res/drawable/selectable_background_cheapcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable/selectable_background_cheapcast.xml -------------------------------------------------------------------------------- /res/drawable/spinner_background_ab_cheapcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable/spinner_background_ab_cheapcast.xml -------------------------------------------------------------------------------- /res/drawable/tab_indicator_ab_cheapcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/drawable/tab_indicator_ab_cheapcast.xml -------------------------------------------------------------------------------- /res/layout-land/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/layout-land/activity_about.xml -------------------------------------------------------------------------------- /res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/layout/activity_about.xml -------------------------------------------------------------------------------- /res/layout/activity_cast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/layout/activity_cast.xml -------------------------------------------------------------------------------- /res/layout/activity_donate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/layout/activity_donate.xml -------------------------------------------------------------------------------- /res/layout/donations__fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/layout/donations__fragment.xml -------------------------------------------------------------------------------- /res/layout/donations__fragment_flattr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/layout/donations__fragment_flattr.xml -------------------------------------------------------------------------------- /res/layout/donations__fragment_paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/layout/donations__fragment_paypal.xml -------------------------------------------------------------------------------- /res/layout/fragment_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/layout/fragment_about.xml -------------------------------------------------------------------------------- /res/layout/fragment_html.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/layout/fragment_html.xml -------------------------------------------------------------------------------- /res/menu/preferences_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/menu/preferences_menu.xml -------------------------------------------------------------------------------- /res/menu/preferences_menu_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/menu/preferences_menu_start.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles_cheapcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values-v14/styles_cheapcast.xml -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /res/values/styles_cheapcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/values/styles_cheapcast.xml -------------------------------------------------------------------------------- /res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/res/xml/settings.xml -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/App.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/Const.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/Const.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/Installation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/Installation.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/Utils.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/activity/AboutActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/activity/AboutActivity.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/activity/CastActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/activity/CastActivity.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/activity/DonateActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/activity/DonateActivity.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/activity/PreferenceActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/activity/PreferenceActivity.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/App.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/ConnectionSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/ConnectionSocket.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/ReceiverSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/ReceiverSocket.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/SessionSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/SessionSocket.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/SystemControlSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/SystemControlSocket.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/AppRegistration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/AppRegistration.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/Command.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/ConnectionCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/ConnectionCommand.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/ConnectionResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/ConnectionResponse.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/ProtocolMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/ProtocolMessage.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/ProtocolPayload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/ProtocolPayload.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/ramp/RampMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/ramp/RampMessage.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/ramp/RampResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/ramp/RampResponse.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/ramp/RampVolume.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/ramp/RampVolume.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/chromecast/model/syscontrol/SetVolumeMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/chromecast/model/syscontrol/SetVolumeMessage.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/fragment/AboutFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/fragment/AboutFragment.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/fragment/ChangelogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/fragment/ChangelogFragment.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/fragment/DonationsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/fragment/DonationsFragment.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/fragment/ExtLibrariesFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/fragment/ExtLibrariesFragment.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/fragment/HtmlAssetFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/fragment/HtmlAssetFragment.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/json/deserializer/ProtocolMessageDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/json/deserializer/ProtocolMessageDeserializer.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/json/deserializer/RampMessageDeserializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/json/deserializer/RampMessageDeserializer.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/receiver/OnBootBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/receiver/OnBootBroadcastReceiver.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/receiver/ServiceControlReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/receiver/ServiceControlReceiver.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/service/CheapCastService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/service/CheapCastService.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/service/ICheapCastCallback.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/service/ICheapCastCallback.aidl -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/service/ICheapCastService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/service/ICheapCastService.aidl -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/ssdp/SSDP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/ssdp/SSDP.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/ws/HybiParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/ws/HybiParser.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/ws/WebSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/ws/WebSocket.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/ws/WebSocketClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/ws/WebSocketClient.java -------------------------------------------------------------------------------- /src/main/java/at/maui/cheapcast/ws/WebSocketFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mauimauer/cheapcast/HEAD/src/main/java/at/maui/cheapcast/ws/WebSocketFactory.java --------------------------------------------------------------------------------