AntennaPod/core/build.gradle

66 lines
2.9 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 {
2023-10-17 20:52:21 +02:00
namespace "de.danoeh.antennapod.core"
2023-04-01 23:16:53 +02:00
lint {
disable "InvalidPeriodicWorkRequestInterval", "ObsoleteLintCustomCheck", "DefaultLocale", "UnusedAttribute",
2022-02-22 23:43:03 +01:00
"ParcelClassLoader", "CheckResult", "TrustAllX509TrustManager",
"StaticFieldLeak", "IconDensities", "IconDuplicates", "UnsafeOptInUsageError"
}
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-04-22 23:17:11 +02:00
implementation project(':model')
implementation project(':net:common')
implementation project(':net:download:service-interface')
2021-08-28 00:12:48 +02:00
implementation project(':parser:feed')
implementation project(':parser:media')
2022-11-06 14:32:47 +01:00
implementation project(':storage:preferences')
implementation project(':storage:database')
2021-02-12 21:00:39 +01:00
implementation project(':ui:common')
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.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"
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 "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
2022-11-26 16:06:02 +01:00
testImplementation "androidx.test:core:$testCoreVersion"
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
testImplementation "junit:junit:$junitVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.robolectric:robolectric:$robolectricVersion"
testImplementation 'javax.inject:javax.inject:1'
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
}