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