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.
30 lines
783 B
Groovy
30 lines
783 B
Groovy
apply from: "${rootProject.rootDir}/buildCommon/commonLibConfig.gradle"
|
|
project.ext.setLibDefaultConfig project
|
|
|
|
android {
|
|
}
|
|
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
implementation('androidx.core:core:1.10.1')
|
|
implementation('androidx.annotation:annotation:1.6.0')
|
|
implementation('androidx.lifecycle:lifecycle-reactivestreams:2.6.1')
|
|
implementation('androidx.lifecycle:lifecycle-common:2.6.1')
|
|
implementation('androidx.lifecycle:lifecycle-livedata:2.6.1')
|
|
|
|
implementation(name: 'libuvccamera-release', ext: 'aar') {
|
|
exclude module: 'support-v4'
|
|
exclude module: 'appcompat-v7'
|
|
}
|
|
}
|