Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

The Millicast Java SDK for Android is hosted on this Maven repository.

Millicast Java SDK for Android

  • This can be used in an Android project to publish/subscribe to/from the Millicast Platform.
  • The list of versions hosted on this Maven repository.
  • The AAR and Javadoc files are also available for download here.

Installing the SDK via Maven from GitHub Packages

Pre-requisites:

Adding the SDK via Gradle

  • Maven details:
  • In your Android project's app/build.gradle, add:
    • A maven repository for the Millicast Maven on GitHub Packages
      • For example:
        repositories {
            // Millicast SDK via Maven from GitHub Packages
            maven {
                name = "GitHubPackages"
                url = uri("https://maven.pkg.github.com/millicast/maven")
                credentials {
                    username = githubUsername
                    password = githubPat
                }
            }
        }
      • Where:
        • githubUsername
          • The username of the GitHub account to use.
        • githubPat
          • GitHub user's personal access token (PAT) with a read:packages scope.
    • A dependency line to use the Millicast SDK
      • To use the latest version of Millicast SDK:
        dependencies {
            implementation 'com.millicast:millicast-sdk-android'
        }
      • To use a specific version of Millicast SDK, for example 1.4.0:
        dependencies {
            implementation 'com.millicast:millicast-sdk-android:1.4.0'
        }
  • For an example, you may refer to the app/build.gradle of the Millicast Java SDK Android Sample App.

Using the SDK

The following resources provide more information on the usage of the SDK:

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

5 watching

Forks

Releases

Packages

Contributors