@@ -201,6 +201,10 @@ setImmediate(() => {
for (let i of classLoaders) {
if (i.toString().includes('service-connectivity')) {
log(i)
+ for(let k of Object.keys(i)) {
+ log(k)
+ }
+ log(i.packages.value)
Java.classFactory.loader = i
}
@@ -107,4 +107,8 @@ Java.perform(function () {
Log.s('DroidGuard.$init6', str, obj, bool, bundle)
return this.$init(context, str, bytes, obj, bool, bundle)
+ DroidGuard.ssNative.overload('long', '[Ljava.lang.String;').implementation = function (l, strings) {
+ Log.s('DroidGuard.ssNative', l, strings)
+ return this.ssNative(l, strings)
})