2014-10-11 17:43:07 +02:00
|
|
|
apply plugin: 'com.android.library'
|
2015-08-18 17:38:51 +02:00
|
|
|
apply plugin: 'me.tatarka.retrolambda'
|
2014-10-11 17:43:07 +02:00
|
|
|
|
|
|
|
android {
|
2015-09-01 23:50:06 +02:00
|
|
|
compileSdkVersion 22
|
|
|
|
buildToolsVersion "22.0.1"
|
2014-10-11 17:43:07 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 10
|
2015-09-01 23:50:06 +02:00
|
|
|
targetSdkVersion 22
|
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
|
2014-10-11 17:43:07 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2014-11-10 12:45:11 +01:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/LICENSE.txt'
|
|
|
|
exclude 'META-INF/NOTICE.txt'
|
|
|
|
}
|
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-09-01 23:50:06 +02:00
|
|
|
compile 'com.android.support:support-v4:22.2.1'
|
|
|
|
compile 'com.android.support:appcompat-v7:22.2.1'
|
2015-09-05 23:17:05 +02:00
|
|
|
compile 'com.android.support:design:22.2.1'
|
2014-10-11 17:43:07 +02:00
|
|
|
compile 'org.apache.commons:commons-lang3:3.3.2'
|
2014-12-10 21:28:56 +01:00
|
|
|
compile ('org.shredzone.flattr4j:flattr4j-core:2.12') {
|
2014-10-11 17:43:07 +02:00
|
|
|
exclude group: 'org.json', module: 'json'
|
|
|
|
}
|
|
|
|
compile 'commons-io:commons-io:2.4'
|
|
|
|
compile 'com.jayway.android.robotium:robotium-solo:5.2.1'
|
|
|
|
compile 'org.jsoup:jsoup:1.7.3'
|
2015-07-21 20:04:39 +02:00
|
|
|
compile 'com.github.bumptech.glide:glide:3.6.1'
|
|
|
|
compile 'com.github.bumptech.glide:okhttp-integration:1.3.0'
|
2015-08-16 17:37:43 +02:00
|
|
|
compile 'com.squareup.okhttp:okhttp:2.4.0'
|
|
|
|
compile 'com.squareup.okhttp:okhttp-urlconnection:2.4.0'
|
2015-01-08 14:04:47 +01:00
|
|
|
compile 'com.squareup.okio:okio:1.2.0'
|
2015-03-04 14:34:35 +01:00
|
|
|
compile 'com.nineoldandroids:library:2.4.0'
|
2015-04-05 20:49:11 +02:00
|
|
|
compile 'de.greenrobot:eventbus:2.4.0'
|
2015-08-18 17:38:51 +02:00
|
|
|
compile 'io.reactivex:rxandroid:1.0.1'
|
2015-09-19 01:36:52 +02:00
|
|
|
|
|
|
|
compile 'com.github.AntennaPod:AntennaPod-AudioPlayer:v1.0'
|
2015-03-04 14:34:35 +01:00
|
|
|
}
|