Skip to content

Commit 43abb9b

Browse files
committed
actually fix privacy strings
1 parent d9d6c8b commit 43abb9b

File tree

3 files changed

+11
-19
lines changed

3 files changed

+11
-19
lines changed

Django Files.xcodeproj/project.pbxproj

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -437,9 +437,11 @@
437437
GENERATE_INFOPLIST_FILE = YES;
438438
INFOPLIST_FILE = "Django Files/Info.plist";
439439
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
440-
INFOPLIST_KEY_NSCameraUsageDescription = "Required to upload directly from camera in app.";
441-
INFOPLIST_KEY_NSMicrophoneUsageDescription = "Required for recording audio in app.";
442-
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Required for uploading photos in app.";
440+
INFOPLIST_KEY_NSCameraUsageDescription = "Camera access is needed to capture and upload photos or videos.";
441+
INFOPLIST_KEY_NSMicrophoneUsageDescription = "Microphone access is needed to record and upload audio or video.";
442+
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Photo Library permission is needed to save or upload photos.";
443+
INFOPLIST_KEY_NSLocalNetworkUsageDescription = "Local network access is needed to connect to local network hosted Django Files instances.";
444+
INFOPLIST_KEY_NSFileProviderDomainUsageDescription = "Files permission is needed for uploading files.";
443445
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
444446
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
445447
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
@@ -480,9 +482,11 @@
480482
GENERATE_INFOPLIST_FILE = YES;
481483
INFOPLIST_FILE = "Django Files/Info.plist";
482484
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
483-
INFOPLIST_KEY_NSCameraUsageDescription = "Required to upload directly from camera in app.";
484-
INFOPLIST_KEY_NSMicrophoneUsageDescription = "Required for recording audio in app.";
485-
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Required for uploading photos in app.";
485+
INFOPLIST_KEY_NSCameraUsageDescription = "Camera access is needed to capture and upload photos or videos.";
486+
INFOPLIST_KEY_NSMicrophoneUsageDescription = "Microphone access is needed to record and upload audio or video.";
487+
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Photo Library permission is needed to save or upload photos.";
488+
INFOPLIST_KEY_NSLocalNetworkUsageDescription = "Local network access is needed to connect to local network hosted Django Files instances.";
489+
INFOPLIST_KEY_NSFileProviderDomainUsageDescription = "Files permission is needed for uploading files.";
486490
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
487491
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
488492
INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;

Django Files.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Django Files/Info.plist

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,6 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>NSPhotoLibraryUsageDescription</key>
6-
<string>Django Files requires access to your photo library in order to upload selected photos.</string>
7-
<key>NSLocalNetworkUsageDescription</key>
8-
<string>Django Files requires access to the local network to connect to a self-hosted instance.</string>
9-
<key>NSFileProviderDomainUsageDescription</key>
10-
<string>Django Files needs access to your files to allow uploading from your device.</string>
11-
<key>NSPhotoLibraryAddUsageDescription</key>
12-
<string>Django Files needs permission to save uploaded photos to your photo library.</string>
13-
<key>NSMicrophoneUsageDescription</key>
14-
<string>Django Files requires microphone access to record and upload audio or video.</string>
15-
<key>NSCameraUsageDescription</key>
16-
<string>Django Files requires camera access to capture and upload photos or videos.</string>
175
<key>CFBundleURLTypes</key>
186
<array>
197
<dict>

0 commit comments

Comments
 (0)