How to use a jar in Unity3D?
- by Dima Goltsman
I have a jar library that i created.
It can be integrated in any android app and it works like this:
String token="<SOME_TOKEN>";
DeviceIdentifier edDevice = new DeviceIdentifier(
this.getApplicationContext(),token);
edDevice.update();
DeviceIdentifier class os a class in the jar.
now i want to make that jar work with Unity3d,
i searched the web and couldn't find anything
what is the correct way to integrate it?