2022-11-06 11:34:24 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
|
|
|
apply from: "../../common.gradle"
|
2024-03-17 20:25:44 +01:00
|
|
|
apply from: "../../playFlavor.gradle"
|
2022-11-06 11:34:24 +01:00
|
|
|
|
2023-10-17 20:52:21 +02:00
|
|
|
android {
|
|
|
|
namespace "de.danoeh.antennapod.net.common"
|
2024-04-07 23:28:14 +02:00
|
|
|
|
|
|
|
lint {
|
|
|
|
disable 'StaticFieldLeak'
|
|
|
|
}
|
2023-10-17 20:52:21 +02:00
|
|
|
}
|
|
|
|
|
2022-11-06 11:34:24 +01:00
|
|
|
dependencies {
|
2024-03-17 20:25:44 +01:00
|
|
|
implementation project(':model')
|
|
|
|
implementation project(':net:ssl')
|
|
|
|
implementation project(':storage:preferences')
|
|
|
|
|
2022-11-06 11:34:24 +01:00
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
|
2024-03-17 20:25:44 +01:00
|
|
|
implementation "com.squareup.okhttp3:okhttp-urlconnection:$okhttpVersion"
|
2022-11-06 11:34:24 +01:00
|
|
|
|
|
|
|
testImplementation "junit:junit:$junitVersion"
|
|
|
|
testImplementation "org.robolectric:robolectric:$robolectricVersion"
|
|
|
|
}
|