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'
}
}
}