[go: nahoru, domu]

blob: 64181e2fbbb68bca4715907b0937b09fb273cab4 [file] [log] [blame]
jnicholb25f3c02021-09-15 17:15:06 +01001/*
2 * Copyright 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17plugins {
18 id("AndroidXPlugin")
Owen Gray9e530962022-02-03 10:57:47 -050019 id("com.android.library")
jnicholb25f3c02021-09-15 17:15:06 +010020 id("kotlin-android")
21}
22
23dependencies {
24 implementation("androidx.core:core:1.1.0")
25 api(project(":wear:watchface:watchface-complications-data-source"))
26 api(libs.guavaAndroid)
27 api(libs.kotlinStdlib)
28}
29
30android {
31 defaultConfig {
32 minSdkVersion 26
33 }
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070034 namespace "androidx.wear.watchface.complications.datasource.samples"
jnicholb25f3c02021-09-15 17:15:06 +010035}