(String str)
| 91 | } |
| 92 | |
| 93 | public static void debugLog(String str) { |
| 94 | if (Debug) { |
| 95 | if (str.length() > 3900) { |
| 96 | Log.i("AllTrans", "AllTrans: " + str.substring(0, 3900)); |
| 97 | debugLog(str.substring(3900)); |
| 98 | } else { |
| 99 | Log.i("AllTrans", "AllTrans: " + str); |
| 100 | } |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | public static void tryHookMethod(Class<?> clazz, String methodName, Object... parameterTypesAndCallback){ |
| 105 | try{ |
no outgoing calls
no test coverage detected