blob: 751a52ef6b0593ced06a4242bd830916aa3517ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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"
}
|