AntennaPod/playback/cast/build.gradle

20 lines
673 B
Groovy
Raw Normal View History

2022-02-09 17:28:40 +01:00
plugins {
id("com.android.library")
}
2021-11-28 22:19:14 +01:00
apply from: "../../common.gradle"
apply from: "../../playFlavor.gradle"
dependencies {
implementation project(':event')
implementation project(':model')
implementation project(':playback:base')
annotationProcessor "androidx.annotation:annotation:$annotationVersion"
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation "org.greenrobot:eventbus:$eventbusVersion"
annotationProcessor "org.greenrobot:eventbus-annotation-processor:$eventbusVersion"
playApi 'androidx.mediarouter:mediarouter:1.2.5'
playApi 'com.google.android.gms:play-services-cast-framework:20.0.0'
}