Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alianblank/blankdeviceuniqueidentifier
- Owner: AlianBlank
- Created: 2016-10-17T05:54:22.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-19T01:57:19.000Z (almost 3 years ago)
- Last Synced: 2024-10-11T10:35:22.108Z (about 1 month ago)
- Topics: androidid, deviceid, iosdevice, unique-id, unique-id-generator, unique-identifier, uniqueid, unity, unity-3d, unity3d, unity3d-plugin
- Language: Objective-C
- Size: 10.8 MB
- Stars: 24
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);```