| /** |
| * 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. |
| */ |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.application") |
| } |
| |
| dependencies { |
| api(libs.jspecify) |
| implementation(project(":leanback:leanback")) |
| implementation(project(":leanback:leanback-preference")) |
| implementation(project(":leanback:leanback-paging")) |
| implementation(project(":leanback:leanback-tab")) |
| implementation("com.google.code.gson:gson:2.6.2") |
| implementation("androidx.lifecycle:lifecycle-extensions:2.2.0") |
| implementation(libs.constraintLayout) |
| |
| implementation(project(":room:room-paging")) |
| implementation(project(":room:room-runtime")) |
| annotationProcessor(project(":room:room-compiler")) |
| } |
| |
| android { |
| compileSdk = 35 |
| namespace = "com.example.android.leanback" |
| } |