15 lines
306 B
Groovy
15 lines
306 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
ext {
|
|
isLibrary = true
|
|
pomArtifactId = "Common"
|
|
pomDescription = "Common of android picker"
|
|
}
|
|
|
|
dependencies {
|
|
compile "com.android.support:support-v4:${BUILD_TOOL_VERSION}"
|
|
compile "com.android.support:support-annotations:${BUILD_TOOL_VERSION}"
|
|
}
|
|
|
|
|