AntennaPod/core/build.gradle

111 lines
4.1 KiB
Groovy
Raw Normal View History

2015-11-01 17:48:33 +01:00
apply plugin: "com.android.library"
2014-10-11 17:43:07 +02:00
android {
2015-11-01 17:48:33 +01:00
compileSdkVersion rootProject.ext.compileSdkVersion
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
2019-08-11 15:00:37 +02:00
multiDexEnabled false
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"
2019-10-04 11:22:39 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2019-05-28 17:26:09 +02:00
javaCompileOptions {
annotationProcessorOptions {
arguments = [ eventBusIndex : 'de.danoeh.antennapod.core.ApCoreEventBusIndex' ]
}
}
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
}
2019-08-11 15:00:37 +02:00
debug {
// debug build has method count over 64k single-dex threshold.
// For building debug build to use on Android < 21 (pre-Android 5) devices,
// you need to manually change class
// de.danoeh.antennapod.PodcastApp to extend MultiDexApplication .
// See Issue #2813
multiDexEnabled true
}
2014-10-11 17:43:07 +02:00
}
packagingOptions {
2015-11-01 17:48:33 +01:00
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
}
flavorDimensions "market"
productFlavors {
free {
dimension "market"
}
play {
dimension "market"
}
}
2014-10-11 17:43:07 +02:00
}
dependencies {
implementation "androidx.appcompat:appcompat:1.1.0"
implementation "androidx.preference:preference:1.1.0"
2019-09-29 13:25:59 +02:00
annotationProcessor "androidx.annotation:annotation:1.1.0"
2019-05-06 23:04:19 +02:00
implementation "android.arch.work:work-runtime:$workManagerVersion"
2019-10-04 23:12:54 +02:00
implementation "androidx.media:media:1.1.0"
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
implementation "org.apache.commons:commons-text:$commonstextVersion"
implementation "commons-io:commons-io:$commonsioVersion"
implementation "com.jayway.android.robotium:robotium-solo:$robotiumSoloVersion"
implementation "org.jsoup:jsoup:$jsoupVersion"
implementation "com.github.bumptech.glide:glide:$glideVersion"
2019-01-03 18:43:19 +01:00
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
implementation "com.github.bumptech.glide:okhttp3-integration:$glideOkhttpIntegrationVersion@aar"
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
implementation "com.squareup.okhttp3:okhttp-urlconnection:$okhttpVersion"
implementation "com.squareup.okio:okio:$okioVersion"
implementation "org.greenrobot:eventbus:$eventbusVersion"
2019-05-28 17:26:09 +02:00
annotationProcessor "org.greenrobot:eventbus-annotation-processor:$eventbusVersion"
2018-09-30 19:58:53 +02:00
implementation "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
implementation "io.reactivex.rxjava2:rxjava:$rxJavaVersion"
2015-11-01 17:48:33 +01:00
2018-04-21 18:39:30 +02:00
implementation "com.google.android.exoplayer:exoplayer:$exoPlayerVersion"
implementation "com.github.AntennaPod:AntennaPod-AudioPlayer:$audioPlayerVersion"
2016-03-19 05:31:41 +01:00
// Add casting features
2016-06-08 20:11:26 +02:00
// free build hack: skip some dependencies
if (!doFreeBuild()) {
playApi "com.google.android.libraries.cast.companionlibrary:ccl:$castCompanionLibVer"
api "androidx.mediarouter:mediarouter:1.0.0"
playApi "com.google.android.gms:play-services-cast:$playServicesVersion"
api "com.google.android.support:wearable:$wearableSupportVersion"
2016-06-08 20:11:26 +02:00
} else {
System.out.println("core: free build hack, skipping some dependencies")
}
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:1.10.19'
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test:rules:1.2.0'
2015-03-04 14:34:35 +01:00
}
2016-05-16 08:42:43 +02:00
2018-05-27 19:30:01 +02:00
tasks.withType(Test) {
testLogging {
exceptionFormat "full"
events "skipped", "passed", "failed"
showStandardStreams true
displayGranularity 2
}
2015-03-04 14:34:35 +01:00
}