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.

25 lines
637 B
Groovy

apply from: "${rootProject.rootDir}/buildCommon/commonLibConfig.gradle"
project.ext.setLibDefaultConfig project
2 years ago
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')
2 years ago
}