├── HelloWorld_android ├── .gradle │ └── 2.10 │ │ └── taskArtifacts │ │ ├── cache.properties │ │ ├── cache.properties.lock │ │ ├── fileHashes.bin │ │ ├── fileSnapshots.bin │ │ ├── outputFileStates.bin │ │ └── taskArtifacts.bin ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── libraries │ │ ├── android_msf_api_2_0_16.xml │ │ ├── appcompat_v7_21_0_3.xml │ │ ├── mediarouter_v7_21_0_3.xml │ │ ├── support_annotations_21_0_3.xml │ │ └── support_v4_21_0_3.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml ├── HelloWorld_android.iml ├── README.md ├── app │ ├── app.iml │ ├── build.gradle │ ├── libs │ │ └── android-smartview-sdk-2.3.5.jar │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── samsung │ │ │ └── multiscreen │ │ │ └── msf20 │ │ │ ├── helloworld │ │ │ ├── ActionBarConnectIcon.java │ │ │ ├── App.java │ │ │ ├── ChannelListener.java │ │ │ ├── Config.java │ │ │ ├── HelloWorldWebApplicationHelper.java │ │ │ ├── MainActivity.java │ │ │ ├── SearchListener.java │ │ │ └── ServiceListAdapter.java │ │ │ └── sdk │ │ │ └── ServiceWrapper.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_action_refresh.png │ │ ├── ic_launcher.png │ │ └── smartview_sdk_icon.png │ │ ├── drawable-mdpi │ │ ├── ic_action_refresh.png │ │ ├── ic_launcher.png │ │ └── smartview_sdk_icon.png │ │ ├── drawable-xhdpi │ │ ├── ic_action_refresh.png │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ ├── ic_action_refresh.png │ │ ├── ic_launcher.png │ │ └── smartview_sdk_icon.png │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── media_route_icon.xml │ │ └── refresh.xml │ │ ├── menu │ │ └── main.xml │ │ ├── values-v11 │ │ └── styles.xml │ │ ├── values-v14 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── config.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── local.properties └── settings.gradle ├── HelloWorld_iOS ├── README.md ├── XCODE70 │ └── HelloWorld │ │ ├── HelloWorld.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ ├── AmitKhoth.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ ├── Rahul.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── aseem.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ ├── AmitKhoth.xcuserdatad │ │ │ ├── xcdebugger │ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ │ ├── PhotoShare.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ ├── Rahul.xcuserdatad │ │ │ ├── xcdebugger │ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ │ ├── HelloWorld.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── aseem.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── PhotoShare.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── HelloWorld │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── DeviceListController.swift │ │ ├── DeviceViewController.swift │ │ ├── HelloWorldController.swift │ │ ├── Images.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-2.png │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── TVData.swift │ │ ├── Images │ │ ├── cast_off.png │ │ ├── cast_off@2x.png │ │ ├── cast_on.png │ │ ├── cast_on0.png │ │ ├── cast_on0@2x.png │ │ ├── cast_on1.png │ │ ├── cast_on1@2x.png │ │ ├── cast_on2.png │ │ ├── cast_on2@2x.png │ │ └── cast_on@2x.png │ │ └── 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 └── XCODE80 │ ├── .DS_Store │ └── HelloWorld │ ├── .DS_Store │ ├── HelloWorld.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── AmitKhoth.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ ├── Rahul.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── aseem.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── AmitKhoth.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── PhotoShare.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── Rahul.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── HelloWorld.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── aseem.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── HelloWorld.xcscheme │ │ ├── PhotoShare.xcscheme │ │ └── xcschememanagement.plist │ ├── HelloWorld │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DeviceListController.swift │ ├── DeviceViewController.swift │ ├── HelloWorldController.swift │ ├── Images.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-2.png │ │ └── Contents.json │ ├── Info.plist │ ├── TVData.swift │ └── TVDataManager.swift │ ├── Images │ ├── cast_off.png │ ├── cast_off@2x.png │ ├── cast_on.png │ ├── cast_on0.png │ ├── cast_on0@2x.png │ ├── cast_on1.png │ ├── cast_on1@2x.png │ ├── cast_on2.png │ ├── cast_on2@2x.png │ └── cast_on@2x.png │ └── Podfile ├── HelloWorld_js_mobile_tv ├── .gitignore ├── .jshintrc ├── README.md ├── dist │ ├── mobile │ │ ├── images │ │ │ ├── Icon-40.png │ │ │ ├── Icon-40@2x.png │ │ │ ├── Icon-40@3x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ └── Icon-Small@3x.png │ │ ├── index.html │ │ ├── scripts │ │ │ └── main.js │ │ └── styles │ │ │ ├── mixins.less │ │ │ └── styles.less │ ├── tv │ │ ├── index.html │ │ ├── scripts │ │ │ └── main.js │ │ └── styles │ │ │ └── styles.less │ └── vendor │ │ ├── jquery.min.js │ │ ├── less.min.js │ │ └── msf.min.js ├── gulpfile.js └── package.json └── README.md /HelloWorld_android/.gradle/2.10/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon May 30 10:20:14 IST 2016 2 | -------------------------------------------------------------------------------- /HelloWorld_android/.gradle/2.10/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.gradle/2.10/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /HelloWorld_android/.gradle/2.10/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.gradle/2.10/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /HelloWorld_android/.gradle/2.10/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.gradle/2.10/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /HelloWorld_android/.gradle/2.10/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.gradle/2.10/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /HelloWorld_android/.gradle/2.10/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.gradle/2.10/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /HelloWorld_android/.idea/.name: -------------------------------------------------------------------------------- 1 | HelloWorld_android -------------------------------------------------------------------------------- /HelloWorld_android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/compiler.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/encodings.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/gradle.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/libraries/android_msf_api_2_0_16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/libraries/android_msf_api_2_0_16.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/libraries/appcompat_v7_21_0_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/libraries/appcompat_v7_21_0_3.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/libraries/mediarouter_v7_21_0_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/libraries/mediarouter_v7_21_0_3.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/libraries/support_annotations_21_0_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/libraries/support_annotations_21_0_3.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/libraries/support_v4_21_0_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/libraries/support_v4_21_0_3.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/misc.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/modules.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /HelloWorld_android/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/.idea/workspace.xml -------------------------------------------------------------------------------- /HelloWorld_android/HelloWorld_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/HelloWorld_android.iml -------------------------------------------------------------------------------- /HelloWorld_android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/README.md -------------------------------------------------------------------------------- /HelloWorld_android/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/app.iml -------------------------------------------------------------------------------- /HelloWorld_android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/build.gradle -------------------------------------------------------------------------------- /HelloWorld_android/app/libs/android-smartview-sdk-2.3.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/libs/android-smartview-sdk-2.3.5.jar -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/ActionBarConnectIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/ActionBarConnectIcon.java -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/App.java -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/ChannelListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/ChannelListener.java -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/Config.java -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/HelloWorldWebApplicationHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/HelloWorldWebApplicationHelper.java -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/MainActivity.java -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/SearchListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/SearchListener.java -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/ServiceListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/helloworld/ServiceListAdapter.java -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/sdk/ServiceWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/java/com/samsung/multiscreen/msf20/sdk/ServiceWrapper.java -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-hdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-hdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-hdpi/smartview_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-hdpi/smartview_sdk_icon.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-mdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-mdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-mdpi/smartview_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-mdpi/smartview_sdk_icon.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-xhdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-xhdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-xxhdpi/ic_action_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-xxhdpi/ic_action_refresh.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/drawable-xxhdpi/smartview_sdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/drawable-xxhdpi/smartview_sdk_icon.png -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/layout/media_route_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/layout/media_route_icon.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/layout/refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/layout/refresh.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/values-v14/styles.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/values/config.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /HelloWorld_android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /HelloWorld_android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/build.gradle -------------------------------------------------------------------------------- /HelloWorld_android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /HelloWorld_android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /HelloWorld_android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/gradlew -------------------------------------------------------------------------------- /HelloWorld_android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/gradlew.bat -------------------------------------------------------------------------------- /HelloWorld_android/import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/import-summary.txt -------------------------------------------------------------------------------- /HelloWorld_android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_android/local.properties -------------------------------------------------------------------------------- /HelloWorld_android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /HelloWorld_iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/README.md -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/AmitKhoth.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/AmitKhoth.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/Rahul.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/Rahul.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/aseem.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/aseem.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcschemes/PhotoShare.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcschemes/PhotoShare.xcscheme -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcschemes/HelloWorld.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcschemes/HelloWorld.xcscheme -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/PhotoShare.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/PhotoShare.xcscheme -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/AppDelegate.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/DeviceListController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/DeviceListController.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/DeviceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/DeviceViewController.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/HelloWorldController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/HelloWorldController.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_120-1.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_120.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_180.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_58.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_80.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_87-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_87-2.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/Info.plist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/TVData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/HelloWorld/TVData.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_off.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_off@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on0.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on0@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on1.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on1@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on2.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on2@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/Images/cast_on@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Headers/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Headers/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Headers/SmartView-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Headers/SmartView-Swift.h -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Headers/SmartView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Headers/SmartView.h -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Info.plist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/LICENSE -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/SmartView.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/SmartView: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/SmartView -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE70/HelloWorld/SmartView.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/.DS_Store -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/.DS_Store -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/AmitKhoth.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/AmitKhoth.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/Rahul.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/Rahul.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/aseem.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/project.xcworkspace/xcuserdata/aseem.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcschemes/PhotoShare.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcschemes/PhotoShare.xcscheme -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/AmitKhoth.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcschemes/HelloWorld.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcschemes/HelloWorld.xcscheme -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/Rahul.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/HelloWorld.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/HelloWorld.xcscheme -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/PhotoShare.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/PhotoShare.xcscheme -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld.xcodeproj/xcuserdata/aseem.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/AppDelegate.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/DeviceListController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/DeviceListController.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/DeviceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/DeviceViewController.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/HelloWorldController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/HelloWorldController.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_120-1.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_120.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_180.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_58.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_80.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_87-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/AppIcon.appiconset/smart view_sdk_icon_87-2.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/Info.plist -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/TVData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/TVData.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/TVDataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/HelloWorld/TVDataManager.swift -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_off.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_off@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on0.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on0@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on1.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on1@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on2.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on2@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Images/cast_on@2x.png -------------------------------------------------------------------------------- /HelloWorld_iOS/XCODE80/HelloWorld/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_iOS/XCODE80/HelloWorld/Podfile -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/.gitignore -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/.jshintrc -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/README.md -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-40.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-40@2x.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-40@3x.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-60@2x.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-60@3x.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-76.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-76@2x.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-Small.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-Small@2x.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/images/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/images/Icon-Small@3x.png -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/index.html -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/scripts/main.js -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/styles/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/styles/mixins.less -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/mobile/styles/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/mobile/styles/styles.less -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/tv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/tv/index.html -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/tv/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/tv/scripts/main.js -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/tv/styles/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/tv/styles/styles.less -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/vendor/jquery.min.js -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/vendor/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/vendor/less.min.js -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/dist/vendor/msf.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/dist/vendor/msf.min.js -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/gulpfile.js -------------------------------------------------------------------------------- /HelloWorld_js_mobile_tv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/HelloWorld_js_mobile_tv/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamsungDForum/SmartViewSDKHelloWorld/HEAD/README.md --------------------------------------------------------------------------------