Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
fix: add back 32 bit libdexkit for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mkx173 committed Mar 4, 2024
1 parent 8dd6a96 commit 55dc918
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 0 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ android {
arguments '-DANDROID_STL=none'
}
}
ndk {
abiFilters 'arm64-v8a'
}
}
applicationVariants.all { variant ->
variant.outputs.all { output ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ protected void beforeHookedMethod(final MethodHookParam param) throws Throwable
}
}

// Adapted from https://stackoverflow.com/questions/198431/how-do-you-compare-two-version-strings-in-java
public static boolean isTbSatisfyVersionRequirement(final String requiredVersion, final String currentVersion) {
String[] currParts = currentVersion.split("\\.");
String[] reqParts = requiredVersion.split("\\.");
Expand Down

0 comments on commit 55dc918

Please sign in to comment.