Podcini-podcast/net/common/build.gradle

21 lines
667 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"
android {
2024-02-14 09:07:17 +01:00
namespace "ac.mdiq.podvinci.net.common"
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 "com.squareup.okhttp3:okhttp:$okhttpVersion"
testImplementation "junit:junit:$junitVersion"
2024-02-14 07:09:48 +01:00
// testImplementation "org.junit.jupiter:junit-jupiter-api:$junit5Version"
// testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junit5Version"
2024-02-05 21:50:43 +01:00
testImplementation "org.robolectric:robolectric:$robolectricVersion"
}