build.gradle 555 B

12345678910111213141516171819
  1. apply from: "../../Script/config.gradle"
  2. apply from: "$scriptPath/frameworks_module.gradle"
  3. apply from: frameworkDependencies
  4. apply plugin: 'kotlin-android'
  5. android {
  6. namespace 'com.android.systemui.animation'
  7. kotlinOptions {
  8. jvmTarget = "1.8"
  9. freeCompilerArgs = ['-Xjvm-default=all']
  10. }
  11. }
  12. dependencies {
  13. implementation "androidx.core:core:$ANDROID_X_VERSION"
  14. implementation "androidx.core:core-animation:${ANDROID_X_VERSION_BASE}-alpha01"
  15. implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
  16. }