From b4015d10d18e12908f1a739bd994c195479f17f1 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 6 May 2024 13:47:55 -0700 Subject: Add PrivacyManifest info to comply with new App Store guidelines (#3784) * add necessary privacy reasons * bump expo to support creation of the manifest --- app.config.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'app.config.js') diff --git a/app.config.js b/app.config.js index 528c8436f..b1fe33667 100644 --- a/app.config.js +++ b/app.config.js @@ -91,6 +91,28 @@ module.exports = function (config) { entitlements: { 'com.apple.security.application-groups': 'group.app.bsky', }, + privacyManifests: { + NSPrivacyAccessedAPITypes: [ + { + NSPrivacyAccessedAPIType: + 'NSPrivacyAccessedAPICategoryFileTimestamp', + NSPrivacyAccessedAPITypeReasons: ['C617.1', '3B52.1', '0A2A.1'], + }, + { + NSPrivacyAccessedAPIType: 'NSPrivacyAccessedAPICategoryDiskSpace', + NSPrivacyAccessedAPITypeReasons: ['E174.1', '85F4.1'], + }, + { + NSPrivacyAccessedAPIType: 'NSPrivacyAccessedAPICategoryBootTime', + NSPrivacyAccessedAPITypeReasons: ['35F9.1'], + }, + { + NSPrivacyAccessedAPIType: + 'NSPrivacyAccessedAPICategoryUserDefaults', + NSPrivacyAccessedAPITypeReasons: ['CA92.1'], + }, + ], + }, }, androidStatusBar: { barStyle: 'light-content', -- cgit 1.4.1