File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
packages/platform-android/src/lib/commands/signAndroid Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @rnef/platform-android ' : patch
3+ ---
4+
5+ fix: sign android on SDK lower than 35
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ Please follow instructions at: https://reactnative.dev/docs/set-up-your-environm
173173 // See: https://developer.android.com/tools/zipalign#usage
174174 const zipalignArgs = [
175175 // aligns uncompressed .so files to the specified page size in KiB. Available since SDK 35
176- ...( isSdkGTE35 ( zipAlignPath ) ? [ '-P' , '16' ] : [ ] ) ,
176+ ...( isSdkGTE35 ( zipAlignPath ) ? [ '-P' , '16' ] : [ '-p' ] ) ,
177177 '-f' , // Overwrites existing output file.
178178 '-v' , // Overwrites existing output file.
179179 '4' , // alignment in bytes, e.g. '4' provides 32-bit alignment
You can’t perform that action at this time.
0 commit comments