blob: 4c2adc6ded4504503206d13861e0730cd1365b3c [file] [log] [blame]
/**
* 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("kotlin-android")
}
dependencies {
implementation(project(":appcompat:appcompat"))
implementation(projectOrArtifact(":core:core"))
api(libs.kotlinStdlib)
}
android {
compileSdk 35
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
lintOptions {
disable "WrongThread"
// TODO: Enable lint after appcompat:1.1.0 release or use lint-baseline.xml instead.
abortOnError false
}
namespace "com.example.android.appcompat"
}