{"id":14960981,"url":"https://github.com/gilzoide/unity-key-value-store-icloud-kvs","last_synced_at":"2025-10-24T20:30:40.482Z","repository":{"id":237411444,"uuid":"779797420","full_name":"gilzoide/unity-key-value-store-icloud-kvs","owner":"gilzoide","description":"Key-Value Store implementation for Unity backed by iCloud KVS","archived":false,"fork":false,"pushed_at":"2024-03-30T20:22:01.000Z","size":14,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-31T03:54:12.365Z","etag":null,"topics":["icloud","ios","key-value-store","macos","nsubiquitouskeyvaluestore","tvos","unity","unity2d","unity3d","upm","upm-package","visionos"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gilzoide.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["gilzoide"],"patreon":null,"open_collective":null,"ko_fi":"gilzoide","tidelift":null,"community_bridge":null,"liberapay":"gilzoide","issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2024-03-30T20:20:51.000Z","updated_at":"2024-09-27T13:31:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"5279b05b-8d15-46c8-9fb0-cb49f9598936","html_url":"https://github.com/gilzoide/unity-key-value-store-icloud-kvs","commit_stats":{"total_commits":5,"total_committers":1,"mean_commits":5.0,"dds":0.0,"last_synced_commit":"f973d516feb27158ee440b33019f53a10ab34f46"},"previous_names":["gilzoide/unity-key-value-store-icloud-kvs"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-key-value-store-icloud-kvs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-key-value-store-icloud-kvs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-key-value-store-icloud-kvs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-key-value-store-icloud-kvs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gilzoide","download_url":"https://codeload.github.com/gilzoide/unity-key-value-store-icloud-kvs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238030288,"owners_count":19404859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["icloud","ios","key-value-store","macos","nsubiquitouskeyvaluestore","tvos","unity","unity2d","unity3d","upm","upm-package","visionos"],"created_at":"2024-09-24T13:23:35.759Z","updated_at":"2025-10-24T20:30:40.167Z","avatar_url":"https://github.com/gilzoide.png","language":"C#","funding_links":["https://github.com/sponsors/gilzoide","https://ko-fi.com/gilzoide","https://liberapay.com/gilzoide"],"categories":[],"sub_categories":[],"readme":"# iCloud Key-Value Store for Unity\n[Key-Value Store](https://github.com/gilzoide/unity-key-value-store) implementation backed by [iCloud KVS](https://developer.apple.com/documentation/foundation/nsubiquitouskeyvaluestore).\n\n\n## Features\n- [ICloudKeyValueStore](Runtime/ICloudKeyValueStore.cs): Key-Value Store implementation that stores data using iCloud KVS.\n- Supports macOS, iOS, tvOS and visionOS\n\n\n## Dependencies\n- [Key-Value Store](https://github.com/gilzoide/unity-key-value-store): interface used by this implementation, which also provides custom object serialization out of the box.\n\n\n## How to install\nEither:\n- Install using the [Unity Package Manager](https://docs.unity3d.com/Manual/upm-ui-giturl.html) with the following URL:\n  ```\n  https://github.com/gilzoide/unity-key-value-store-icloud-kvs.git#1.0.0-preview1\n  ```\n- Clone this repository or download a snapshot of it directly inside your project's `Assets` or `Packages` folder.\n\n\n## Basic usage\n```cs\nusing Gilzoide.KeyValueStore.ICloudKvs;\nusing UnityEngine;\n\n// 1. Instantiate a ICloudKeyValueStore\nvar kvs = new ICloudKeyValueStore();\n\n\n// 2. Set/Get/Delete values\nkvs.SetBool(\"finishedTutorial\", true);\nkvs.SetString(\"username\", \"gilzoide\");\n\nDebug.Log(\"Checking if values exist: \" + kvs.HasKey(\"username\"));\nDebug.Log(\"Getting values: \" + kvs.GetInt(\"username\"));\nDebug.Log(\"Getting values with fallback: \" + kvs.GetString(\"username\", \"default username\"));\n// Like C# Dictionary, this idiom returns a bool if the key is found\nif (kvs.TryGetString(\"someKey\", out string foundValue))\n{\n    Debug.Log(\"'someKey' exists: \" + foundValue);\n}\n\nkvs.DeleteKey(\"someKey\");\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilzoide%2Funity-key-value-store-icloud-kvs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgilzoide%2Funity-key-value-store-icloud-kvs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilzoide%2Funity-key-value-store-icloud-kvs/lists"}