Wowza Community

Failed to resolve: com.wowza.gocoder.sdk.android:com.wowza.gocoder.sdk:2.0.0

Failed to resolve: com.wowza.gocoder.sdk.android:com.wowza.gocoder.sdk:2.0.0

Gradle config:

dependencies {
    implementation fileTree(include: ['*.jar','*.aar'], dir: 'libs')
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    // Include the GoCoder SDK library dependency declaration
    implementation 'com.wowza.gocoder.sdk.android:com.wowza.gocoder.sdk:2.0.0@aar'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}

allprojects {
    repositories {
        google()
        jcenter()
        mavenCentral()
        flatDir{
            dirs 'libs'
        }
    }
} 

I responded to your issue on GitHub. Did you download the Wowza GoCoder SDK and add the .aar to your project?

More info on docs - https://www.wowza.com/docs/how-to-install-gocoder-sdk-for-android

GitHub issue - https://github.com/WowzaMediaSystems/gocoder-sdk-samples-android/issues/34