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(":dynamicanimation:dynamicanimation"))
16}
17
18android {
19    compileSdk = 35
20    namespace = "com.example.android.support.animation"
21}
22