apply from: "${rootProject.rootDir}/buildCommon/commonLibConfig.gradle"
project.ext.setLibDefaultConfig project

android {
    lintOptions {
        abortOnError false
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')

    implementation(name: 'libvlc-3.0.0', ext: 'aar')
    implementation project(path: ':library-common')
    implementation project(path: ':library-push')
}