eleme / lancet

A lightweight and fast AOP framework for Android App and SDK developers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lancet支持在应用中hook ActivityManagerService中的方法吗

1649900265 opened this issue · comments

lancet支持在应用中hook ActivityManagerService中的方法吗,比如
@Proxy("handleApplicationCrash")
@TargetClass("com.android.server.am.ActivityManagerService ")
public void handleApplicationCrash(IBinder app, ApplicationErrorReport.CrashInfo crashInfo){
Log.v("handleApplicationCrash", JSON.toJSONString(crashInfo));
Origin.callVoid();
}