| 1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * Auto-generated by Frida. Please modify to match the signature of PhoneNumberVerification.$init.
- *
- * For full API reference, see: https://frida.re/docs/javascript-api/
- */
- {
- /**
- * Called synchronously when about to call PhoneNumberVerification.$init.
- *
- * @this {object} - The Java class or instance.
- * @param {function} log - Call this function with a string to be presented to the user.
- * @param {array} args - Java method arguments.
- * @param {object} state - Object allowing you to keep state across function calls.
- */
- onEnter(log, args, state) {
- log(`PhoneNumberVerification.$init(${args.map(JSON.stringify).join(', ')})`);
- },
- /**
- * Called synchronously when about to return from PhoneNumberVerification.$init.
- *
- * See onEnter for details.
- *
- * @this {object} - The Java class or instance.
- * @param {function} log - Call this function with a string to be presented to the user.
- * @param {NativePointer} retval - Return value.
- * @param {object} state - Object allowing you to keep state across function calls.
- */
- onLeave(log, retval, state) {
- if (retval !== undefined) {
- log(`<= ${JSON.stringify(retval)}`);
- }
- }
- }
|