├── README.md ├── SmartViewSDKCastVideo_Android ├── FastCast-Demo │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── assets │ │ └── data.json │ ├── ic_launcher-web.png │ ├── libs │ │ └── android-support-v4.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── smart_view_sdk_icon_512.png │ │ ├── drawable-xxhdpi │ │ │ ├── cast.png │ │ │ ├── cast_0.png │ │ │ ├── cast_1.png │ │ │ ├── cast_2.png │ │ │ ├── cast_disabled.png │ │ │ ├── ic_cast0_black_24dp.png │ │ │ ├── ic_cast0_blue_24dp.png │ │ │ ├── ic_cast0_white_24dp.png │ │ │ ├── ic_cast1_black_24dp.png │ │ │ ├── ic_cast1_blue_24dp.png │ │ │ ├── ic_cast1_white_24dp.png │ │ │ ├── ic_cast2_black_24dp.png │ │ │ ├── ic_cast2_blue_24dp.png │ │ │ ├── ic_cast2_white_24dp.png │ │ │ ├── ic_cast_black_24dp.png │ │ │ ├── ic_cast_blue_24dp.png │ │ │ ├── ic_cast_connected_black_24dp.png │ │ │ ├── ic_cast_connected_blue_24dp.png │ │ │ ├── ic_cast_connected_white_24dp.png │ │ │ ├── ic_cast_white_24dp.png │ │ │ ├── ic_launcher.png │ │ │ ├── minus.png │ │ │ ├── pause_b.png │ │ │ ├── pause_icon.png │ │ │ ├── play_b.png │ │ │ ├── playing_icon.png │ │ │ ├── plus.png │ │ │ ├── rewind_back_b.png │ │ │ ├── rewind_forward_b.png │ │ │ ├── speaker.png │ │ │ ├── stop_b.png │ │ │ ├── stop_icon.png │ │ │ ├── tv_icon.png │ │ │ ├── uncast.png │ │ │ └── volume.png │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable │ │ │ ├── cast_icon_connecting.xml │ │ │ └── cast_icon_connecting_dialog.xml │ │ ├── layout │ │ │ ├── activity_player.xml │ │ │ ├── devices_dialog_layout.xml │ │ │ ├── loading_layout.xml │ │ │ ├── local_player_layout.xml │ │ │ ├── multiscreen_bar_layout.xml │ │ │ ├── remote_player_layout.xml │ │ │ ├── tv_guide.xml │ │ │ └── video_element.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── samsung │ │ └── multiscreenplayer │ │ ├── PlayerActivity.java │ │ ├── adapter │ │ ├── ServiceAdapter.java │ │ └── VideoSourceAdapter.java │ │ ├── controller │ │ ├── AppController.java │ │ └── DeviceStorageManager.java │ │ ├── dialog │ │ └── DevicesDialogFragment.java │ │ ├── helper │ │ ├── DeviceStorageContract.java │ │ ├── DeviceStorageHelper.java │ │ ├── DialogHelper.java │ │ ├── IListener.java │ │ ├── IListener2.java │ │ ├── ThumbsDownloader.java │ │ └── VideoSourceRetriever.java │ │ ├── model │ │ ├── BaseCastDevice.java │ │ ├── GuideDevice.java │ │ ├── SmartViewDevice.java │ │ ├── StoredDevice.java │ │ └── VideoSource.java │ │ └── view │ │ ├── LoadingView.java │ │ ├── MultiScreenBar.java │ │ ├── RemotePlayerView.java │ │ └── VideoPlayer.java ├── FastCastDemo.apk ├── MultiScreenLib │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── doc │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── com │ │ │ └── samsung │ │ │ │ ├── fastcast │ │ │ │ ├── CastManager.html │ │ │ │ ├── OnDiscoveryListener.html │ │ │ │ ├── OnFCErrorListener.html │ │ │ │ ├── OnTVMessageListener.html │ │ │ │ ├── RemoteController.html │ │ │ │ ├── class-use │ │ │ │ │ ├── CastManager.html │ │ │ │ │ ├── OnDiscoveryListener.html │ │ │ │ │ ├── OnFCErrorListener.html │ │ │ │ │ ├── OnTVMessageListener.html │ │ │ │ │ └── RemoteController.html │ │ │ │ ├── exceptions │ │ │ │ │ ├── FCError.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ └── FCError.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── model │ │ │ │ │ ├── CastStates.html │ │ │ │ │ ├── ConnectData.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CastStates.html │ │ │ │ │ │ └── ConnectData.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── msgs │ │ │ │ │ ├── CustomEvent.html │ │ │ │ │ ├── ErrorMessage.html │ │ │ │ │ ├── KeydownMessage.html │ │ │ │ │ ├── MessageBase.html │ │ │ │ │ ├── MessageType.html │ │ │ │ │ ├── PlayMessage.html │ │ │ │ │ ├── RemoteStates.html │ │ │ │ │ ├── SeekMessage.html │ │ │ │ │ ├── SimpleTextMessage.html │ │ │ │ │ ├── StatusMessage.html │ │ │ │ │ ├── VolumeMessage.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CustomEvent.html │ │ │ │ │ │ ├── ErrorMessage.html │ │ │ │ │ │ ├── KeydownMessage.html │ │ │ │ │ │ ├── MessageBase.html │ │ │ │ │ │ ├── MessageType.html │ │ │ │ │ │ ├── PlayMessage.html │ │ │ │ │ │ ├── RemoteStates.html │ │ │ │ │ │ ├── SeekMessage.html │ │ │ │ │ │ ├── SimpleTextMessage.html │ │ │ │ │ │ ├── StatusMessage.html │ │ │ │ │ │ └── VolumeMessage.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ └── statemachine │ │ │ │ │ ├── StateChangeArgs.html │ │ │ │ │ ├── StateChangeDispatcher.html │ │ │ │ │ ├── StateChangeListener.html │ │ │ │ │ ├── StateChanger.html │ │ │ │ │ ├── StateMachine.html │ │ │ │ │ ├── class-use │ │ │ │ │ ├── StateChangeArgs.html │ │ │ │ │ ├── StateChangeDispatcher.html │ │ │ │ │ ├── StateChangeListener.html │ │ │ │ │ ├── StateChanger.html │ │ │ │ │ └── StateMachine.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── msf │ │ │ │ ├── mobilecontrol │ │ │ │ │ ├── PlayerActivity.html │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── ServiceAdapter.html │ │ │ │ │ │ ├── VideoSourceAdapter.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── ServiceAdapter.html │ │ │ │ │ │ │ └── VideoSourceAdapter.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ └── PlayerActivity.html │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── AppController.ViewsState.html │ │ │ │ │ │ ├── AppController.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── AppController.ViewsState.html │ │ │ │ │ │ │ └── AppController.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── helper │ │ │ │ │ │ ├── DialogHelper.html │ │ │ │ │ │ ├── IListener.html │ │ │ │ │ │ ├── IListener2.html │ │ │ │ │ │ ├── ThumbsDownloader.html │ │ │ │ │ │ ├── VideoSourceRetriever.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ ├── DialogHelper.html │ │ │ │ │ │ │ ├── IListener.html │ │ │ │ │ │ │ ├── IListener2.html │ │ │ │ │ │ │ ├── ThumbsDownloader.html │ │ │ │ │ │ │ └── VideoSourceRetriever.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── model │ │ │ │ │ │ ├── VideoSource.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ │ └── VideoSource.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ ├── package-use.html │ │ │ │ │ └── view │ │ │ │ │ │ ├── LoadingView.html │ │ │ │ │ │ ├── MultiScreenBar.html │ │ │ │ │ │ ├── RemotePlayerView.PlayerCastAction.html │ │ │ │ │ │ ├── RemotePlayerView.html │ │ │ │ │ │ ├── VideoPlayer.html │ │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── LoadingView.html │ │ │ │ │ │ ├── MultiScreenBar.html │ │ │ │ │ │ ├── RemotePlayerView.PlayerCastAction.html │ │ │ │ │ │ ├── RemotePlayerView.html │ │ │ │ │ │ └── VideoPlayer.html │ │ │ │ │ │ ├── package-frame.html │ │ │ │ │ │ ├── package-summary.html │ │ │ │ │ │ ├── package-tree.html │ │ │ │ │ │ └── package-use.html │ │ │ │ └── scenario4 │ │ │ │ │ ├── BuildConfig.html │ │ │ │ │ ├── R.attr.html │ │ │ │ │ ├── R.dimen.html │ │ │ │ │ ├── R.drawable.html │ │ │ │ │ ├── R.html │ │ │ │ │ ├── R.id.html │ │ │ │ │ ├── R.layout.html │ │ │ │ │ ├── R.menu.html │ │ │ │ │ ├── R.string.html │ │ │ │ │ ├── R.style.html │ │ │ │ │ ├── class-use │ │ │ │ │ ├── BuildConfig.html │ │ │ │ │ ├── R.attr.html │ │ │ │ │ ├── R.dimen.html │ │ │ │ │ ├── R.drawable.html │ │ │ │ │ ├── R.html │ │ │ │ │ ├── R.id.html │ │ │ │ │ ├── R.layout.html │ │ │ │ │ ├── R.menu.html │ │ │ │ │ ├── R.string.html │ │ │ │ │ └── R.style.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── msflib │ │ │ │ ├── CastManager.html │ │ │ │ ├── OnDiscoveryListener.html │ │ │ │ ├── OnMSFLibErrorListener.html │ │ │ │ ├── OnTVMessageListener.html │ │ │ │ ├── RemoteController.html │ │ │ │ ├── class-use │ │ │ │ │ ├── CastManager.html │ │ │ │ │ ├── OnDiscoveryListener.html │ │ │ │ │ ├── OnMSFLibErrorListener.html │ │ │ │ │ ├── OnTVMessageListener.html │ │ │ │ │ └── RemoteController.html │ │ │ │ ├── exceptions │ │ │ │ │ ├── MSFLibError.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ └── MSFLibError.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── model │ │ │ │ │ ├── CastStates.html │ │ │ │ │ ├── ConnectData.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CastStates.html │ │ │ │ │ │ └── ConnectData.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── msgs │ │ │ │ │ ├── CustomEvent.html │ │ │ │ │ ├── ErrorMessage.html │ │ │ │ │ ├── KeydownMessage.html │ │ │ │ │ ├── MessageBase.html │ │ │ │ │ ├── MessageType.html │ │ │ │ │ ├── PlayMessage.html │ │ │ │ │ ├── RemoteStates.html │ │ │ │ │ ├── SeekMessage.html │ │ │ │ │ ├── SimpleTextMessage.html │ │ │ │ │ ├── StatusMessage.html │ │ │ │ │ ├── VolumeMessage.html │ │ │ │ │ ├── class-use │ │ │ │ │ │ ├── CustomEvent.html │ │ │ │ │ │ ├── ErrorMessage.html │ │ │ │ │ │ ├── KeydownMessage.html │ │ │ │ │ │ ├── MessageBase.html │ │ │ │ │ │ ├── MessageType.html │ │ │ │ │ │ ├── PlayMessage.html │ │ │ │ │ │ ├── RemoteStates.html │ │ │ │ │ │ ├── SeekMessage.html │ │ │ │ │ │ ├── SimpleTextMessage.html │ │ │ │ │ │ ├── StatusMessage.html │ │ │ │ │ │ └── VolumeMessage.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ ├── package-use.html │ │ │ │ └── statemachine │ │ │ │ │ ├── StateChangeArgs.html │ │ │ │ │ ├── StateChangeDispatcher.html │ │ │ │ │ ├── StateChangeListener.html │ │ │ │ │ ├── StateChanger.html │ │ │ │ │ ├── StateMachine.html │ │ │ │ │ ├── class-use │ │ │ │ │ ├── StateChangeArgs.html │ │ │ │ │ ├── StateChangeDispatcher.html │ │ │ │ │ ├── StateChangeListener.html │ │ │ │ │ ├── StateChanger.html │ │ │ │ │ └── StateMachine.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ ├── package-tree.html │ │ │ │ │ └── package-use.html │ │ │ │ └── multiscreenlib │ │ │ │ ├── BuildConfig.html │ │ │ │ ├── R.attr.html │ │ │ │ ├── R.drawable.html │ │ │ │ ├── R.html │ │ │ │ ├── R.string.html │ │ │ │ ├── R.style.html │ │ │ │ ├── class-use │ │ │ │ ├── BuildConfig.html │ │ │ │ ├── R.attr.html │ │ │ │ ├── R.drawable.html │ │ │ │ ├── R.html │ │ │ │ ├── R.string.html │ │ │ │ └── R.style.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-files │ │ │ ├── index-1.html │ │ │ ├── index-10.html │ │ │ ├── index-11.html │ │ │ ├── index-12.html │ │ │ ├── index-13.html │ │ │ ├── index-14.html │ │ │ ├── index-15.html │ │ │ ├── index-16.html │ │ │ ├── index-17.html │ │ │ ├── index-18.html │ │ │ ├── index-19.html │ │ │ ├── index-2.html │ │ │ ├── index-20.html │ │ │ ├── index-21.html │ │ │ ├── index-22.html │ │ │ ├── index-3.html │ │ │ ├── index-4.html │ │ │ ├── index-5.html │ │ │ ├── index-6.html │ │ │ ├── index-7.html │ │ │ ├── index-8.html │ │ │ └── index-9.html │ │ ├── index.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── script.js │ │ └── stylesheet.css │ ├── libs │ │ └── android-smartview-sdk-2.3.7.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── samsung │ │ └── fastcast │ │ ├── CastManager.java │ │ ├── CustomMessageListener.java │ │ ├── MessageListener.java │ │ ├── OnBLEDiscoveryListener.java │ │ ├── OnDiscoveryListener.java │ │ ├── OnFCErrorListener.java │ │ ├── OnInternalMessageListener.java │ │ ├── OnTVMessageListener.java │ │ ├── RemoteController.java │ │ ├── SimpleCallback.java │ │ ├── exceptions │ │ └── FCError.java │ │ ├── model │ │ ├── CastStates.java │ │ └── ConnectData.java │ │ ├── msgs │ │ ├── CustomEvent.java │ │ ├── ErrorMessage.java │ │ ├── KeydownMessage.java │ │ ├── MessageBase.java │ │ ├── MessageType.java │ │ ├── PlayMessage.java │ │ ├── RemoteStates.java │ │ ├── SeekMessage.java │ │ ├── SimpleTextMessage.java │ │ ├── StatusMessage.java │ │ └── VolumeMessage.java │ │ └── statemachine │ │ ├── StateChangeArgs.java │ │ ├── StateChangeDispatcher.java │ │ ├── StateChangeListener.java │ │ ├── StateChanger.java │ │ └── StateMachine.java └── README.md ├── SmartViewSDKCastVideo_ScreenShot ├── SmartViewSDK_VideoCast01.png ├── SmartViewSDK_VideoCast02.png ├── SmartViewSDK_VideoCast03.png ├── SmartViewSDK_VideoCast04.png ├── SmartViewSDK_VideoCast05.png ├── SmartViewSDK_VideoCast06.png ├── SmartViewSDK_VideoCast07.png ├── SmartViewSDK_VideoCast08.png ├── SmartViewSDK_VideoCast09.png ├── SmartViewSDK_VideoCast10.png ├── SmartViewSDK_VideoCast11.png ├── SmartViewSDK_VideoCast12.png ├── SmartViewSDK_VideoCast13.png ├── SmartViewSDK_VideoCast14.png ├── SmartViewSDK_VideoCast15.png ├── SmartViewSDK_VideoCast16.png ├── SmartViewSDK_VideoCast17.png └── SmartViewSDK_VideoCast18.png ├── SmartViewSDKCastVideo_WebApp_TV ├── README.md └── SmartViewSDKCastVideo │ ├── YcKEdWMZve.SmartViewSDKCastVideo.wgt │ ├── config.xml │ ├── css │ ├── font-awesome.min.css │ ├── materialize.css │ ├── materialize.min.css │ └── style.css │ ├── data.json │ ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ └── roboto │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-Thin.woff │ │ └── Roboto-Thin.woff2 │ ├── images │ ├── icon.png │ └── lightblue_empty_grid.svg │ ├── index.html │ ├── js │ ├── bishop.js │ ├── fastcast.js │ ├── main.js │ ├── materialize.min.js │ ├── timeouter.js │ ├── videoList.js │ ├── videoPlayer.js │ └── volumeControl.js │ └── libs │ ├── jquery.min.js │ ├── msf-2.3.3.min.js │ └── webapis.js └── SmartViewSDKCastVideo_iOS ├── README.md ├── XCODE70 └── MultiScreenPlayer │ ├── MultiScreenPlayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── ryu_mac_love.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── ryu_mac_love.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── MultiScreenPlayer.xcscheme │ │ └── xcschememanagement.plist │ └── MultiScreenPlayer │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── smart view_sdk_icon_120-1.png │ │ ├── smart view_sdk_icon_120.png │ │ ├── smart view_sdk_icon_180.png │ │ ├── smart view_sdk_icon_58.png │ │ ├── smart view_sdk_icon_80.png │ │ └── smart view_sdk_icon_87.png │ ├── Contents.json │ ├── cast.imageset │ │ ├── Contents.json │ │ └── cast.png │ ├── castIconAni │ │ ├── Contents.json │ │ ├── cast_0.imageset │ │ │ ├── Contents.json │ │ │ └── cast_0.png │ │ ├── cast_1.imageset │ │ │ ├── Contents.json │ │ │ └── cast_1.png │ │ └── cast_2.imageset │ │ │ ├── Contents.json │ │ │ └── cast_2.png │ ├── ic_cast_blue_24dp.imageset │ │ ├── Contents.json │ │ └── ic_cast_blue_24dp.png │ ├── minus.imageset │ │ ├── Contents.json │ │ └── minus.png │ ├── pause_b.imageset │ │ ├── Contents.json │ │ └── pause_b.png │ ├── pause_icon.imageset │ │ ├── Contents.json │ │ └── pause_icon.png │ ├── play_b.imageset │ │ ├── Contents.json │ │ └── play_b.png │ ├── playing_icon.imageset │ │ ├── Contents.json │ │ └── playing_icon.png │ ├── plus.imageset │ │ ├── Contents.json │ │ └── plus.png │ ├── rewind_back_b.imageset │ │ ├── Contents.json │ │ └── rewind_back_b.png │ ├── rewind_forward_b.imageset │ │ ├── Contents.json │ │ └── rewind_forward_b.png │ ├── speaker.imageset │ │ ├── Contents.json │ │ └── speaker.png │ ├── stop_b.imageset │ │ ├── Contents.json │ │ └── stop_b.png │ ├── stop_icon.imageset │ │ ├── Contents.json │ │ └── stop_icon.png │ ├── tv_icon.imageset │ │ ├── Contents.json │ │ └── tv_icon.png │ ├── uncast.imageset │ │ ├── Contents.json │ │ └── uncast.png │ └── volume.imageset │ │ ├── Contents.json │ │ └── volume.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Class │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ContentTableViewCell.h │ ├── ContentTableViewCell.m │ ├── DataManager.h │ ├── DataManager.m │ ├── TvSelectViewViewController.h │ ├── TvSelectViewViewController.m │ ├── Util.h │ ├── Util.m │ ├── ViewController.h │ └── ViewController.m │ ├── Info.plist │ ├── lib │ └── iphoneos+iphonesimulator │ │ └── SmartView.framework │ │ ├── Headers │ │ ├── GCDAsyncUdpSocket.h │ │ ├── SmartView-Swift.h │ │ └── SmartView.h │ │ ├── Info.plist │ │ ├── LICENSE │ │ ├── Modules │ │ ├── SmartView.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── arm64.swiftdoc │ │ │ ├── arm64.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ ├── i386.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ │ ├── SmartView │ │ └── _CodeSignature │ │ └── CodeResources │ ├── main.m │ └── resource │ └── data.json └── XCODE80 └── MultiScreenPlayer ├── .DS_Store ├── MultiScreenPlayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── Rahul.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── aseem.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── chiragbaheti.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── ryu_mac_love.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Rahul.xcuserdatad │ └── xcschemes │ │ ├── MultiScreenPlayer.xcscheme │ │ └── xcschememanagement.plist │ ├── aseem.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── MultiScreenPlayer.xcscheme │ │ └── xcschememanagement.plist │ ├── chiragbaheti.xcuserdatad │ └── xcschemes │ │ ├── MultiScreenPlayer.xcscheme │ │ └── xcschememanagement.plist │ └── ryu_mac_love.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── MultiScreenPlayer.xcscheme │ └── xcschememanagement.plist ├── MultiScreenPlayer ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── smart view_sdk_icon_120-1.png │ │ ├── smart view_sdk_icon_120.png │ │ ├── smart view_sdk_icon_180.png │ │ ├── smart view_sdk_icon_58.png │ │ ├── smart view_sdk_icon_80.png │ │ └── smart view_sdk_icon_87.png │ ├── Contents.json │ ├── cast.imageset │ │ ├── Contents.json │ │ └── cast.png │ ├── castIconAni │ │ ├── Contents.json │ │ ├── cast_0.imageset │ │ │ ├── Contents.json │ │ │ └── cast_0.png │ │ ├── cast_1.imageset │ │ │ ├── Contents.json │ │ │ └── cast_1.png │ │ └── cast_2.imageset │ │ │ ├── Contents.json │ │ │ └── cast_2.png │ ├── ic_cast_blue_24dp.imageset │ │ ├── Contents.json │ │ └── ic_cast_blue_24dp.png │ ├── minus.imageset │ │ ├── Contents.json │ │ └── minus.png │ ├── pause_b.imageset │ │ ├── Contents.json │ │ └── pause_b.png │ ├── pause_icon.imageset │ │ ├── Contents.json │ │ └── pause_icon.png │ ├── play_b.imageset │ │ ├── Contents.json │ │ └── play_b.png │ ├── playing_icon.imageset │ │ ├── Contents.json │ │ └── playing_icon.png │ ├── plus.imageset │ │ ├── Contents.json │ │ └── plus.png │ ├── rewind_back_b.imageset │ │ ├── Contents.json │ │ └── rewind_back_b.png │ ├── rewind_forward_b.imageset │ │ ├── Contents.json │ │ └── rewind_forward_b.png │ ├── speaker.imageset │ │ ├── Contents.json │ │ └── speaker.png │ ├── stop_b.imageset │ │ ├── Contents.json │ │ └── stop_b.png │ ├── stop_icon.imageset │ │ ├── Contents.json │ │ └── stop_icon.png │ ├── tv_icon.imageset │ │ ├── Contents.json │ │ └── tv_icon.png │ ├── uncast.imageset │ │ ├── Contents.json │ │ └── uncast.png │ └── volume.imageset │ │ ├── Contents.json │ │ └── volume.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Class │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ContentTableViewCell.h │ ├── ContentTableViewCell.m │ ├── DataManager.h │ ├── DataManager.m │ ├── TvSelectViewViewController.h │ ├── TvSelectViewViewController.m │ ├── Util.h │ ├── Util.m │ ├── ViewController.h │ └── ViewController.m ├── Info.plist ├── main.m └── resource │ └── data.json └── SmartView.framework ├── .DS_Store ├── Headers ├── GCDAsyncUdpSocket.h ├── SmartView-Swift.h └── SmartView.h ├── Info.plist ├── LICENSE ├── Modules ├── .DS_Store ├── SmartView.swiftmodule │ ├── arm.swiftdoc │ ├── arm.swiftmodule │ ├── arm64.swiftdoc │ ├── arm64.swiftmodule │ ├── i386.swiftdoc │ ├── i386.swiftmodule │ ├── x86_64.swiftdoc │ └── x86_64.swiftmodule └── module.modulemap ├── SmartView └── ca_crt.cer /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/README.md -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/.classpath -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/.project -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/AndroidManifest.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/assets/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/assets/data.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/ic_launcher-web.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/proguard-project.txt -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/project.properties -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xhdpi/smart_view_sdk_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xhdpi/smart_view_sdk_icon_512.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast_0.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast_1.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast_2.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/cast_disabled.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast0_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast0_black_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast0_blue_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast0_blue_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast0_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast0_white_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast1_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast1_black_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast1_blue_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast1_blue_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast1_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast1_white_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast2_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast2_black_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast2_blue_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast2_blue_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast2_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast2_white_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_black_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_blue_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_blue_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_connected_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_connected_black_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_connected_blue_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_connected_blue_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_connected_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_connected_white_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_cast_white_24dp.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/minus.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/pause_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/pause_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/pause_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/pause_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/play_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/play_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/playing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/playing_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/plus.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/rewind_back_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/rewind_back_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/rewind_forward_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/rewind_forward_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/speaker.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/stop_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/stop_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/stop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/stop_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/tv_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/tv_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/uncast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/uncast.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxhdpi/volume.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable/cast_icon_connecting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable/cast_icon_connecting.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable/cast_icon_connecting_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/drawable/cast_icon_connecting_dialog.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/activity_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/activity_player.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/devices_dialog_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/devices_dialog_layout.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/loading_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/loading_layout.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/local_player_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/local_player_layout.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/multiscreen_bar_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/multiscreen_bar_layout.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/remote_player_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/remote_player_layout.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/tv_guide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/tv_guide.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/video_element.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/layout/video_element.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/values-v11/styles.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/values-v14/styles.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/values/dimens.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/values/strings.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/res/values/styles.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/PlayerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/PlayerActivity.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/adapter/ServiceAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/adapter/ServiceAdapter.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/adapter/VideoSourceAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/adapter/VideoSourceAdapter.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/controller/AppController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/controller/AppController.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/controller/DeviceStorageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/controller/DeviceStorageManager.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/dialog/DevicesDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/dialog/DevicesDialogFragment.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/DeviceStorageContract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/DeviceStorageContract.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/DeviceStorageHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/DeviceStorageHelper.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/DialogHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/DialogHelper.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/IListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/IListener.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/IListener2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/IListener2.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/ThumbsDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/ThumbsDownloader.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/VideoSourceRetriever.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/helper/VideoSourceRetriever.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/BaseCastDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/BaseCastDevice.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/GuideDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/GuideDevice.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/SmartViewDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/SmartViewDevice.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/StoredDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/StoredDevice.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/VideoSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/model/VideoSource.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/view/LoadingView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/view/LoadingView.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/view/MultiScreenBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/view/MultiScreenBar.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/view/RemotePlayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/view/RemotePlayerView.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/view/VideoPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCast-Demo/src/com/samsung/multiscreenplayer/view/VideoPlayer.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/FastCastDemo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/FastCastDemo.apk -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/.classpath -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/.project -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/AndroidManifest.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/allclasses-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/allclasses-noframe.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/CastManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/CastManager.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/OnDiscoveryListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/OnDiscoveryListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/OnFCErrorListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/OnFCErrorListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/OnTVMessageListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/OnTVMessageListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/RemoteController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/RemoteController.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/CastManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/CastManager.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/OnDiscoveryListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/OnDiscoveryListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/OnFCErrorListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/OnFCErrorListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/OnTVMessageListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/OnTVMessageListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/RemoteController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/class-use/RemoteController.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/FCError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/FCError.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/class-use/FCError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/class-use/FCError.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/exceptions/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/CastStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/CastStates.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/ConnectData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/ConnectData.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/class-use/CastStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/class-use/CastStates.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/class-use/ConnectData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/class-use/ConnectData.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/model/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/CustomEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/CustomEvent.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/ErrorMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/ErrorMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/KeydownMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/KeydownMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/MessageBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/MessageBase.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/MessageType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/MessageType.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/PlayMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/PlayMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/RemoteStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/RemoteStates.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/SeekMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/SeekMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/SimpleTextMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/SimpleTextMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/StatusMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/StatusMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/VolumeMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/VolumeMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/CustomEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/CustomEvent.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/ErrorMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/ErrorMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/KeydownMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/KeydownMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/MessageBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/MessageBase.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/MessageType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/MessageType.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/PlayMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/PlayMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/RemoteStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/RemoteStates.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/SeekMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/SeekMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/SimpleTextMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/SimpleTextMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/StatusMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/StatusMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/VolumeMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/class-use/VolumeMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/msgs/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateChangeArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateChangeArgs.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateChangeDispatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateChangeDispatcher.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateChangeListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateChangeListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateChanger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateChanger.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateMachine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/StateMachine.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateChangeArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateChangeArgs.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateChangeDispatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateChangeDispatcher.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateChangeListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateChangeListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateChanger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateChanger.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateMachine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/class-use/StateMachine.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/fastcast/statemachine/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/PlayerActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/PlayerActivity.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/ServiceAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/ServiceAdapter.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/VideoSourceAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/VideoSourceAdapter.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/class-use/ServiceAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/class-use/ServiceAdapter.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/class-use/VideoSourceAdapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/class-use/VideoSourceAdapter.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/adapter/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/class-use/PlayerActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/class-use/PlayerActivity.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/AppController.ViewsState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/AppController.ViewsState.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/AppController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/AppController.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/class-use/AppController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/class-use/AppController.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/controller/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/DialogHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/DialogHelper.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/IListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/IListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/IListener2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/IListener2.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/ThumbsDownloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/ThumbsDownloader.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/VideoSourceRetriever.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/VideoSourceRetriever.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/DialogHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/DialogHelper.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/IListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/IListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/IListener2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/IListener2.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/ThumbsDownloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/ThumbsDownloader.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/VideoSourceRetriever.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/class-use/VideoSourceRetriever.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/helper/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/VideoSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/VideoSource.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/class-use/VideoSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/class-use/VideoSource.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/model/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/LoadingView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/LoadingView.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/MultiScreenBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/MultiScreenBar.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/RemotePlayerView.PlayerCastAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/RemotePlayerView.PlayerCastAction.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/RemotePlayerView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/RemotePlayerView.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/VideoPlayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/VideoPlayer.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/class-use/LoadingView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/class-use/LoadingView.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/class-use/MultiScreenBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/class-use/MultiScreenBar.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/class-use/RemotePlayerView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/class-use/RemotePlayerView.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/class-use/VideoPlayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/class-use/VideoPlayer.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/mobilecontrol/view/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/BuildConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/BuildConfig.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.attr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.attr.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.dimen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.dimen.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.drawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.drawable.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.id.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.layout.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.menu.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.string.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/R.style.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/BuildConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/BuildConfig.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.attr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.attr.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.dimen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.dimen.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.drawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.drawable.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.id.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.layout.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.menu.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.string.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/class-use/R.style.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msf/scenario4/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/CastManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/CastManager.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/OnDiscoveryListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/OnDiscoveryListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/OnMSFLibErrorListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/OnMSFLibErrorListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/OnTVMessageListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/OnTVMessageListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/RemoteController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/RemoteController.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/CastManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/CastManager.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/OnDiscoveryListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/OnDiscoveryListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/OnMSFLibErrorListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/OnMSFLibErrorListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/OnTVMessageListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/OnTVMessageListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/RemoteController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/class-use/RemoteController.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/MSFLibError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/MSFLibError.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/class-use/MSFLibError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/class-use/MSFLibError.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/exceptions/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/CastStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/CastStates.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/ConnectData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/ConnectData.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/class-use/CastStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/class-use/CastStates.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/class-use/ConnectData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/class-use/ConnectData.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/model/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/CustomEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/CustomEvent.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/ErrorMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/ErrorMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/KeydownMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/KeydownMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/MessageBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/MessageBase.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/MessageType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/MessageType.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/PlayMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/PlayMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/RemoteStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/RemoteStates.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/SeekMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/SeekMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/SimpleTextMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/SimpleTextMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/StatusMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/StatusMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/VolumeMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/VolumeMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/CustomEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/CustomEvent.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/ErrorMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/ErrorMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/KeydownMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/KeydownMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/MessageBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/MessageBase.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/MessageType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/MessageType.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/PlayMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/PlayMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/RemoteStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/RemoteStates.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/SeekMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/SeekMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/SimpleTextMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/SimpleTextMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/StatusMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/StatusMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/VolumeMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/class-use/VolumeMessage.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/msgs/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateChangeArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateChangeArgs.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateChangeDispatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateChangeDispatcher.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateChangeListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateChangeListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateChanger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateChanger.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateMachine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/StateMachine.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateChangeArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateChangeArgs.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateChangeDispatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateChangeDispatcher.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateChangeListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateChangeListener.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateChanger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateChanger.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateMachine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/class-use/StateMachine.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/msflib/statemachine/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/BuildConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/BuildConfig.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.attr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.attr.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.drawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.drawable.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.string.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/R.style.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/BuildConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/BuildConfig.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.attr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.attr.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.drawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.drawable.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.string.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/class-use/R.style.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/package-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/package-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/package-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/com/samsung/multiscreenlib/package-use.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/constant-values.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/deprecated-list.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/help-doc.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-1.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-10.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-11.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-12.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-13.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-14.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-15.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-16.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-17.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-18.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-19.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-2.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-20.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-21.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-22.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-3.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-4.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-5.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-6.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-7.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-8.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index-files/index-9.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/index.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/overview-frame.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/overview-summary.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/overview-tree.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/package-list -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/script.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/doc/stylesheet.css -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/libs/android-smartview-sdk-2.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/libs/android-smartview-sdk-2.3.7.jar -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/proguard-project.txt -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/project.properties -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/res/values-v11/styles.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/res/values-v14/styles.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/res/values/strings.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/res/values/styles.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/CastManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/CastManager.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/CustomMessageListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/CustomMessageListener.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/MessageListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/MessageListener.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnBLEDiscoveryListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnBLEDiscoveryListener.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnDiscoveryListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnDiscoveryListener.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnFCErrorListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnFCErrorListener.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnInternalMessageListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnInternalMessageListener.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnTVMessageListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/OnTVMessageListener.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/RemoteController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/RemoteController.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/SimpleCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/SimpleCallback.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/exceptions/FCError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/exceptions/FCError.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/model/CastStates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/model/CastStates.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/model/ConnectData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/model/ConnectData.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/CustomEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/CustomEvent.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/ErrorMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/ErrorMessage.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/KeydownMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/KeydownMessage.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/MessageBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/MessageBase.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/MessageType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/MessageType.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/PlayMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/PlayMessage.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/RemoteStates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/RemoteStates.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/SeekMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/SeekMessage.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/SimpleTextMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/SimpleTextMessage.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/StatusMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/StatusMessage.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/VolumeMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/msgs/VolumeMessage.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateChangeArgs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateChangeArgs.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateChangeDispatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateChangeDispatcher.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateChangeListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateChangeListener.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateChanger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateChanger.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateMachine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/MultiScreenLib/src/com/samsung/fastcast/statemachine/StateMachine.java -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_Android/README.md -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast01.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast02.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast03.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast04.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast05.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast06.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast07.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast08.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast09.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast10.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast11.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast12.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast13.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast14.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast15.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast16.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast17.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_ScreenShot/SmartViewSDK_VideoCast18.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/README.md -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/YcKEdWMZve.SmartViewSDKCastVideo.wgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/YcKEdWMZve.SmartViewSDKCastVideo.wgt -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/config.xml -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/css/font-awesome.min.css -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/css/materialize.css -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/css/materialize.min.css -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/css/style.css -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/data.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/images/icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/images/lightblue_empty_grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/images/lightblue_empty_grid.svg -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/index.html -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/bishop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/bishop.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/fastcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/fastcast.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/main.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/materialize.min.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/timeouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/timeouter.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/videoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/videoList.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/videoPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/videoPlayer.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/volumeControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/js/volumeControl.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/libs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/libs/jquery.min.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/libs/msf-2.3.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/libs/msf-2.3.3.min.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/libs/webapis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_WebApp_TV/SmartViewSDKCastVideo/libs/webapis.js -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/README.md -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/cast.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/cast.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/cast.imageset/cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/cast.imageset/cast.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/cast_0.imageset/cast_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/cast_0.imageset/cast_0.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/cast_1.imageset/cast_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/cast_1.imageset/cast_1.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/cast_2.imageset/cast_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/cast_2.imageset/cast_2.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/ic_cast_blue_24dp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/ic_cast_blue_24dp.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/minus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/minus.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/minus.imageset/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/minus.imageset/minus.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_b.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_b.imageset/pause_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_b.imageset/pause_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_icon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_icon.imageset/pause_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_icon.imageset/pause_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/play_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/play_b.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/play_b.imageset/play_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/play_b.imageset/play_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/playing_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/playing_icon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/playing_icon.imageset/playing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/playing_icon.imageset/playing_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/plus.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/plus.imageset/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/plus.imageset/plus.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/rewind_back_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/rewind_back_b.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/rewind_back_b.imageset/rewind_back_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/rewind_back_b.imageset/rewind_back_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/rewind_forward_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/rewind_forward_b.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/speaker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/speaker.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/speaker.imageset/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/speaker.imageset/speaker.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_b.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_b.imageset/stop_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_b.imageset/stop_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_icon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_icon.imageset/stop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_icon.imageset/stop_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/tv_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/tv_icon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/tv_icon.imageset/tv_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/tv_icon.imageset/tv_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/uncast.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/uncast.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/uncast.imageset/uncast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/uncast.imageset/uncast.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/volume.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/volume.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/volume.imageset/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/volume.imageset/volume.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/AppDelegate.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/AppDelegate.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/ContentTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/ContentTableViewCell.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/ContentTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/ContentTableViewCell.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/DataManager.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/DataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/DataManager.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/TvSelectViewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/TvSelectViewViewController.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/TvSelectViewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/TvSelectViewViewController.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/Util.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/Util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/Util.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/ViewController.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Class/ViewController.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/Info.plist -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/lib/iphoneos+iphonesimulator/SmartView.framework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/lib/iphoneos+iphonesimulator/SmartView.framework/LICENSE -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/main.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/resource/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE70/MultiScreenPlayer/MultiScreenPlayer/resource/data.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/.DS_Store -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/cast.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/cast.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/cast.imageset/cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/cast.imageset/cast.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/cast_0.imageset/cast_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/castIconAni/cast_0.imageset/cast_0.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/minus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/minus.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/minus.imageset/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/minus.imageset/minus.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_b.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_b.imageset/pause_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_b.imageset/pause_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_icon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_icon.imageset/pause_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/pause_icon.imageset/pause_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/play_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/play_b.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/play_b.imageset/play_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/play_b.imageset/play_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/playing_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/playing_icon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/plus.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/plus.imageset/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/plus.imageset/plus.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/rewind_back_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/rewind_back_b.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/speaker.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/speaker.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/speaker.imageset/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/speaker.imageset/speaker.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_b.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_b.imageset/stop_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_b.imageset/stop_b.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_icon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_icon.imageset/stop_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/stop_icon.imageset/stop_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/tv_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/tv_icon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/tv_icon.imageset/tv_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/tv_icon.imageset/tv_icon.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/uncast.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/uncast.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/uncast.imageset/uncast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/uncast.imageset/uncast.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/volume.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/volume.imageset/Contents.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/volume.imageset/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Assets.xcassets/volume.imageset/volume.png -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/AppDelegate.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/AppDelegate.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/ContentTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/ContentTableViewCell.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/ContentTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/ContentTableViewCell.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/DataManager.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/DataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/DataManager.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/TvSelectViewViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/TvSelectViewViewController.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/TvSelectViewViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/TvSelectViewViewController.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/Util.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/Util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/Util.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/ViewController.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Class/ViewController.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/Info.plist -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/main.m -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/resource/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/MultiScreenPlayer/resource/data.json -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/.DS_Store -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Headers/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Headers/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Headers/SmartView-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Headers/SmartView-Swift.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Headers/SmartView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Headers/SmartView.h -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Info.plist -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/LICENSE -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/.DS_Store -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/SmartView.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/SmartView: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/SmartView -------------------------------------------------------------------------------- /SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/ca_crt.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKCastVideo/HEAD/SmartViewSDKCastVideo_iOS/XCODE80/MultiScreenPlayer/SmartView.framework/ca_crt.cer --------------------------------------------------------------------------------