2013-05-25 16:48:11 -04:00
|
|
|
apply plugin: 'android'
|
|
|
|
|
2014-03-22 09:57:08 -04:00
|
|
|
sourceSets {
|
|
|
|
testLocal {
|
|
|
|
java.srcDir file('src/test/java')
|
|
|
|
resources.srcDir file('src/test/resources')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-25 16:48:11 -04:00
|
|
|
dependencies {
|
2014-01-28 19:49:59 -05:00
|
|
|
compile 'com.android.support:support-v4:19.0.1'
|
2014-02-02 08:13:09 -05:00
|
|
|
compile 'com.android.support:appcompat-v7:19.0.1'
|
2014-04-06 06:57:42 -04:00
|
|
|
compile project(':OpenKeychain-API:libraries:openpgp-api-library')
|
|
|
|
compile project(':OpenKeychain-API:libraries:openkeychain-api-library')
|
2014-04-16 15:49:29 -04:00
|
|
|
compile project(':extern:html-textview')
|
|
|
|
compile project(':extern:StickyListHeaders:library')
|
|
|
|
compile project(':extern:AndroidBootstrap:AndroidBootstrap')
|
|
|
|
compile project(':extern:zxing-qr-code')
|
|
|
|
compile project(':extern:zxing-android-integration')
|
|
|
|
compile project(':extern:spongycastle:core')
|
|
|
|
compile project(':extern:spongycastle:pg')
|
|
|
|
compile project(':extern:spongycastle:pkix')
|
|
|
|
compile project(':extern:spongycastle:prov')
|
|
|
|
compile project(':extern:AppMsg:library')
|
2014-03-22 09:57:08 -04:00
|
|
|
|
|
|
|
// Dependencies for the `testLocal` task, make sure to list all your global dependencies here as well
|
|
|
|
testLocalCompile 'junit:junit:4.11'
|
|
|
|
testLocalCompile 'org.robolectric:robolectric:2.1.+'
|
|
|
|
testLocalCompile 'com.google.android:android:4.1.1.4'
|
|
|
|
testLocalCompile 'com.android.support:support-v4:19.0.1'
|
|
|
|
testLocalCompile 'com.android.support:appcompat-v7:19.0.1'
|
2014-04-06 06:57:42 -04:00
|
|
|
testLocalCompile project(':OpenKeychain-API:libraries:openpgp-api-library')
|
|
|
|
testLocalCompile project(':OpenKeychain-API:libraries:openkeychain-api-library')
|
2014-04-16 15:49:29 -04:00
|
|
|
testLocalCompile project(':extern:html-textview')
|
|
|
|
testLocalCompile project(':extern:StickyListHeaders:library')
|
|
|
|
testLocalCompile project(':extern:AndroidBootstrap:AndroidBootstrap')
|
|
|
|
testLocalCompile project(':extern:zxing-qr-code')
|
|
|
|
testLocalCompile project(':extern:zxing-android-integration')
|
|
|
|
testLocalCompile project(':extern:spongycastle:core')
|
|
|
|
testLocalCompile project(':extern:spongycastle:pg')
|
|
|
|
testLocalCompile project(':extern:spongycastle:pkix')
|
|
|
|
testLocalCompile project(':extern:spongycastle:prov')
|
|
|
|
testLocalCompile project(':extern:AppMsg:library')
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-12-30 17:25:38 -05:00
|
|
|
compileSdkVersion 19
|
2014-03-05 08:14:22 -05:00
|
|
|
buildToolsVersion "19.0.3"
|
2013-05-25 16:48:11 -04:00
|
|
|
|
|
|
|
defaultConfig {
|
2014-02-13 20:33:21 -05:00
|
|
|
minSdkVersion 9
|
2013-12-30 17:25:38 -05:00
|
|
|
targetSdkVersion 19
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
|
|
|
|
2013-09-09 15:11:16 -04:00
|
|
|
/*
|
|
|
|
* To sign release build, create file gradle.properties in ~/.gradle/ with this content:
|
|
|
|
*
|
|
|
|
* signingStoreLocation=/home/key.store
|
|
|
|
* signingStorePassword=xxx
|
|
|
|
* signingKeyAlias=alias
|
|
|
|
* signingKeyPassword=xxx
|
|
|
|
*/
|
|
|
|
if (project.hasProperty('signingStoreLocation') &&
|
|
|
|
project.hasProperty('signingStorePassword') &&
|
|
|
|
project.hasProperty('signingKeyAlias') &&
|
|
|
|
project.hasProperty('signingKeyPassword')) {
|
|
|
|
println "Found sign properties in gradle.properties! Signing build…"
|
|
|
|
|
|
|
|
signingConfigs {
|
2013-08-15 08:37:54 -04:00
|
|
|
release {
|
2013-09-09 15:11:16 -04:00
|
|
|
storeFile file(signingStoreLocation)
|
|
|
|
storePassword signingStorePassword
|
|
|
|
keyAlias signingKeyAlias
|
|
|
|
keyPassword signingKeyPassword
|
2013-08-15 08:37:54 -04:00
|
|
|
}
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
2013-09-09 15:11:16 -04:00
|
|
|
|
|
|
|
buildTypes.release.signingConfig = signingConfigs.release
|
|
|
|
} else {
|
|
|
|
buildTypes.release.signingConfig = null
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
2014-01-16 16:33:11 -05:00
|
|
|
|
|
|
|
// Do not abort build if lint finds errors
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
2014-04-18 14:41:39 -04:00
|
|
|
checkAllWarnings true
|
2014-03-10 14:59:15 -04:00
|
|
|
htmlReport true
|
|
|
|
htmlOutput file("lint-report.html")
|
2014-01-16 16:33:11 -05:00
|
|
|
}
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
2014-03-22 09:57:08 -04:00
|
|
|
|
2014-04-06 15:25:46 -04:00
|
|
|
task localTest(type: Test, dependsOn: assemble) {
|
|
|
|
testClassesDir = sourceSets.testLocal.output.classesDir
|
|
|
|
|
|
|
|
android.sourceSets.main.java.srcDirs.each { dir ->
|
|
|
|
def buildDir = dir.getAbsolutePath().split("\\" + File.separator)
|
|
|
|
buildDir = (buildDir[0..(buildDir.length - 4)] + ['build', 'classes', 'debug']).join("\\" + File.separator)
|
|
|
|
|
|
|
|
sourceSets.testLocal.compileClasspath += files(buildDir)
|
|
|
|
sourceSets.testLocal.runtimeClasspath += files(buildDir)
|
|
|
|
}
|
|
|
|
|
|
|
|
classpath = sourceSets.testLocal.runtimeClasspath
|
|
|
|
}
|
2014-03-22 09:57:08 -04:00
|
|
|
|
2014-04-03 09:26:51 -04:00
|
|
|
//check.dependsOn localTest
|