123456789101112131415161718192021222324 |
- import java.nio.file.Paths
- apply from: "../../Script/config.gradle"
- ext {
- codePath = Paths.get("$rootDir", "$rootDirName", "$systemUiPath", "animation")
- }
- apply from: "$scriptPath/frameworks_module.gradle"
- apply from: frameworkDependencies
- apply plugin: 'kotlin-android'
- android {
- namespace 'com.android.systemui.animation'
- kotlinOptions {
- jvmTarget = "1.8"
- freeCompilerArgs = ['-Xjvm-default=all']
- }
- }
- dependencies {
- implementation "androidx.core:core:$ANDROID_X_VERSION"
- implementation "androidx.core:core-animation:${ANDROID_X_VERSION_BASE}-alpha01"
- implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
- }
|