You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
412 B
Groovy
18 lines
412 B
Groovy
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')
|
|
}
|
|
|