You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting from May 1st, 2024, developers have to explicitly describe why they are using some APIs for apps published in AppStore, apps won't be accepted (see this for more info).
One such API is stat, which we use to gather file metadata. It should be replaced with NSFileManager calls.
The text was updated successfully, but these errors were encountered:
Starting from May 1, 2024 developers have to explicitly
declare why they use APIs allowing to access
file timestamps in a privacy manifest files;
otherwise an app won't be accepted by the AppStore.
The only restricted API we're currently using
is stat, and since we don't extract any timestamps
using it, we can safely replace it with
NSFileManager::fileAttributesAtPath.
For more details on the restriction imposed on
timestamp-accessing APIs read https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_apiCloses#297
Starting from May 1st, 2024, developers have to explicitly describe why they are using some APIs for apps published in AppStore, apps won't be accepted (see this for more info).
One such API is
stat,
which we use to gather file metadata. It should be replaced with NSFileManager calls.The text was updated successfully, but these errors were encountered: