I tried both using Node app, and REPL.
Agent code :
send('> Agent Start');
Java.perform(function () {
send('>> Java perform');
var Activity = Java.use("android.app.Activity");
Activity.onResume.implementation = function () {
send("onResume() got called! Let's call the original implementation");
this.onResume();
};
});
send('< Agent End');
I do see the "Agent Start" and "Agent End", but no "Java perform" message.
firda-server 9.1.20
frida repl 9.1.20
I tried both using Node app, and REPL.
Agent code :