mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-10 11:35:11 -05:00
58 lines
1.2 KiB
Groovy
58 lines
1.2 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:0.11.+'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'android'
|
|
|
|
dependencies {
|
|
compile project(':plugins:Android-PullToRefresh:library')
|
|
compile project(':plugins:ckChangeLog:library')
|
|
compile project(':plugins:HoloColorPicker')
|
|
compile project(':plugins:openpgp-api-library')
|
|
compile 'com.android.support:support-v13:19.1.0'
|
|
compile fileTree(dir: 'libs', include: '*.jar')
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 19
|
|
buildToolsVersion '19.1.0'
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
res.srcDirs = ['res']
|
|
assets.srcDirs = ['assets']
|
|
}
|
|
|
|
androidTest {
|
|
manifest.srcFile 'tests/AndroidManifest.xml'
|
|
java.srcDirs = ['tests/src']
|
|
assets.srcDirs = ['tests/assets']
|
|
}
|
|
}
|
|
|
|
|
|
// Do not abort build if lint finds errors
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/DEPENDENCIES'
|
|
exclude 'META-INF/LICENSE'
|
|
exclude 'META-INF/NOTICE'
|
|
}
|
|
}
|
|
|
|
task testsOnJVM(type :GradleBuild, dependsOn: assemble) {
|
|
buildFile = 'tests-on-jvm/build.gradle'
|
|
tasks = ['test']
|
|
}
|