56 lines
1.7 KiB
Groovy
56 lines
1.7 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'me.tatarka.retrolambda'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion "22.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 10
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testApplicationId "de.danoeh.antennapod.core.tests"
|
|
testInstrumentationRunner "de.danoeh.antennapod.core.tests.AntennaPodTestRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/LICENSE.txt'
|
|
exclude 'META-INF/NOTICE.txt'
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:support-v4:22.2.1'
|
|
compile 'com.android.support:appcompat-v7:22.2.1'
|
|
compile 'com.android.support:design:22.2.1'
|
|
compile 'org.apache.commons:commons-lang3:3.3.2'
|
|
compile ('org.shredzone.flattr4j:flattr4j-core:2.12') {
|
|
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'
|
|
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'
|
|
compile 'com.squareup.okio:okio:1.2.0'
|
|
compile 'com.nineoldandroids:library:2.4.0'
|
|
compile 'de.greenrobot:eventbus:2.4.0'
|
|
compile 'io.reactivex:rxandroid:1.0.1'
|
|
}
|