https://github.com/coderyi/yiuuid
This library provides the simplest API to obtain universally unique identifiers with different levels of persistence.
https://github.com/coderyi/yiuuid
device device-uuid ios swift uuid
Last synced: over 1 year ago
JSON representation
This library provides the simplest API to obtain universally unique identifiers with different levels of persistence.
- Host: GitHub
- URL: https://github.com/coderyi/yiuuid
- Owner: coderyi
- License: mit
- Created: 2020-12-01T15:19:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-02T13:43:58.000Z (over 5 years ago)
- Last Synced: 2025-03-20T13:32:36.430Z (over 1 year ago)
- Topics: device, device-uuid, ios, swift, uuid
- Language: Swift
- Homepage:
- Size: 17.6 KB
- Stars: 8
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This library provides the simplest API to obtain universally unique identifiers with different levels of persistence.
### CocoaPods
```
pod 'YiUUID'
```
## Persistence
- **`√`** *yes*
- `-` *no*
| PERSISTS | App memory | App relaunch | Reset Advertising Identifier | App reinstall | System reboot | System upgrade | System reset |
|-----------------------|:----------:|:------------:|:----------------------------:|:-------------:|:-------------:|:--------------:|:------------:|
| `uuid` | - | - | - | - | - | - | - |
| `uuidForKey` | **√** | - | - | - | - | - | - |
| `uuidForSession` | **√** | - | - | - | - | - | - |
| `uuidForInstallation` | **√** | **√** | **√** | - | **√** | - | - |
| `uuidForVendor` | **√** | **√** | - | **√*** | **√** | - | - |
| `uuidForDevice` | **√** | **√** | **√** | **√** | **√** | **√** | **√**** |
## License
Released under [MIT License](LICENSE).