Back to project page opentok-android-sdk-samples.
The source code is released under:
Apache License
If you think the Android project opentok-android-sdk-samples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.opentok.android.demo.config; // www . ja v a 2 s . c om public class OpenTokConfig { // *** Fill the following variables using your own Project info from the OpenTok dashboard *** // *** https://dashboard.tokbox.com/projects *** // Replace with a generated Session ID public static final String SESSION_ID = ""; // Replace with a generated token (from the dashboard or using an OpenTok server SDK) public static final String TOKEN = ""; // Replace with your OpenTok API key public static final String API_KEY= ""; // Subscribe to a stream published by this client. Set to false to subscribe // to other clients' streams only. public static final boolean SUBSCRIBE_TO_SELF = true; }