You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
fix: missing 64-bit machikados in unsigned builds
This commit fixes the issue where the "machikado" files for 64-bit archs wouldn't be written as the else for unsigned builds only wrote two files.
This commit is contained in:
@@ -157,7 +157,11 @@ androidComponents.onVariants { variant ->
|
|||||||
getSign("machikado.x86", "x86", false)
|
getSign("machikado.x86", "x86", false)
|
||||||
} else {
|
} else {
|
||||||
println("no private_key found, this build will not be signed")
|
println("no private_key found, this build will not be signed")
|
||||||
|
|
||||||
|
root.file("machikado.arm64").asFile.createNewFile()
|
||||||
root.file("machikado.arm").asFile.createNewFile()
|
root.file("machikado.arm").asFile.createNewFile()
|
||||||
|
|
||||||
|
root.file("machikado.x86_64").asFile.createNewFile()
|
||||||
root.file("machikado.x86").asFile.createNewFile()
|
root.file("machikado.x86").asFile.createNewFile()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user