How to use a jar in Unity3D?
Posted
by
Dima Goltsman
on Stack Overflow
See other posts from Stack Overflow
or by Dima Goltsman
Published on 2013-10-20T09:50:32Z
Indexed on
2013/10/20
9:53 UTC
Read the original article
Hit count: 308
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?
© Stack Overflow or respective owner