Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 808 Bytes

README.md

File metadata and controls

47 lines (37 loc) · 808 Bytes

NvStreamingSdk-android

Meishe SDK for android

Maven

Step 1. Add the JitPack repository to your build file

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

Step 2. Add the dependency

<dependency>
    <groupId>com.github.rarest</groupId>
    <artifactId>NvStreamingSdk-android</artifactId>
    <version>1.4.0</version>
</dependency>

Gradle

Step 1. Add the JitPack repository to your build file Add it in your root build.gradle at the end of repositories:

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

Step 2. Add the dependency

dependencies {
    compile 'com.github.rarest:NvStreamingSdk-android:1.4.0'
}