Skip to content

Commit

Permalink
feat: do not sign when the ripLibs option is enabled and the `Micro…
Browse files Browse the repository at this point in the history
…G support` patch is excluded
  • Loading branch information
inotia00 committed Oct 9, 2023
1 parent 5cb84bc commit 952147c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions wsEvents/patchAppWithRipLibs.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,10 @@ module.exports = async function patchAppWithRipLibs(ws) {
join(global.revancedDir, 'revanced.apk')
];

if (global.jarNames.isRooted) {
args.push('--unsigned');
}

if (process.platform === 'android') {
args.push('--custom-aapt2-binary');
args.push(join(global.revancedDir, 'aapt2'));
Expand Down

0 comments on commit 952147c

Please sign in to comment.