2013-08-07 11:35:51 +02:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2013-08-15 13:25:57 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:0.5.6'
|
2013-08-07 11:35:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
apply plugin: 'android'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2013-08-25 14:06:41 +02:00
|
|
|
def libsdir = new File('libs');
|
|
|
|
if (!libsdir.exists()) {
|
|
|
|
println "Creating libs directory"
|
|
|
|
libsdir.mkdir()
|
|
|
|
}
|
|
|
|
def prestoLib = new File('libs/presto_client-0.8.5.jar')
|
|
|
|
if (!prestoLib.exists()) {
|
|
|
|
println "Downloading presto library into libs folder"
|
|
|
|
new URL('http://www.aocate.com/presto/client/presto_client-0.8.5.jar').withInputStream{ i -> prestoLib.withOutputStream{ it << i }}
|
|
|
|
}
|
|
|
|
|
2013-08-07 11:35:51 +02:00
|
|
|
compile 'com.android.support:appcompat-v7:18.0.+'
|
|
|
|
compile 'org.apache.commons:commons-lang3:3.1'
|
|
|
|
compile ('org.shredzone.flattr4j:flattr4j-core:2.4') {
|
|
|
|
exclude group: 'org.apache.httpcomponents', module: 'httpcore'
|
|
|
|
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
|
|
|
|
exclude group: 'org.json', module: 'json'
|
|
|
|
}
|
|
|
|
compile 'commons-io:commons-io:2.4'
|
|
|
|
compile 'com.nineoldandroids:library:2.4.0'
|
|
|
|
compile project(':submodules:dslv:library')
|
2013-08-16 20:15:48 +02:00
|
|
|
compile files('libs/presto_client-0.8.5.jar')
|
2013-08-07 11:35:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-08-07 20:42:38 +02:00
|
|
|
compileSdkVersion 18
|
2013-08-07 11:35:51 +02:00
|
|
|
buildToolsVersion "17"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 10
|
2013-08-07 20:42:38 +02:00
|
|
|
targetSdkVersion 18
|
2013-08-11 12:52:41 +02:00
|
|
|
testPackageName "de.test.antennapod"
|
|
|
|
testInstrumentationRunner "instrumentationTest.de.test.antennapod.AntennaPodTestRunner"
|
2013-08-07 11:35:51 +02:00
|
|
|
}
|
|
|
|
|
2013-08-17 12:06:36 +02:00
|
|
|
signingConfigs {
|
|
|
|
releaseConfig {
|
|
|
|
if (project.hasProperty('releaseStoreFile')) {
|
|
|
|
storeFile file(releaseStoreFile)
|
|
|
|
} else {
|
|
|
|
storeFile file('keystore')
|
|
|
|
}
|
|
|
|
if (project.hasProperty('releaseStorePassword')) {
|
|
|
|
storePassword releaseStorePassword
|
|
|
|
} else {
|
|
|
|
storePassword "password"
|
|
|
|
}
|
|
|
|
if (project.hasProperty('releaseKeyAlias')) {
|
|
|
|
keyAlias releaseKeyAlias
|
|
|
|
} else {
|
|
|
|
keyAlias "alias"
|
|
|
|
}
|
|
|
|
if (project.hasProperty('releaseKeyPassword')) {
|
|
|
|
keyPassword releaseKeyPassword
|
|
|
|
} else {
|
|
|
|
keyPassword "password"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-07 11:35:51 +02: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']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
packageNameSuffix ".debug"
|
|
|
|
}
|
2013-08-17 12:06:36 +02:00
|
|
|
release {
|
|
|
|
runProguard true
|
|
|
|
proguardFile 'proguard.cfg'
|
|
|
|
signingConfig signingConfigs.releaseConfig
|
|
|
|
}
|
2013-08-07 11:35:51 +02:00
|
|
|
}
|
|
|
|
}
|