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.
26 lines
689 B
Groovy
26 lines
689 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')
|
|
implementation project(path: ':library-common')
|
|
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')
|
|
}
|