Add dependency on the Android plugin library building task for tests

This commit is contained in:
thunderbiscuit 2022-12-14 15:36:29 -05:00
parent 146cb039c3
commit 275bd94148
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
// library version is defined in gradle.properties
val libraryVersion: String by project
@ -107,3 +109,9 @@ signing {
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign(publishing.publications)
}
// This task dependency ensures that we build the bindings
// binaries before running the tests
tasks.withType<KotlinCompile> {
dependsOn("buildAndroidLib")
}