1/**
2 * This file was created using the `create_project.py` script located in the
3 * `<AndroidX root>/development/project-creator` directory.
4 *
5 * Please use that script when creating a new project, rather than copying an existing project and
6 * modifying its settings.
7 */
8plugins {
9    id("AndroidXPlugin")
10    id("com.android.application")
11}
12
13dependencies {
14    api(libs.jspecify)
15    implementation(project(":leanback:leanback"))
16    implementation(project(":leanback:leanback-preference"))
17    implementation(project(":leanback:leanback-paging"))
18    implementation(project(":leanback:leanback-tab"))
19    implementation("com.google.code.gson:gson:2.6.2")
20    implementation("androidx.lifecycle:lifecycle-extensions:2.2.0")
21    implementation(libs.constraintLayout)
22
23    implementation(project(":room:room-paging"))
24    implementation(project(":room:room-runtime"))
25    annotationProcessor(project(":room:room-compiler"))
26}
27
28android {
29    compileSdk = 35
30    namespace = "com.example.android.leanback"
31}
32