BartRunnerAndroid/holoeverywhere-preferences-.../build.gradle

26 lines
645 B
Groovy
Raw Normal View History

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.
dependencies {
2015-08-05 10:13:11 +00:00
compile project(':holoeverywhere-gradle')
}
android {
2015-08-05 10:13:11 +00:00
compileSdkVersion 17
buildToolsVersion '22.0.1'
2015-08-05 10:13:11 +00:00
defaultConfig {
targetSdkVersion 17
}
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']
}
}
}