2015-08-05 10:10:10 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
2015-08-05 10:13:11 +00:00
|
|
|
// 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.
|
|
|
|
|
2015-08-05 10:10:10 +00:00
|
|
|
dependencies {
|
2016-10-31 04:35:12 +00:00
|
|
|
compile 'com.android.support:support-v4:25.0.0'
|
2015-08-05 10:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2016-10-31 04:35:12 +00:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "25.0.0"
|
2015-08-05 10:10:10 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-10-31 04:35:12 +00:00
|
|
|
targetSdkVersion 25
|
2015-08-05 10:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
manifest.srcFile '../drag-sort-listview/library/AndroidManifest.xml'
|
|
|
|
java.srcDirs = ['../drag-sort-listview/library/src']
|
|
|
|
res.srcDirs = ['../drag-sort-listview/library/res']
|
|
|
|
}
|
|
|
|
}
|
2015-10-19 03:52:25 +00:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2015-08-05 10:10:10 +00:00
|
|
|
}
|
|
|
|
|