fix: keystore file not found exception (#57)

* fix: keystore file not found exception

* the fix

* fix oopsies
This commit is contained in:
Itroublve
2022-06-22 19:22:19 +02:00
committed by GitHub
parent 7d8a61c3ba
commit 5b8537e6b7
2 changed files with 3 additions and 6 deletions

View File

@@ -49,7 +49,7 @@ internal class Signer(
return JcaX509CertificateConverter().getCertificate(builder.build(signer)) to pair.private
}
fun signApk(input: File, output: File): File {
fun signApk(input: File, output: File) {
Security.addProvider(BouncyCastleProvider())
// TODO: keystore should be saved securely
@@ -74,7 +74,5 @@ internal class Signer(
signer.setOutputApk(output)
signer.build().sign()
return ks
}
}