Skip to content

Commit a883d9d

Browse files
committed
fix(repro): add --internal flag to fix-pg-map-id
The --internal flag handles zipalign internally using Python, avoiding compatibility issues with different zipalign versions. Bump to v1.1.66. — claude-opus-4-5-20251101
1 parent 235b86c commit a883d9d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,9 @@ jobs:
162162
rm-files "$BUILT_APK" 'META-INF/*'
163163
164164
# POSTBUILD STEP 2: Fix pg-map-id and zipalign
165+
# Use --internal to handle zipalign internally (avoids external tool compatibility)
165166
python3 ${{ github.workspace }}/reproducible-apk-tools/inplace-fix.py \
166-
--page-size 16 fix-pg-map-id "$BUILT_APK" 0000000
167+
--page-size 16 --internal fix-pg-map-id "$BUILT_APK" 0000000
167168
168169
# Move to final directory (survives clean)
169170
mv "$BUILT_APK" "$FINAL_PATH"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dependencies {
5050
// UPDATE ONLY THESE THREE VALUES FOR A NEW RELEASE:
5151
ext.VERSION_MAJOR = 1
5252
ext.VERSION_MINOR = 1
53-
ext.VERSION_PATCH = 65
53+
ext.VERSION_PATCH = 66
5454
// =============================================================================
5555
// DERIVED VALUES (auto-calculated, do not edit):
5656
// - versionCode = MAJOR*10000 + MINOR*100 + PATCH

0 commit comments

Comments
 (0)