12 lines
203 B
Groovy
12 lines
203 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
ext {
|
|
isLibrary = true
|
|
pomArtifactId = "FilePicker"
|
|
pomDescription = "file picker for android"
|
|
}
|
|
|
|
dependencies {
|
|
compile project(":library:Common")
|
|
}
|