2015-11-01 17:48:33 +01:00
|
|
|
apply plugin: "com.android.library"
|
|
|
|
apply plugin: "me.tatarka.retrolambda"
|
2014-10-11 17:43:07 +02:00
|
|
|
|
|
|
|
android {
|
2015-11-01 17:48:33 +01:00
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
2014-10-11 17:43:07 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2015-11-01 17:48:33 +01:00
|
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
2014-10-11 17:43:07 +02:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2015-05-20 11:06:45 +02:00
|
|
|
testApplicationId "de.danoeh.antennapod.core.tests"
|
|
|
|
testInstrumentationRunner "de.danoeh.antennapod.core.tests.AntennaPodTestRunner"
|
2014-10-11 17:43:07 +02:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2014-11-05 20:40:24 +01:00
|
|
|
minifyEnabled false
|
2015-11-01 17:48:33 +01:00
|
|
|
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
2014-10-11 17:43:07 +02:00
|
|
|
}
|
|
|
|
}
|
2014-11-10 12:45:11 +01:00
|
|
|
|
|
|
|
packagingOptions {
|
2015-11-01 17:48:33 +01:00
|
|
|
exclude "META-INF/LICENSE.txt"
|
|
|
|
exclude "META-INF/NOTICE.txt"
|
2014-11-10 12:45:11 +01:00
|
|
|
}
|
2014-11-12 18:46:36 +01:00
|
|
|
|
|
|
|
compileOptions {
|
2015-08-18 17:38:51 +02:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2014-11-12 18:46:36 +01:00
|
|
|
}
|
|
|
|
|
2014-10-11 17:43:07 +02:00
|
|
|
}
|
|
|
|
|
2015-09-19 01:36:52 +02:00
|
|
|
repositories {
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2014-10-11 17:43:07 +02:00
|
|
|
dependencies {
|
2015-11-01 17:48:33 +01:00
|
|
|
compile "com.android.support:support-v4:$supportVersion"
|
|
|
|
compile "com.android.support:appcompat-v7:$supportVersion"
|
|
|
|
compile "org.apache.commons:commons-lang3:$commonslangVersion"
|
|
|
|
compile ("org.shredzone.flattr4j:flattr4j-core:$flattr4jVersion") {
|
|
|
|
exclude group: "org.json", module: "json"
|
2014-10-11 17:43:07 +02:00
|
|
|
}
|
2015-11-01 17:48:33 +01:00
|
|
|
compile "commons-io:commons-io:$commonsioVersion"
|
2015-11-30 18:26:11 +01:00
|
|
|
compile "com.jayway.android.robotium:robotium-solo:5.5.3"
|
2015-11-01 17:48:33 +01:00
|
|
|
compile "org.jsoup:jsoup:$jsoupVersion"
|
|
|
|
compile "com.github.bumptech.glide:glide:$glideVersion"
|
|
|
|
compile "com.github.bumptech.glide:okhttp-integration:1.3.1"
|
|
|
|
compile "com.squareup.okhttp:okhttp:$okhttpVersion"
|
|
|
|
compile "com.squareup.okhttp:okhttp-urlconnection:$okhttpVersion"
|
|
|
|
compile "com.squareup.okio:okio:$okioVersion"
|
|
|
|
compile "com.nineoldandroids:library:2.4.0"
|
|
|
|
compile "de.greenrobot:eventbus:$eventbusVersion"
|
|
|
|
compile "io.reactivex:rxandroid:$rxAndroidVersion"
|
|
|
|
|
2016-01-02 02:39:58 +01:00
|
|
|
compile "com.github.AntennaPod:AntennaPod-AudioPlayer:$audioPlayerVersion"
|
2015-03-04 14:34:35 +01:00
|
|
|
}
|