Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c1b65450 authored by Johannes Gallmann's avatar Johannes Gallmann
Browse files

Clean up gradle setup of AnimationLibrary

Bug: 292080029
Test: local build and presubmit
Change-Id: I84ecb7d735d4cd31475a2257d5a29303bc7fa16d
parent d7a73c60
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -14,7 +14,8 @@ android {
            manifest.srcFile 'AndroidManifest.xml'
        }
        androidTest {
            java.srcDirs = ["tests"]
            java.srcDirs = ["tests/src"]
            manifest.srcFile 'tests/AndroidManifest.xml'
        }
    }
    compileSdk 33
@@ -38,9 +39,9 @@ android {
}

dependencies {
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0"
    implementation "androidx.core:core-animation:1.0.0-alpha02"
    implementation "androidx.core:core-ktx:1.9.0"
    androidTestImplementation "androidx.test.ext:junit:1.1.3"
    androidTestImplementation "androidx.test:rules:1.4.0"
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7"
    implementation "androidx.core:core-animation"
    implementation "androidx.core:core-ktx"
    androidTestImplementation "androidx.test.ext:junit"
    androidTestImplementation "androidx.test:rules"
}