blob: bdb219aa0251dcb46b44c75617dbb39ec26965a6 [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import androidx.build.LibraryType
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("com.google.protobuf")
id("org.jetbrains.kotlin.android")
}
dependencies {
api(libs.kotlinStdlib)
// Add dependencies here
api("androidx.annotation:annotation:1.2.0")
implementation(libs.protobufLite)
testImplementation(libs.testCore)
testImplementation(libs.testRunner)
testImplementation(libs.junit)
testImplementation(libs.truth)
testImplementation(libs.robolectric)
}
android {
defaultConfig {
minSdkVersion 27
}
buildFeatures {
aidl = true
}
testOptions.unitTests.includeAndroidResources = true
}
protobuf {
protoc {
artifact = libs.protobufCompiler.get()
}
// Generates the java proto-lite code for the protos in this project. See
// https://github.com/google/protobuf-gradle-plugin#customizing-protobuf-compilation
// for more information.
generateProtoTasks {
all().each { task ->
task.builtins {
java {
option 'lite'
}
}
}
}
}
androidx {
name = "AndroidX Health Data Client Library"
type = LibraryType.PUBLISHED_LIBRARY
mavenVersion = LibraryVersions.HEALTH_DATA_CLIENT
mavenGroup = LibraryGroups.HEALTH
inceptionYear = "2021"
description = "read or write user's health and fitness records."
}