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(":transition:transition"))
16    implementation(project(":appcompat:appcompat"))
17    implementation(project(":recyclerview:recyclerview"))
18    implementation(project(":interpolator:interpolator"))
19}
20
21android {
22    aaptOptions {
23        additionalParameters "--no-version-transitions"
24    }
25    compileSdk = 36
26    namespace = "com.example.android.support.transition"
27}
28
29