2013-05-25 16:48:11 -04:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-01-16 16:33:11 -05:00
|
|
|
classpath 'com.android.tools.build:gradle:0.7.3'
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'android'
|
|
|
|
|
2013-08-15 08:37:54 -04:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2013-05-25 16:48:11 -04:00
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', includes: ['*.jar'], excludes: ['android-support-v4.jar'])
|
2014-01-10 03:09:36 -05:00
|
|
|
compile 'com.android.support:support-v4:19.0.+' // already in actionbarsherlock
|
2013-09-15 07:47:30 -04:00
|
|
|
compile project(':libraries:ActionBarSherlock')
|
2013-09-09 15:11:16 -04:00
|
|
|
compile project(':libraries:HtmlTextView')
|
2014-01-02 15:10:08 -05:00
|
|
|
compile project(':libraries:StickyListHeaders:library')
|
2014-01-09 06:31:45 -05:00
|
|
|
compile project(':libraries:AndroidBootstrap')
|
2014-01-14 15:19:43 -05:00
|
|
|
compile project(':libraries:zxing')
|
|
|
|
compile project(':libraries:zxing-android-integration')
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-12-30 17:25:38 -05:00
|
|
|
compileSdkVersion 19
|
|
|
|
buildToolsVersion "19"
|
2013-05-25 16:48:11 -04:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 8
|
2013-12-30 17:25:38 -05:00
|
|
|
targetSdkVersion 19
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
|
|
java.srcDirs = ['src']
|
|
|
|
resources.srcDirs = ['src']
|
|
|
|
aidl.srcDirs = ['src']
|
|
|
|
renderscript.srcDirs = ['src']
|
|
|
|
res.srcDirs = ['res']
|
|
|
|
assets.srcDirs = ['assets']
|
|
|
|
}
|
|
|
|
|
|
|
|
instrumentTest.setRoot('tests')
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
2013-05-25 16:48:11 -04:00
|
|
|
}
|