Tag: native
-

Unity with Native Android Calls
As I work on a toy project in unity I have came across the challenge of integrating it with android. My project is targetting android, however it doesn’t really need to use any android features so my goal was to bypass JNI and go straight to the native system as much as possible. My inital…
-

Debugging Unity Native Plugins
When developing some native plugins to use in my unity project I frequently run into generic errors coming from the dll that I am not experienced in debugging. I have one such an example and wanted to record it for my future self if I run into these kind of issues again. Background I haven’t…