-
Notifications
You must be signed in to change notification settings - Fork 748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[iOS] Are there any plans to add Privacy Manifests? #584
Comments
MLKit seems to be supported by I am sure the flutter plugin will support it after the above release. It would be nice to have some kind of announcement. |
I have been very busy with my job and personal life. Contributions are welcome. Send your PRs and I will review them ASAP. So far I do not have an ETA for all the new features. |
The latest MLKit has been released. I would like to work on creating a PR |
@ShuheiSuzuki-07 : I do not have an ETA for this new feature. Feel free to send your PR with your contribution. |
Seems like there was a recent release on pub which included the commits to bump MLKit deps. However, it seems like I'm still getting an outdated version of the dependencies. Am I missing something? pubspec.yaml: environment:
sdk: '>=3.3.1 <4.0.0'
dependencies:
flutter:
sdk: flutter
google_mlkit_face_detection: ^0.10.1 This also causes our app to receive the privacy manifest warning, which I believe is caused by GoogleToolboxForMac as per this comment |
@pongloongyeat Reference: |
Confirm if with the latest release this issue is fixed. Then close the issue. |
Can confirm that the latest release does indeed come with the updated Looking through each of Runner's framework's privacy manifests very briefly, it seems like all dependencies except Runner itself declares a privacy manifest file. To that end, I'm not sure if the issue is on this package or with Flutter itself. |
Since an empty project works, I would recommend to create a new project with the latest Flutter plugin and the copy the |
This issue is stale because it has been open for 30 days with no activity. |
Apple recently announced that starting in Spring 2024, apps will be required to include more privacy-related reasoning for "third-party SDKs." This includes providing details in privacy manifests about data use by these SDKs. You can read more about this requirement on the Apple Developer website: Describing Data Use in Privacy Manifests
Many popular Flutter plugins, such as shared_preferences, have already implemented these manifests. You can see an example of such a manifest in the shared_preferences plugin here: PrivacyInfo.xcprivacy
Given these upcoming requirements, it's important to note that even libraries that do not collect privacy-policy-relevant information may need to include an empty PrivacyInfo.xcprivacy file to avoid potential rejection.
Thank you for your attention to this matter.
The text was updated successfully, but these errors were encountered: