blob: a8608815703bc64b7bcbee6ed1af11a1899c5e78 [file] [log] [blame]
/*
* Copyright (C) 2023 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("org.jetbrains.kotlin.android")
}
dependencies {
api(libs.kotlinStdlib)
implementation(libs.playServicesDevicePerformance)
implementation(libs.kotlinCoroutinesCore)
implementation(project(":core:core-performance"))
implementation("androidx.datastore:datastore-preferences:1.0.0")
testImplementation(libs.testCore)
testImplementation(libs.kotlinStdlib)
testImplementation(libs.kotlinCoroutinesTest)
testImplementation(libs.junit)
testImplementation(libs.truth)
}
android {
defaultConfig {
minSdkVersion 24
}
namespace "androidx.core.performance.play.services"
}
androidx {
name = "Core Performance Play Services extensions"
type = LibraryType.PUBLISHED_LIBRARY
mavenVersion = LibraryVersions.CORE_PERFORMANCE
inceptionYear = "2023"
description = "Get media performance class data from Google."
}