Avoid Android Gradle project for desktop tests

This commit is contained in:
Butterscotch!
2025-12-09 02:55:12 -05:00
parent 819481adcd
commit 712fa6a1ad
2 changed files with 4 additions and 4 deletions

View File

@@ -43,9 +43,9 @@ tasks.preBuild {
// Validate release keystore
val storeFile = android.buildTypes.getByName("release").signingConfig?.storeFile
if (storeFile?.isFile != true) {
throw GradleException("KeyStore file does not exist or is not a file: ${storeFile?.path}")
throw GradleException("Android KeyStore file does not exist or is not a file: ${storeFile?.path}")
} else if (storeFile.length() <= 0) {
throw GradleException("KeyStore file is empty: ${storeFile.path}")
throw GradleException("Android KeyStore file is empty: ${storeFile.path}")
}
}