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    id("org.jetbrains.kotlin.android")
12}
13
14dependencies {
15    api(libs.jspecify)
16    implementation(project(":appcompat:appcompat"))
17    implementation("androidx.core:core:1.15.0")
18    api(libs.kotlinStdlib)
19}
20
21android {
22    compileSdk = 35
23    defaultConfig {
24        vectorDrawables.useSupportLibrary = true
25    }
26    lint {
27        disable.add("WrongThread")
28    }
29    namespace = "com.example.android.appcompat"
30}
31