summaryrefslogtreecommitdiff
path: root/playback/cast/build.gradle
blob: b2aefddf22a0483d1ee668a7b0b380bb663bd5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
plugins {
    id("com.android.library")
}
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:21.2.0'
}