Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Starting May 1 2024, Apple requires apps and some 3rd party frameworks to include a privacy manifest that documents usage of certains APIs.
After both a manual search and running this scanner, this plugin doesn't appear to be using any of these APIs directly.
However Unity uses multiple and is required to provide these manifests.
These are included in builds and exports as of 2021.3.35f1 and 2022.3.18f1, see the unity docs.
Just as a precaution, this PR adds an empty manifest for the plugin code.
Providing a manifest will also make it easier for any user that has to manually check all their used plugins after failing a future Apple review.
For easier maintenance, I've used the same podspec approach as the Flutter plugins in github.com/flutter/packages.
Type of Change