build.gradle 606 B

12345678910111213141516171819202122
  1. apply from: "../../Script/config.gradle"
  2. ext {
  3. codePath = "$rootDir/$rootDirName/$systemUiPath/animation"
  4. }
  5. apply from: "$scriptPath/frameworks_module.gradle"
  6. apply from: frameworkDependencies
  7. apply plugin: 'kotlin-android'
  8. android {
  9. namespace 'com.android.systemui.animation'
  10. kotlinOptions {
  11. jvmTarget = "1.8"
  12. freeCompilerArgs = ['-Xjvm-default=all']
  13. }
  14. }
  15. dependencies {
  16. implementation "androidx.core:core:$ANDROID_X_VERSION"
  17. implementation "androidx.core:core-animation:$ANDROID_X_VERSION_BASE"
  18. implementation project(":$rootDirName:SystemUI:AnimationLib")
  19. }