2013-08-07 11:35:51 +02:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2014-06-07 11:32:11 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:0.11.+'
|
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()
|
|
|
|
}
|
2014-04-26 23:51:07 +02:00
|
|
|
compile 'com.android.support:support-v4:19.1.+'
|
|
|
|
compile 'com.android.support:appcompat-v7:19.1.+'
|
|
|
|
compile 'org.apache.commons:commons-lang3:3.3.2'
|
2014-05-29 18:04:58 +02:00
|
|
|
compile ('org.shredzone.flattr4j:flattr4j-core:2.10') {
|
2013-08-07 11:35:51 +02:00
|
|
|
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')
|
2014-05-30 21:11:44 +02:00
|
|
|
|
2014-06-01 13:13:17 +02:00
|
|
|
compile 'com.jayway.android.robotium:robotium-solo:5.1'
|
2013-08-07 11:35:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-11-16 21:12:11 +01:00
|
|
|
compileSdkVersion 19
|
2014-06-07 11:32:11 +02:00
|
|
|
buildToolsVersion "19.1.0"
|
2013-08-07 11:35:51 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 10
|
2013-11-16 21:12:11 +01:00
|
|
|
targetSdkVersion 19
|
2014-06-08 14:02:00 +02:00
|
|
|
testApplicationId "de.test.antennapod"
|
2013-08-11 12:52:41 +02:00
|
|
|
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 {
|
2014-06-08 14:02:00 +02:00
|
|
|
applicationIdSuffix ".debug"
|
2013-08-07 11:35:51 +02:00
|
|
|
}
|
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
|
|
|
}
|
2013-12-30 00:58:21 +01:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/LICENSE.txt'
|
|
|
|
exclude 'META-INF/NOTICE.txt'
|
|
|
|
}
|
2014-03-11 23:51:25 +01:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
abortOnError false
|
|
|
|
}
|
2013-08-07 11:35:51 +02:00
|
|
|
}
|
2014-05-18 22:11:12 +02:00
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
|
|
gradleVersion = '1.12'
|
|
|
|
}
|