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 holoeverywhere project)
|
|
|
|
// so we can control how it builds without having to submit pull requests.
|
|
|
|
|
2015-08-05 10:10:10 +00:00
|
|
|
dependencies {
|
2015-08-05 10:13:11 +00:00
|
|
|
compile project(':holoeverywhere-gradle')
|
2015-08-05 10:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2015-08-05 10:13:11 +00:00
|
|
|
compileSdkVersion 17
|
|
|
|
buildToolsVersion '22.0.1'
|
2015-08-05 10:10:10 +00:00
|
|
|
|
2015-08-05 10:13:11 +00:00
|
|
|
defaultConfig {
|
|
|
|
targetSdkVersion 17
|
|
|
|
}
|
2015-08-05 10:10:10 +00:00
|
|
|
|
2015-08-05 10:13:11 +00:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
manifest.srcFile '../holoeverywhere/addons/preferences/AndroidManifest.xml'
|
|
|
|
java.srcDirs = ['../holoeverywhere/addons/preferences/src']
|
|
|
|
res.srcDirs = ['../holoeverywhere/addons/preferences/res']
|
|
|
|
}
|
2015-08-05 10:10:10 +00:00
|
|
|
}
|
|
|
|
}
|