我有一个我创建的 jar 库。它可以集成到任何安卓应用程序中,它的工作方式如下:
String token="<SOME_TOKEN>";
DeviceIdentifier edDevice = new DeviceIdentifier(
this.getApplicationContext(),token);
edDevice.update();
DeviceIdentifier 类 os jar 中的一个类。
现在我想让那个 jar 与 Unity3d 一起工作,我在网上搜索并找不到任何东西
整合它的正确方法是什么?