吉吉 发表于 2021-1-20 19:12

Xposed来HOOK安卓中的public interface中的某个方法传递的内容,如何实现

Xposed来HOOK安卓中的public interface中的某个方法传递的内容,如何实现

package com.mid.wrapper;

import androidx.annotation.NonNull;
import com.mid.configs.EnvironmentType;

/* compiled from: kSourceFile */
public interface IKSecurityBase {
    byte[] d(String str, @NonNull String str2, @SDKType int i, byte[] bArr);


求出以上d方法中的,四个值传入内容


CRoot 发表于 2021-1-20 19:43

https://bbs.pediy.com/thread-260484.htm 试试这篇文章?

佚名RJ 发表于 2021-1-20 19:24

之前我也遇到过这种情况,总是报没有找到类异常,想了很多办法,最后搁置了。
页: [1]
查看完整版本: Xposed来HOOK安卓中的public interface中的某个方法传递的内容,如何实现