blob: b3db8a6892a09ca2245ff312172521957389fd68 [file] [log] [blame]
/**
* This file was created using the `create_project.py` script located in the
* `<AndroidX root>/development/project-creator` directory.
*
* Please use that script when creating a new project, rather than copying an existing project and
* modifying its settings.
*/
import androidx.build.LibraryType
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
dependencies {
api("androidx.annotation:annotation:1.8.1")
api("androidx.core:core:1.1.0")
androidTestImplementation(libs.testExtJunit)
androidTestImplementation(libs.testCore)
androidTestImplementation(libs.testRunner)
androidTestImplementation(libs.testRules)
androidTestImplementation(libs.mockitoCore)
}
android {
namespace = "androidx.tvprovider"
}
androidx {
name = "TV Provider"
type = LibraryType.PUBLISHED_LIBRARY
inceptionYear = "2017"
description = "Android Support Library for TV Provider"
failOnDeprecationWarnings = false
// TODO: b/326456246
optOutJSpecify = true
}