31 lines
687 B
Groovy
31 lines
687 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
// This file is here (rather than in the drag-sort-listview project)
|
|
// so we can control how it builds without having to submit pull requests.
|
|
|
|
dependencies {
|
|
compile 'com.android.support:support-v4:23.1.0'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
targetSdkVersion 23
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile '../drag-sort-listview/library/AndroidManifest.xml'
|
|
java.srcDirs = ['../drag-sort-listview/library/src']
|
|
res.srcDirs = ['../drag-sort-listview/library/res']
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|