Skip to content

Commit c9ecf17

Browse files
authored
chore: Merge branch dev to main
2 parents 41a0536 + 1ef9966 commit c9ecf17

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [1.1.1-dev.1](https://github.com/AzyrRuthless/morphe-cli/compare/v1.1.0...v1.1.1-dev.1) (2026-02-06)
2+
3+
4+
### Bug Fixes
5+
6+
* **cli:** skip zipalign when unsigned flag is set ([68259ea](https://github.com/AzyrRuthless/morphe-cli/commit/68259ea1116bcaa4fa5213144a8f59ebe59e595b))
7+
18
# [1.1.0](https://github.com/AzyrRuthless/morphe-cli/compare/v1.0.0...v1.1.0) (2026-02-06)
29

310

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
org.gradle.parallel = true
22
org.gradle.caching = true
33
kotlin.code.style = official
4-
version = 1.1.0
4+
version = 1.1.1-dev.1

src/main/kotlin/app/morphe/cli/command/PatchCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ internal object PatchCommand : Runnable {
409409
}
410410

411411
// 3. Zipalign (if not mounting)
412-
if (!mount) {
412+
if (!mount && !unsigned) {
413413
logger.info("Running zipalign")
414414
val alignedApk = File.createTempFile("aligned", ".apk", temporaryFilesPath)
415415
val zipalign = zipalignBinaryPath?.absolutePath ?: "zipalign"

0 commit comments

Comments
 (0)