| /** |
| * 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") |
| id("org.jetbrains.kotlin.android") |
| } |
| |
| dependencies { |
| api(libs.jspecify) |
| implementation(project(":appcompat:appcompat")) |
| implementation("androidx.core:core:1.15.0") |
| api(libs.kotlinStdlib) |
| } |
| |
| android { |
| compileSdk = 35 |
| defaultConfig { |
| vectorDrawables.useSupportLibrary = true |
| } |
| lint { |
| disable.add("WrongThread") |
| } |
| namespace = "com.example.android.appcompat" |
| } |