#Connect SDK Android Connect SDK is an open source framework that unifies device discovery and connectivity by providing one set of methods that work across multiple television platforms and protocols.
For more information, visit our website.
##Dependencies This project has the following dependencies.
- Java-WebSocket library
- Android Support v7 Libraries
- appcompat
- mediarouter
- Google Play Services
##Including Connect SDK in your app
- Setup up your dependencies, listed above
- Clone Connect-SDK-Android project (or download & unzip)
- Open Eclipse
- Click File > Import
- Select
Existing Android Code Into Workspace
and click Next - Browse to the Connect-SDK-Android project folder and click Open
- Click Finish
- Right-click the Connect-SDK-Android project and select Properties
- In the Library pane of the Android tab, add the following library references
- android-support-v7-appcompat
- android-support-v7-mediarouter
- google-play-services_lib
- You must update these libraries to API 10 in their manifest.
- Click OK
- Right-click your project and select Properties
- In the Library pane of the Android tab, add the Connect-SDK-Android project
- Set up your manifest file as per the instructions below
###Permissions to include in manifest
- Required for SSDP & Chromecast/Zeroconf discovery
android.permission.CHANGE_WIFI_MULTICAST_STATE
- Required for interacting with devices
android.permission.ACCESS_NETWORK_STATE
android.permission.ACCESS_WIFI_STATE
- Required for storing device pairing information
android.permission.WRITE_EXTERNAL_STORAGE
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
###Metadata for application tag This metadata tag is necessary to enable Chromecast support.
<application ... >
...
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</application>
##Contact
- Twitter @ConnectSDK
- Ask a question with the "tv" tag on Stack Overflow
- General Inquiries info@connectsdk.com
- Developer Support support@connectsdk.com
- Partnerships partners@connectsdk.com
##Credits Connect SDK for Android makes use of the following open-source projects.
- Java-WebSocket (MIT)
- Android-DLNA (Apache License, Version 2.0)
##License Copyright (c) 2013-2014 LG Electronics.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.