blob: 5f7d71e36e629445c7f23a3a4885d917cbf3ceab [file]
/*
* Copyright 2026 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.
*/
/**
* This file was created using the `createProject` gradle task (./gradlew createProject)
*
* Please use the task when creating a new project, rather than copying an existing project and
* modifying its settings.
*/
import androidx.build.SoftwareType
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
dependencies {
api(project(":a2ui:a2ui-model"))
api(libs.kotlinStdlib)
api(libs.kotlinCoroutinesCore)
implementation(project(":collection:collection"))
implementation(libs.kotlinSerializationJson)
testImplementation(libs.kotlinTest)
testImplementation(libs.truth)
testImplementation(libs.kotlinCoroutinesTest)
testImplementation(libs.guavaTestlib)
}
android {
namespace = "androidx.a2ui.engine"
compileSdk { version = release(37) }
defaultConfig {
minSdk { version = release(24) }
}
}
androidx {
name = "A2UI engine"
type = SoftwareType.PUBLISHED_LIBRARY
inceptionYear = "2026"
description = "The A2UI core data layer for renderer developers"
}