AntennaPod/build.gradle

111 lines
3.0 KiB
Groovy
Raw Normal View History

2013-08-07 11:35:51 +02:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2014-06-28 14:02:24 +02:00
classpath 'com.android.tools.build:gradle:0.12.+'
2013-08-07 11:35:51 +02:00
}
}
2014-06-28 14:02:24 +02:00
apply plugin: 'com.android.application'
2013-08-07 11:35:51 +02:00
repositories {
mavenCentral()
}
dependencies {
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'
compile ("com.doomonafireball.betterpickers:library:1.5.2") {
exclude group: 'com.android.support', module: 'support-v4'
}
compile 'org.jsoup:jsoup:1.7.3'
2013-08-07 11:35:51 +02:00
}
android {
compileSdkVersion 19
2014-06-28 14:02:24 +02:00
buildToolsVersion "20.0"
2013-08-07 11:35:51 +02:00
defaultConfig {
minSdkVersion 10
targetSdkVersion 19
testApplicationId "de.test.antennapod"
testInstrumentationRunner "instrumentationTest.de.test.antennapod.AntennaPodTestRunner"
2013-08-07 11:35:51 +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 {
applicationIdSuffix ".debug"
2013-08-07 11:35:51 +02:00
}
release {
runProguard true
proguardFile 'proguard.cfg'
signingConfig signingConfigs.releaseConfig
}
2013-08-07 11:35:51 +02:00
}
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
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'
}