2014-10-11 17:43:07 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2014-10-25 11:24:57 +02:00
|
|
|
compileSdkVersion 21
|
2014-12-19 19:56:41 +01:00
|
|
|
buildToolsVersion "21.1.2"
|
2014-10-11 17:43:07 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 10
|
2014-10-25 11:24:57 +02:00
|
|
|
targetSdkVersion 21
|
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 {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
|
2014-10-11 17:43:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2014-12-19 19:56:41 +01:00
|
|
|
compile 'com.android.support:appcompat-v7:21.0.3'
|
|
|
|
compile 'com.android.support:support-v4:21.0.3'
|
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-04-12 01:40:09 +02:00
|
|
|
compile 'com.squareup.okhttp:okhttp:2.3.0'
|
|
|
|
compile 'com.squareup.okhttp:okhttp-urlconnection:2.3.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-03-04 14:34:35 +01:00
|
|
|
}
|