2019-01-17 19:18:29 +01:00
|
|
|
plugins {
|
2019-08-20 22:17:56 +02:00
|
|
|
id('com.android.application')
|
2024-03-04 22:17:44 +01:00
|
|
|
id('com.github.triplet.play') version '3.9.0' apply false
|
2015-05-03 16:29:18 +02:00
|
|
|
}
|
2021-05-11 22:14:56 +02:00
|
|
|
apply from: "../common.gradle"
|
|
|
|
apply from: "../playFlavor.gradle"
|
2015-05-03 16:29:18 +02:00
|
|
|
|
2014-09-17 20:51:45 +02:00
|
|
|
android {
|
2023-10-17 20:52:21 +02:00
|
|
|
namespace "de.danoeh.antennapod"
|
|
|
|
|
2014-09-17 20:51:45 +02:00
|
|
|
defaultConfig {
|
2019-01-27 10:55:08 +01:00
|
|
|
// Version code schema:
|
2021-03-03 11:51:52 +01:00
|
|
|
// "1.2.3-beta4" -> 1020304
|
2019-05-12 18:25:15 +02:00
|
|
|
// "1.2.3" -> 1020395
|
2024-03-24 17:58:24 +01:00
|
|
|
versionCode 3030295
|
|
|
|
versionName "3.3.2"
|
2020-05-07 17:38:01 +02:00
|
|
|
|
2019-05-28 17:26:09 +02:00
|
|
|
javaCompileOptions {
|
|
|
|
annotationProcessorOptions {
|
2020-04-26 03:03:16 +02:00
|
|
|
arguments = [eventBusIndex: 'de.danoeh.antennapod.ApEventBusIndex']
|
2019-05-28 17:26:09 +02:00
|
|
|
}
|
|
|
|
}
|
2014-09-17 20:51:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
releaseConfig {
|
2022-02-09 17:28:40 +01:00
|
|
|
enableV1Signing true
|
|
|
|
enableV2Signing true
|
2022-05-07 21:54:00 +02:00
|
|
|
storeFile file(project.getProperties().getOrDefault("releaseStoreFile", "keystore"))
|
|
|
|
storePassword project.getProperties().getOrDefault("releaseStorePassword", "password")
|
|
|
|
keyAlias project.getProperties().getOrDefault("releaseKeyAlias", "alias")
|
|
|
|
keyPassword project.getProperties().getOrDefault("releaseKeyPassword", "password")
|
2014-09-17 20:51:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
2017-10-21 23:53:50 +02:00
|
|
|
resValue "string", "provider_authority", "de.danoeh.antennapod.debug.provider"
|
2014-09-17 20:51:45 +02:00
|
|
|
}
|
|
|
|
release {
|
2017-10-28 22:17:26 +02:00
|
|
|
resValue "string", "provider_authority", "de.danoeh.antennapod.provider"
|
2014-11-05 20:40:24 +01:00
|
|
|
minifyEnabled true
|
2020-04-10 00:03:53 +02:00
|
|
|
shrinkResources true
|
2014-09-17 20:51:45 +02:00
|
|
|
signingConfig signingConfigs.releaseConfig
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-01 23:16:53 +02:00
|
|
|
lint {
|
2024-04-07 23:28:14 +02:00
|
|
|
disable 'CheckResult', 'MissingMediaBrowserServiceIntentFilter', 'UnusedAttribute', 'InflateParams',
|
|
|
|
'RestrictedApi', 'ExportedReceiver', 'NotifyDataSetChanged', 'UseCompoundDrawables', 'NestedWeights',
|
|
|
|
'Overdraw', 'UselessParent', 'TextFields', 'AlwaysShowAction', 'Autofill', 'ClickableViewAccessibility',
|
2020-07-16 11:36:37 +02:00
|
|
|
'KeyboardInaccessibleWidget', 'LabelFor', 'SetTextI18n', 'HardcodedText', 'RelativeOverlap',
|
2024-04-07 23:28:14 +02:00
|
|
|
'RtlHardcoded', 'RtlEnabled', 'ContentDescription'
|
2015-08-18 17:38:51 +02:00
|
|
|
}
|
2016-03-25 15:50:41 +01:00
|
|
|
|
2023-04-01 23:16:53 +02:00
|
|
|
androidResources {
|
2024-02-25 13:39:44 +01:00
|
|
|
additionalParameters += ["--no-version-vectors"]
|
2016-03-25 15:50:41 +01:00
|
|
|
}
|
2016-06-04 01:36:25 +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')
|
2022-11-06 11:34:24 +01:00
|
|
|
implementation project(':net:common')
|
2022-04-25 23:10:18 +02:00
|
|
|
implementation project(':net:discovery')
|
2022-11-06 11:34:24 +01:00
|
|
|
implementation project(':net:download:service-interface')
|
2024-03-29 19:27:53 +01:00
|
|
|
implementation project(':net:download:service')
|
|
|
|
implementation project(':net:ssl')
|
|
|
|
implementation project(':net:sync:service')
|
2021-08-28 00:12:48 +02:00
|
|
|
implementation project(':parser:feed')
|
2021-11-28 22:19:14 +01:00
|
|
|
implementation project(':playback:base')
|
|
|
|
implementation project(':playback:cast')
|
2022-02-27 12:12:24 +01:00
|
|
|
implementation project(':storage:database')
|
2024-03-11 23:10:09 +01:00
|
|
|
implementation project(':storage:importexport')
|
2022-11-06 14:32:47 +01:00
|
|
|
implementation project(':storage:preferences')
|
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')
|
2024-03-29 13:38:31 +01:00
|
|
|
implementation project(':ui:discovery')
|
2023-11-28 20:26:29 +01:00
|
|
|
implementation project(':ui:echo')
|
2024-03-25 23:45:09 +01:00
|
|
|
implementation project(':ui:episodes')
|
2022-11-01 13:07:18 +01:00
|
|
|
implementation project(':ui:glide')
|
2022-02-22 23:43:03 +01:00
|
|
|
implementation project(':ui:i18n')
|
2024-03-29 19:27:53 +01:00
|
|
|
implementation project(':ui:notifications')
|
2024-03-25 23:45:09 +01:00
|
|
|
implementation project(':ui:widget')
|
2024-03-23 09:40:40 +01:00
|
|
|
implementation project(':ui:preferences')
|
2022-02-23 00:22:51 +01:00
|
|
|
implementation project(':ui:statistics')
|
2024-03-29 17:45:14 +01:00
|
|
|
implementation project(':net:sync:service-interface')
|
2024-03-29 21:05:02 +01:00
|
|
|
implementation project(':playback:service')
|
2024-04-05 19:20:27 +02:00
|
|
|
implementation project(':ui:chapters')
|
2020-04-26 03:03:16 +02:00
|
|
|
|
2020-05-07 17:38:01 +02:00
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
2020-04-26 03:03:16 +02:00
|
|
|
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
|
2021-08-29 02:33:44 +02:00
|
|
|
implementation "androidx.core:core:$coreVersion"
|
2021-09-24 10:18:54 +02:00
|
|
|
implementation "androidx.fragment:fragment:$fragmentVersion"
|
2020-04-26 03:03:16 +02:00
|
|
|
implementation 'androidx.gridlayout:gridlayout:1.0.0'
|
2020-05-07 17:38:01 +02:00
|
|
|
implementation "androidx.media:media:$mediaVersion"
|
2021-12-04 19:01:22 +01:00
|
|
|
implementation "androidx.palette:palette:$paletteVersion"
|
2020-05-07 17:38:01 +02:00
|
|
|
implementation "androidx.preference:preference:$preferenceVersion"
|
2021-12-04 19:01:22 +01:00
|
|
|
implementation "androidx.recyclerview:recyclerview:$recyclerViewVersion"
|
|
|
|
implementation "androidx.viewpager2:viewpager2:$viewPager2Version"
|
2020-04-10 12:28:59 +02:00
|
|
|
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
|
|
|
|
2018-03-13 19:34:29 +01: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"
|
|
|
|
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
|
|
|
implementation "com.squareup.okhttp3:okhttp-urlconnection:$okhttpVersion"
|
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"
|
|
|
|
|
2023-12-23 20:58:12 +01:00
|
|
|
implementation 'com.github.ByteHamster:SearchPreference:v2.5.0'
|
2023-05-29 13:45:25 +02:00
|
|
|
implementation 'com.github.skydoves:balloon:1.5.3'
|
2021-08-29 04:43:36 +02:00
|
|
|
implementation 'com.github.xabaras:RecyclerViewSwipeDecorator:1.3'
|
2020-05-07 17:38:01 +02:00
|
|
|
|
2024-03-31 18:40:15 +02:00
|
|
|
testImplementation "androidx.test:core:$testCoreVersion"
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
|
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
|
|
|
|
2019-09-24 20:35:01 +02:00
|
|
|
androidTestImplementation "org.awaitility:awaitility:$awaitilityVersion"
|
2020-04-26 03:03:16 +02:00
|
|
|
androidTestImplementation 'com.nanohttpd:nanohttpd:2.1.1'
|
2019-09-29 13:24:11 +02:00
|
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
|
|
|
|
androidTestImplementation "androidx.test.espresso:espresso-contrib:$espressoVersion"
|
|
|
|
androidTestImplementation "androidx.test.espresso:espresso-intents:$espressoVersion"
|
2020-05-07 17:38:01 +02:00
|
|
|
androidTestImplementation "androidx.test:runner:$runnerVersion"
|
|
|
|
androidTestImplementation "androidx.test:rules:$rulesVersion"
|
2020-07-13 06:49:35 +02:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
2015-05-03 16:29:18 +02:00
|
|
|
}
|
|
|
|
|
2020-05-04 21:14:34 +02:00
|
|
|
if (project.hasProperty("antennaPodPlayPublisherCredentials")) {
|
2019-08-20 22:17:56 +02:00
|
|
|
apply plugin: 'com.github.triplet.play'
|
|
|
|
play {
|
2021-07-22 22:48:48 +02:00
|
|
|
track.set('alpha')
|
|
|
|
serviceAccountCredentials.set(file(antennaPodPlayPublisherCredentials))
|
2019-01-16 23:15:34 +01:00
|
|
|
}
|
2016-05-10 20:23:01 +02:00
|
|
|
}
|