12345678910111213141516171819202122 |
- apply from: "../../Script/config.gradle"
- ext {
- codePath = "$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"
- implementation project(":$rootDirName:SystemUI:AnimationLib")
- }
|