[go: nahoru, domu]

blob: e9de30e297055aa62da09bcc2ac451843b28f7eb [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.
*/
import androidx.build.LibraryType
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("kotlin-android")
}
dependencies {
api("androidx.annotation:annotation:1.2.0")
api("androidx.core:core:1.13.0")
implementation("androidx.collection:collection:1.1.0")
compileOnly("androidx.fragment:fragment:1.7.0-rc02")
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, excludes.espresso)
androidTestImplementation(libs.mockitoCore, excludes.bytebuddy) // DexMaker has it"s own MockMaker
androidTestImplementation(libs.dexmakerMockito, excludes.bytebuddy) // DexMaker has it"s own MockMaker
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 {
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"
metalavaK2UastEnabled = true
legacyDisableKotlinStrictApiMode = true
}