UnknownAPI
UnknownAPI
```ts toString() { try{ return this.isNull() ? "null" : this.method("ToString", 0).invoke().content ?? "null"; } finally{ return "Failed to get value" } } ``` Replacing Il2Cpp.Object's toString() method with this does...
@vfsfitvnm I encountered the exception when tracing Assembly-CSharp on [Avakin Life](https://play.google.com/store/apps/details?id=com.lockwoodpublishing.avakinlife) on android. Here's some code you can try to reproduce the exception ```ts import "frida-il2cpp-bridge"; Il2Cpp.perform(() => { Il2Cpp.trace(true)...
Maybe it should be changed so that top layer user can add a custom serializer for values. (I've had much better and consistent result using System.Convert or Newtonsoft for object...
After updating frida to 17.2.17 it runs fine. Unsure if dropping support for older frida version was intended but there goes a fix for people that face the same issue