blob: 5f8d496f60d6c6ac2d69ae69195f00e624b6e250 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
plugins {
id("com.android.library")
}
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
android {
namespace "de.danoeh.antennapod.net.ssl"
}
dependencies {
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'
}
|