Podcini-podcast/net/ssl/build.gradle

23 lines
676 B
Groovy
Raw Normal View History

2024-02-05 21:50:43 +01:00
plugins {
id("com.android.library")
2024-02-14 07:09:48 +01:00
id 'org.jetbrains.kotlin.android'
2024-02-05 21:50:43 +01:00
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
android {
2024-02-20 11:30:25 +01:00
namespace "ac.mdiq.podcini.net.ssl"
2024-02-05 21:50:43 +01:00
}
dependencies {
2024-02-14 07:09:48 +01:00
implementation "androidx.core:core-ktx:$coreVersion"
2024-02-05 21:50:43 +01:00
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
playImplementation 'com.google.android.gms:play-services-base:17.5.0'
// This version should be updated regularly.
freeImplementation 'org.conscrypt:conscrypt-android:2.5.2'
}