AntennaPod/core/build.gradle

83 lines
4.0 KiB
Groovy
Raw Normal View History

2022-02-09 17:28:40 +01:00
plugins {
id("com.android.library")
}
apply from: "../common.gradle"
apply from: "../playFlavor.gradle"
2014-10-11 17:43:07 +02:00
android {
lintOptions {
disable "InvalidPeriodicWorkRequestInterval", "ObsoleteLintCustomCheck", "DefaultLocale", "UnusedAttribute",
"ParcelClassLoader", "Typos", "ExtraTranslation", "ImpliedQuantity", "CheckResult",
"PluralsCandidate", "UnusedQuantity", "StringFormatCount", "TrustAllX509TrustManager",
"StaticFieldLeak", "TypographyEllipsis", "IconDensities", "IconDuplicates"
}
2014-10-11 17:43:07 +02:00
defaultConfig {
2019-05-28 17:26:09 +02:00
javaCompileOptions {
annotationProcessorOptions {
2020-04-26 03:03:16 +02:00
arguments = [eventBusIndex: 'de.danoeh.antennapod.core.ApCoreEventBusIndex']
2019-05-28 17:26:09 +02:00
}
}
2014-10-11 17:43:07 +02:00
}
}
dependencies {
2021-11-02 20:58:05 +01:00
implementation project(':event')
2021-04-22 23:17:11 +02:00
implementation project(':model')
2021-03-01 16:21:39 +01:00
implementation project(':net:ssl')
implementation project(':net:sync:gpoddernet')
implementation project(':net:sync:model')
2021-08-28 00:12:48 +02:00
implementation project(':parser:feed')
implementation project(':parser:media')
2021-11-28 22:19:14 +01:00
implementation project(':playback:base')
implementation project(':playback:cast')
2021-02-07 11:29:39 +01:00
implementation project(':ui:app-start-intent')
2021-02-12 21:00:39 +01:00
implementation project(':ui:common')
implementation project(':ui:png-icons')
2021-02-07 11:29:39 +01:00
2020-05-07 17:38:01 +02:00
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
2021-08-29 02:33:44 +02:00
implementation "androidx.core:core:$coreVersion"
2020-05-25 22:30:14 +02:00
implementation 'androidx.documentfile:documentfile:1.0.1'
implementation "androidx.fragment:fragment:$fragmentVersion"
2020-05-07 17:38:01 +02:00
implementation "androidx.media:media:$mediaVersion"
implementation "androidx.palette:palette:$paletteVersion"
2020-05-07 17:38:01 +02:00
implementation "androidx.preference:preference:$preferenceVersion"
implementation "androidx.work:work-runtime:$workManagerVersion"
2020-05-07 17:38:01 +02:00
implementation "com.google.android.material:material:$googleMaterialVersion"
2020-04-26 03:03:16 +02:00
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
implementation "commons-io:commons-io:$commonsioVersion"
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"
2020-05-07 17:38:01 +02:00
implementation "com.github.bumptech.glide:okhttp3-integration:$glideVersion@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
2021-08-25 03:28:54 +02:00
implementation "com.google.android.exoplayer:exoplayer-core:$exoPlayerVersion"
implementation "com.google.android.exoplayer:exoplayer-ui:$exoPlayerVersion"
2021-10-30 22:10:52 +02:00
implementation "com.google.android.exoplayer:extension-okhttp:$exoPlayerVersion"
implementation "com.github.AntennaPod:AntennaPod-AudioPlayer:$audioPlayerVersion"
2016-03-19 05:31:41 +01:00
2021-02-23 17:11:32 +01:00
// Non-free dependencies:
playApi "com.google.android.support:wearable:$wearableSupportVersion"
compileOnly "com.google.android.wearable:wearable:$wearableSupportVersion"
testImplementation 'androidx.test:core:1.2.0'
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
testImplementation "junit:junit:$junitVersion"
testImplementation 'org.mockito:mockito-inline:3.5.13'
testImplementation "org.robolectric:robolectric:$robolectricVersion"
testImplementation 'javax.inject:javax.inject:1'
androidTestImplementation "com.jayway.android.robotium:robotium-solo:$robotiumSoloVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
2020-05-07 17:38:01 +02:00
androidTestImplementation "androidx.test:runner:$runnerVersion"
androidTestImplementation "androidx.test:rules:$rulesVersion"
2015-03-04 14:34:35 +01:00
}