2022-02-09 17:28:40 +01:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
}
|
2021-11-02 20:58:05 +01:00
|
|
|
apply from: "../common.gradle"
|
|
|
|
|
2023-10-17 20:52:21 +02:00
|
|
|
android {
|
|
|
|
namespace "de.danoeh.antennapod.event"
|
|
|
|
}
|
|
|
|
|
2021-11-02 20:58:05 +01:00
|
|
|
dependencies {
|
|
|
|
implementation project(':model')
|
2023-05-05 23:09:03 +02:00
|
|
|
implementation "androidx.core:core:$coreVersion"
|
2021-11-02 20:58:05 +01:00
|
|
|
|
|
|
|
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
|
|
|
|
}
|