summaryrefslogtreecommitdiff
path: root/event/build.gradle
blob: bd90d10367ec6a3e2408c6f48897786ce95d9159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
plugins {
    id("com.android.library")
}
apply from: "../common.gradle"

android {
    namespace "de.danoeh.antennapod.event"
}

dependencies {
    implementation project(':model')
    implementation "androidx.core:core:$coreVersion"

    annotationProcessor "androidx.annotation:annotation:$annotationVersion"
}