| /** |
| * 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. |
| */ |
| import androidx.build.LibraryType |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| id("kotlin-android") |
| } |
| |
| dependencies { |
| api(libs.jspecify) |
| api("androidx.annotation:annotation:1.8.1") |
| api(project(":core:core")) |
| implementation("androidx.collection:collection:1.4.2") |
| compileOnly("androidx.fragment:fragment:1.7.0") |
| compileOnly("androidx.appcompat:appcompat:1.0.1") |
| implementation("androidx.dynamicanimation:dynamicanimation:1.0.0") |
| |
| androidTestImplementation(libs.kotlinStdlib) |
| androidTestImplementation(libs.testExtJunit) |
| androidTestImplementation(libs.testCore) |
| androidTestImplementation(libs.testRunner) |
| androidTestImplementation(libs.testRules) |
| androidTestImplementation(libs.truth) |
| androidTestImplementation(libs.espressoCore) |
| androidTestImplementation(libs.mockitoCore) |
| androidTestImplementation(libs.dexmakerMockito) |
| androidTestImplementation(libs.opentest4j) |
| androidTestImplementation(project(":fragment:fragment")) |
| androidTestImplementation("androidx.appcompat:appcompat:1.1.0") |
| androidTestImplementation(project(":internal-testutils-runtime"), { |
| exclude group: "androidx.fragment", module: "fragment" |
| }) |
| } |
| |
| android { |
| compileSdk = 35 |
| buildTypes.configureEach { |
| consumerProguardFiles "proguard-rules.pro" |
| } |
| aaptOptions { |
| additionalParameters "--no-version-transitions" |
| } |
| namespace = "androidx.transition" |
| } |
| |
| androidx { |
| name = "Transition" |
| type = LibraryType.PUBLISHED_LIBRARY |
| inceptionYear = "2016" |
| description = "Android Transition Support Library" |
| legacyDisableKotlinStrictApiMode = true |
| } |