{"id":15137959,"url":"https://github.com/rustunit/bevy_ios_review","last_synced_at":"2025-10-23T13:31:01.254Z","repository":{"id":233326303,"uuid":"787018500","full_name":"rustunit/bevy_ios_review","owner":"rustunit","description":"Bevy Plugin to request an iOS App Review","archived":false,"fork":false,"pushed_at":"2025-01-13T17:05:54.000Z","size":2216,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-08T01:54:32.831Z","etag":null,"topics":["bevy","gamedev","ios","mobile","rust","swift"],"latest_commit_sha":null,"homepage":"https://github.com/rustunit/bevy_ios_review","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rustunit.png","metadata":{"files":{"readme":"readme.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE-APACHE","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":"rustunit"}},"created_at":"2024-04-15T18:26:24.000Z","updated_at":"2025-01-15T16:19:30.000Z","dependencies_parsed_at":"2024-10-21T13:58:07.813Z","dependency_job_id":null,"html_url":"https://github.com/rustunit/bevy_ios_review","commit_stats":{"total_commits":15,"total_committers":2,"mean_commits":7.5,"dds":0.06666666666666665,"last_synced_commit":"327831e7aa4ad91dadaf0736930504d681d6e1ab"},"previous_names":["rustunit/bevy_ios_review"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustunit%2Fbevy_ios_review","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustunit%2Fbevy_ios_review/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustunit%2Fbevy_ios_review/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rustunit%2Fbevy_ios_review/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rustunit","download_url":"https://codeload.github.com/rustunit/bevy_ios_review/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237834691,"owners_count":19373773,"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":["bevy","gamedev","ios","mobile","rust","swift"],"created_at":"2024-09-26T07:03:50.579Z","updated_at":"2025-10-23T13:31:01.246Z","avatar_url":"https://github.com/rustunit.png","language":"Rust","funding_links":["https://github.com/sponsors/rustunit"],"categories":[],"sub_categories":[],"readme":"# bevy_ios_review\n\n[![Following released Bevy versions](https://img.shields.io/badge/Bevy%20tracking-released%20version-lightblue)](https://bevyengine.org/learn/quick-start/plugin-development/#main-branch-tracking)\n[![crates.io](https://img.shields.io/crates/v/bevy_ios_review.svg)](https://crates.io/crates/bevy_ios_review)\n[![docs.rs](https://docs.rs/bevy_ios_review/badge.svg)](https://docs.rs/bevy_ios_review)\n[![discord][sh_discord]][lk_discord]\n\n[sh_discord]: https://img.shields.io/discord/1176858176897953872?label=discord\u0026color=5561E6\n[lk_discord]: https://discord.gg/rQNeEnMhus\n\nRust crate and Swift package to easily integrate iOS's `requestReview` API into a Bevy application.\n\n![example](./assets/example.png)\nexample screenshot from our game using this crate: [zoolitaire.com](https://zoolitaire.com)\n\n## Instructions\n\n1. Add to XCode: Add SPM (Swift Package Manager) dependency\n2. Add Rust dependency\n3. Setup Plugin\n\n### 1. Add to XCode\n\nGo to `File` -\u003e `Add Package Dependencies` and paste `https://github.com/rustunit/bevy_ios_review.git` into the search bar on the top right:\n![xcode](./assets/xcode-spm.png)\n\n### 2. Add Rust dependency\n\n```\ncargo add bevy_ios_review\n```\n\nor\n\n```\nbevy_ios_review = { version = \"=0.5\" }\n```\n\n### 3. Setup Plugin\n\nInitialize Bevy Plugin:\n\n```rust\napp.add_plugins(bevy_ios_review::IosRequestReviewPlugin);\n```\n\nTrigger Review Event in your application code:\n\n```rust\nfn some_system(mut event: EventWriter\u003cIosRequestReview\u003e) {\n    event.send(IosRequestReview);\n}\n```\n\n## Our Other Crates\n\n- [bevy_debug_log](https://github.com/rustunit/bevy_debug_log)\n- [bevy_device_lang](https://github.com/rustunit/bevy_device_lang)\n- [bevy_web_popups](https://github.com/rustunit/bevy_web_popups)\n- [bevy_libgdx_atlas](https://github.com/rustunit/bevy_libgdx_atlas)\n- [bevy_ios_iap](https://github.com/rustunit/bevy_ios_iap)\n- [bevy_ios_gamecenter](https://github.com/rustunit/bevy_ios_gamecenter)\n- [bevy_ios_alerts](https://github.com/rustunit/bevy_ios_alerts)\n- [bevy_ios_notifications](https://github.com/rustunit/bevy_ios_notifications)\n- [bevy_ios_impact](https://github.com/rustunit/bevy_ios_impact)\n- [bevy_ios_safearea](https://github.com/rustunit/bevy_ios_safearea)\n\n## Bevy version support\n\n|bevy|bevy\\_ios\\_review|\n|----|---|\n|0.17|0.5,main|\n|0.16|0.4|\n|0.15|0.3|\n|0.14|0.2|\n|0.13|0.1|\n\n# License\n\nAll code in this repository is dual-licensed under either:\n\n- MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)\n- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)\n\nat your option. This means you can select the license you prefer.\n\n## Your contributions\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustunit%2Fbevy_ios_review","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frustunit%2Fbevy_ios_review","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frustunit%2Fbevy_ios_review/lists"}