[6.2.0][技术优化] 排掉高版本用到的api

This commit is contained in:
renwj
2023-11-14 12:21:44 +08:00
parent 362c0c5f0c
commit 1e2bffc7b3

View File

@@ -47,8 +47,8 @@ class JankPointAutoGenerator {
hookAllPublicMethods = true,
scope = Scope.LEAF,
hookType = HookType.AROUND,
excludeHookMethodNames = { "runOnUiThread", "toString", "hashCode" },
excludeHookMethodDescs = { "(Ljava/lang/Runnable;)V", "()Ljava/lang/String;", "()I" }
excludeHookMethodNames = { "runOnUiThread", "toString", "hashCode", "onPictureInPictureUiStateChanged", "enterPictureInPictureMode", "setPictureInPictureParams" },
excludeHookMethodDescs = { "(Ljava/lang/Runnable;)V", "()Ljava/lang/String;", "()I", "(Landroid/app/PictureInPictureUiState;)V", "(Landroid/app/PictureInPictureParams;)Z", "(Landroid/app/PictureInPictureParams;)V" }
)
private Activity activity;