Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alianblank/blankdeviceuniqueidentifier

Unity3D BlankDeviceUniqueIdentifier
https://github.com/alianblank/blankdeviceuniqueidentifier

androidid deviceid iosdevice unique-id unique-id-generator unique-identifier uniqueid unity unity-3d unity3d unity3d-plugin

Last synced: 17 days ago
JSON representation

Unity3D BlankDeviceUniqueIdentifier

Awesome Lists containing this project

README

        

# BlankDeviceUniqueIdentifier
用于在 Unity3D 中获取Android 和 iOS 平台上唯一机器码的插件

# Example

```csharp
if (GUILayout.Button("GET DeviceUniqueIdentifier ", GUILayout.Width (200), GUILayout.Height (200)))
{
id = BlankDeviceUniqueIdentifier.DeviceUniqueIdentifier;
}
GUILayout.Label("DeviceUniqueIdentifier : "+ id);

```