app_store_required_privacy_manifest_analyser
app_store_required_privacy_manifest_analyser copied to clipboard
A shell script used to analyze privacy manifests in the specified directory to ensure that your app complies with the App Store requirements.
It looks like not all dependencies are inpected. How to inspect 3rd party libraries implemented by Swift Package Manager?
The script gives me 4 warnings at the end, but if you search for MLKitCommon, it says that the manifest has been found... ```bash ~/Development/Company/spark-mobileapp-shop ...
Hello, thanks a lot for creating this tool. It is so helpful. I have some follow-up questions. 1. Should I include a privacy manifest file for my app, even though...
When [line 644](https://github.com/crasowas/app_store_required_privacy_manifest_analyser/blob/98bf5478c3ed46855e43ae14576fac3b94861d6f/privacy_manifest_analyser.sh#L644) is executed, it gets stuck and cannot execute into `analyze_api_usage` method. It works after I change this ```bash results=($(analyze_api_usage "$dir_path" "${excluded_dirs[@]}")) ``` to the real path. ```bash...