WowzaMediaSystems / gocoder-sdk-samples-android

A sample app for Android that demonstrates the capabilities of the Wowza GoCoderâ„¢ SDK.
https://www.wowza.com/products/gocoder/sdk
Other
53 stars 51 forks source link

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

Closed VNAPNIC closed 4 years ago

VNAPNIC commented 4 years ago

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'
        }
    }
}
akeller commented 4 years ago

You need to install the Wowza GoCoder SDK and add the aar to your project - https://www.wowza.com/docs/how-to-install-gocoder-sdk-for-android

VNAPNIC commented 4 years ago

why can't I use the implementation 'com.wowza.gocoder.sdk.android:com.wowza.gocoder.sdk:2.0.0@aar'