12345678910111213141516171819 |
- apply from: "../../Script/config.gradle"
- 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"
- }
|