12 lines
298 B
Groovy
12 lines
298 B
Groovy
plugins {
|
|
id("com.android.library")
|
|
}
|
|
apply from: "../common.gradle"
|
|
|
|
dependencies {
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "androidx.media:media:$mediaVersion"
|
|
|
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
|
}
|