Platform

Platform

  • Getting Started
  • API

›Android SDK

Getting Started

  • Create Your App

Quick Starts

  • 555 Samples

Mobile SDK (v1.0)

  • Overview
  • IOS SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • How to initiate or accept video call
    • How to set log level for SDK
    • Release Notes

    Android SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • How to initiate or accept video call
    • How to set log level for SDK
    • Release Notes

Mobile SDK (v2.0)

  • Overview
  • IOS SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • How to initiate or accept VIDEO call
    • How to initiate or join ANONYMOUS VIDEO call
    • Release Notes
    • Reference code - How to initiate or accept PSTN Call
    • Reference code - How to initiate or accept Video Call
    • Reference code - How to initiate or join Anonymous Video Call

    Android SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • How to intiate or accept Video Call
    • How to intiate or accept ANONYMOUS VIDEO Call
    • Release Notes
    • Reference code - How to initiate or accept PSTN Call
    • Reference code - How to initiate or accept Video Call
    • Reference code - How to initiate or join Anonymous Video Call

    React Native SDK

    • Getting started
    • Installation Guide
    • How to do user authentication
    • How to subscribe for notifications
    • How to initiate or accept PSTN call
    • Release Notes

WebRTC JS SDK

  • Overview
  • Getting Started
  • How to do user authentication
  • How to subscribe for notifications
  • How to initialize SDK
  • How to initiate or accept PSTN call
  • How to initiate or accept video call
  • How to create a screen share session
  • Release Notes

Installation Guide

Integrate using Maven repositories

Iris Android SDK is available in jcenter and mavenCentral repositories.

  • To use jcenter in the project, please include below code in the project's build.gradle.
  allprojects {
      repositories {
          jcenter()
      }
  }
  • To use mavenCentral in the project, following code should be added to the project's build.gradle.
  allprojects {
      repositories {
          mavenCentral()
          maven {
                 url 'https://oss.sonatype.org/content/repositories/snapshots/'
           }
           maven {
                  url  "http://dl.bintray.com/81813780/maven"
           }
      }
  }

And, add SDK's .aar filename to dependencies in build.gradle file like,

  dependencies {
      implementation 'com.comcast:IrisRtcSdk:<version_number>'        
  }

Download and import the SDK manually

Below steps explain how to add Iris Android SDK to your android project as IrisRtcSdk-v<version_number>.aar file.

  1. Add .aar file as new Module.

    1. Download .aar file from the repository.
    2. Open File>Project Structure in Android Studio.
    3. Click on the "+" icon on top left corner to add a new module and select Import .JAR/.AAR Package and click Next.

    aar_export_2

    1. Browse and choose the Iris Android SDK's .aar (IrisRtcSdk) file that has to be imported.
    2. The IrisRtcSdk module is now listed under the modules. This will be reflected in project's settings.gradle file.
  1. Add this module as dependency to your app module

    1. Click on your app module in project Structure, Open dependencies tab. Click the "+" icon on the right top corner and select 3. Module Dependency.

    aar_export_5

    1. And, This change has to be reflected in app's build.gradle file.

How to Access SDK APIs

The APIs in IrisRtcSdk are included under the package com.comcast.irisclient.sdk. In order to access the public APIs and other public variables from Iris Android SDK, include the IrisRtcSdk package in your implementation file.

    package com.comcast.irisclient.sdk;
← Getting startedHow to do user authentication →
  • Integrate using Maven repositories
  • Download and import the SDK manually
  • How to Access SDK APIs
Docs
Getting StartedGuidesAPI Reference
More
BlogGitHub
555 Platform
Copyright © 2024 555 Platform ™
555docs-v0.0.94