build.gradle 674 B

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