blob: dddb44e4df3760cc6c7b7bb590e268f0f84f7d31 [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.core:core:1.1.0")
implementation("androidx.collection:collection:1.4.2")
annotationProcessor(libs.nullaway)
androidTestImplementation(libs.testExtJunit)
androidTestImplementation(libs.testCore)
androidTestImplementation(libs.testRunner)
}
androidx {
name = "Palette"
type = LibraryType.PUBLISHED_LIBRARY
inceptionYear = "2014"
description = "Android Support Palette"
// TODO: b/326456246
optOutJSpecify = true
}
android {
namespace = "androidx.palette"
}