Skip to content

Commit 46e1f29

Browse files
authored
Merge branch 'bmax121:main' into main
2 parents 322af0e + bd70ed9 commit 46e1f29

12 files changed

Lines changed: 319 additions & 167 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Setup Java
4444
uses: actions/setup-java@v5
4545
with:
46-
distribution: temurin
46+
distribution: jetbrains
4747
java-version: 21
4848

4949
- name: Setup Gradle
@@ -102,7 +102,7 @@ jobs:
102102
env:
103103
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
104104
if: ${{ env.SIGNING_KEY != '' }}
105-
uses: actions/upload-artifact@v4
105+
uses: actions/upload-artifact@v5
106106
with:
107107
name: APatch
108108
path: ${{steps.sign_app.outputs.signedReleaseFile}}

apd/Cargo.lock

Lines changed: 167 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apd/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ which = "8"
4040
getopts = "0.2"
4141
errno = "0.3.14"
4242
notify = "8.2"
43+
signal-hook = "0.3"
4344

4445
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
4546
rustix = { git = "https://github.com/AndroidPatch/rustix", branch = "main", features = ["all-apis"] }
@@ -53,7 +54,8 @@ android_logger = { version = "0.15", default-features = false }
5354

5455
[profile.release]
5556
strip = true
57+
overflow-checks = false
5658
opt-level = 3
5759
codegen-units = 1
5860
panic = "abort"
59-
lto = true
61+
lto = "fat"

0 commit comments

Comments
 (0)