mirror of
https://github.com/ReVanced/revanced-cli.git
synced 2026-01-22 02:43:57 +00:00
fix: keystore file not found exception (#57)
* fix: keystore file not found exception * the fix * fix oopsies
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user