frida-java-bridge 6.2.6 → 6.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/android.js +3 -1
- package/package.json +1 -1
package/lib/android.js
CHANGED
|
@@ -483,6 +483,7 @@ function _getApi () {
|
|
|
483
483
|
|
|
484
484
|
temporaryApi.artQuickGenericJniTrampoline = getArtQuickEntrypointFromTrampoline(quickGenericJniTrampoline, vm);
|
|
485
485
|
temporaryApi.artQuickToInterpreterBridge = getArtQuickEntrypointFromTrampoline(quickToInterpreterBridgeTrampoline, vm);
|
|
486
|
+
temporaryApi.artQuickResolutionTrampoline = getArtQuickEntrypointFromTrampoline(quickResolutionTrampoline, vm);
|
|
486
487
|
|
|
487
488
|
if (temporaryApi['art::JavaVMExt::AddGlobalRef'] === undefined) {
|
|
488
489
|
temporaryApi['art::JavaVMExt::AddGlobalRef'] = makeAddGlobalRefFallbackForAndroid5(temporaryApi);
|
|
@@ -1825,7 +1826,8 @@ function instrumentArtQuickEntrypoints (vm) {
|
|
|
1825
1826
|
// Entrypoints that dispatch method invocation from the quick ABI.
|
|
1826
1827
|
const quickEntrypoints = [
|
|
1827
1828
|
api.artQuickGenericJniTrampoline,
|
|
1828
|
-
api.artQuickToInterpreterBridge
|
|
1829
|
+
api.artQuickToInterpreterBridge,
|
|
1830
|
+
api.artQuickResolutionTrampoline
|
|
1829
1831
|
];
|
|
1830
1832
|
|
|
1831
1833
|
quickEntrypoints.forEach(entrypoint => {
|