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
|
|
|
}
|
2014-11-10 12:45:11 +01:00
|
|
|
|
|
|
|
packagingOptions {
|
2015-11-01 17:48:33 +01:00
|
|
|
exclude "META-INF/LICENSE.txt"
|
|
|
|
exclude "META-INF/NOTICE.txt"
|
2014-11-10 12:45:11 +01:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2018-03-13 17:51:50 +01:00
|
|
|
flavorDimensions "market"
|
2016-06-04 01:36:25 +02:00
|
|
|
productFlavors {
|
|
|
|
free {
|
2018-03-13 17:51:50 +01:00
|
|
|
dimension "market"
|
2016-06-04 01:36:25 +02:00
|
|
|
}
|
|
|
|
play {
|
2018-03-13 17:51:50 +01:00
|
|
|
dimension "market"
|
2016-06-04 01:36:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-11 17:43:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-09-29 13:24:11 +02:00
|
|
|
implementation "androidx.appcompat:appcompat:1.1.0"
|
|
|
|
implementation "androidx.preference:preference:1.1.0"
|
2019-05-06 23:04:19 +02:00
|
|
|
implementation "android.arch.work:work-runtime:$workManagerVersion"
|
|
|
|
|
2018-03-13 19:34:29 +01:00
|
|
|
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
|
2018-04-21 16:17:41 +02:00
|
|
|
implementation "org.apache.commons:commons-text:$commonstextVersion"
|
2018-03-13 19:34:29 +01:00
|
|
|
implementation "commons-io:commons-io:$commonsioVersion"
|
2018-03-13 20:35:48 +01:00
|
|
|
implementation "com.jayway.android.robotium:robotium-solo:$robotiumSoloVersion"
|
2018-03-13 19:34:29 +01:00
|
|
|
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"
|
2018-03-13 19:34:29 +01:00
|
|
|
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"
|
2019-04-12 11:28:29 +02:00
|
|
|
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"
|
2018-03-13 19:34:29 +01:00
|
|
|
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()) {
|
2018-03-13 19:34:29 +01:00
|
|
|
playApi "com.google.android.libraries.cast.companionlibrary:ccl:$castCompanionLibVer"
|
2019-09-29 13:24:11 +02:00
|
|
|
api "androidx.mediarouter:mediarouter:1.0.0"
|
2018-03-13 19:34:29 +01:00
|
|
|
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")
|
|
|
|
}
|
2018-05-18 22:21:36 +02:00
|
|
|
|
2019-09-01 19:56:42 +02:00
|
|
|
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
|
2018-05-18 22:21:36 +02:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2019-03-31 16:17:55 +02:00
|
|
|
testImplementation 'org.mockito:mockito-core:1.10.19'
|
2019-09-29 13:24:11 +02:00
|
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
|
|
androidTestImplementation 'androidx.test:rules:1.2.0'
|
2018-05-18 22:21:36 +02:00
|
|
|
|
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
|
|
|
}
|