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

Commit 017c3b9b authored by Johannes Gallmann's avatar Johannes Gallmann Committed by Automerger Merge Worker
Browse files

Clean up gradle setup of AnimationLibrary am: c1b65450

parents 13a6ac69 c1b65450
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"
}