summaryrefslogtreecommitdiff
path: root/android/sdremote/wear/build.gradle
blob: 1484a70a19a82ad8b908d780f04bfec912e342d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
apply plugin: 'com.android.application'

android {
    defaultConfig {
        minSdkVersion 20
        versionCode 23
    }
}

dependencies {
    implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
    // KitKat (20) wear-emulator doesn't have anything newer
    //noinspection GradleDependency
    implementation 'com.google.android.gms:play-services-wearable:6.5.87'
    implementation 'com.google.android.support:wearable:2.8.1'
    compileOnly 'com.google.android.wearable:wearable:2.8.1'
}