AntennaPod/core/build.gradle

62 lines
1.8 KiB
Groovy
Raw Normal View History

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 {
compileSdkVersion 22
buildToolsVersion "22.0.1"
2014-10-11 17:43:07 +02:00
defaultConfig {
minSdkVersion 10
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'
}
}
packagingOptions {
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
compileOptions {
2015-08-18 17:38:51 +02:00
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2014-10-11 17:43:07 +02:00
}
repositories {
maven { url "https://jitpack.io" }
mavenCentral()
}
2014-10-11 17:43:07 +02:00
dependencies {
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'
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'
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'
compile 'de.greenrobot:eventbus:2.4.0'
2015-08-18 17:38:51 +02:00
compile 'io.reactivex:rxandroid:1.0.1'
compile 'com.github.AntennaPod:AntennaPod-AudioPlayer:v1.0'
2015-03-04 14:34:35 +01:00
}