| 8 | import com.github.kyuubiran.ezxhelper.utils.tryOrLogFalse |
| 9 | |
| 10 | @FunctionHookEntry |
| 11 | object FuckTrackingHook : CommonDynamicHook() { |
| 12 | override fun initOnce(): Boolean = tryOrLogFalse { |
| 13 | if (!isEnabled) return@tryOrLogFalse |
| 14 | |
| 15 | findMethod(loadClass("org.telegram.ui.ChatActivity")) { |
| 16 | name == "logSponsoredClicked" |
| 17 | }.hookReturnConstant(null) |
| 18 | } |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected