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 {
|
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-07-06 13:49:02 +02:00
|
|
|
compile 'com.jayway.android.robotium:robotium-solo:5.2.1'
|
2014-06-15 20:21:31 +02:00
|
|
|
compile ("com.doomonafireball.betterpickers:library:1.5.2") {
|
|
|
|
exclude group: 'com.android.support', module: 'support-v4'
|
|
|
|
}
|
2014-06-15 21:02:35 +02:00
|
|
|
compile 'org.jsoup:jsoup:1.7.3'
|
2014-07-27 23:29:47 +02:00
|
|
|
compile 'com.squareup.picasso:picasso:2.3.+'
|
|
|
|
compile 'com.squareup.okhttp:okhttp:2.0.+'
|
|
|
|
compile 'com.squareup.okhttp:okhttp-urlconnection:2.0.0'
|
|
|
|
compile 'com.squareup.okio:okio:1.0.0'
|
2013-08-07 11:35:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-11-16 21:12:11 +01:00
|
|
|
compileSdkVersion 19
|
2014-06-28 14:02:24 +02:00
|
|
|
buildToolsVersion "20.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 {
|
2014-08-06 18:47:54 +02:00
|
|
|
def STRING = "String"
|
|
|
|
def FLATTR_APP_KEY = "FLATTR_APP_KEY"
|
|
|
|
def FLATTR_APP_SECRET = "FLATTR_APP_SECRET"
|
|
|
|
def mFlattrAppKey = (project.hasProperty('flattrAppKey')) ? flattrAppKey : "\"\""
|
|
|
|
def mFlattrAppSecret = (project.hasProperty('flattrAppSecret')) ? flattrAppSecret : "\"\""
|
|
|
|
|
2013-08-07 11:35:51 +02:00
|
|
|
debug {
|
2014-06-08 14:02:00 +02:00
|
|
|
applicationIdSuffix ".debug"
|
2014-08-06 18:47:54 +02:00
|
|
|
buildConfigField STRING, FLATTR_APP_KEY, mFlattrAppKey
|
|
|
|
buildConfigField STRING, FLATTR_APP_SECRET, mFlattrAppSecret
|
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
|
2014-08-06 18:47:54 +02:00
|
|
|
buildConfigField STRING, FLATTR_APP_KEY, mFlattrAppKey
|
|
|
|
buildConfigField STRING, FLATTR_APP_SECRET, mFlattrAppSecret
|
2013-08-17 12:06:36 +02:00
|
|
|
}
|
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
|
|
|
|
}
|
2014-07-06 12:37:43 +02:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2013-08-07 11:35:51 +02:00
|
|
|
}
|
2014-05-18 22:11:12 +02:00
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
|
|
|
gradleVersion = '1.12'
|
|
|
|
}
|