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.
17 lines
362 B
Groovy
17 lines
362 B
Groovy
2 years ago
|
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')
|
||
|
}
|
||
|
|