Skip to content

Commit 0fe507d

Browse files
committed
chore(ios): add privacy manifest
add privacy manifest about disk space apis usage
1 parent cf9e884 commit 0fe507d

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

ios/PrivacyInfo.xcprivacy

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSPrivacyCollectedDataTypes</key>
6+
<array>
7+
<dict>
8+
<key>NSPrivacyCollectedDataType</key>
9+
<string>NSPrivacyCollectedDataTypeOtherDataTypes</string>
10+
<key>NSPrivacyCollectedDataTypeLinked</key>
11+
<false/>
12+
<key>NSPrivacyCollectedDataTypeTracking</key>
13+
<false/>
14+
<key>NSPrivacyCollectedDataTypePurposes</key>
15+
<array>
16+
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
17+
</array>
18+
</dict>
19+
</array>
20+
<key>NSPrivacyAccessedAPITypes</key>
21+
<array>
22+
<dict>
23+
<key>NSPrivacyAccessedAPIType</key>
24+
<string>NSPrivacyAccessedAPICategoryDiskSpace</string>
25+
<key>NSPrivacyAccessedAPITypeReasons</key>
26+
<array>
27+
<string>E174.1</string>
28+
</array>
29+
</dict>
30+
</array>
31+
</dict>
32+
</plist>

ios/RNFetchBlob.xcodeproj/project.pbxproj

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
A19B48241D98102400E6868A /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlobProgress.m; sourceTree = "<group>"; };
4646
A1AAE2971D300E3E0051D11C /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RNFetchBlobReqBuilder.h; sourceTree = "<group>"; };
4747
A1AAE2981D300E4D0051D11C /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlobReqBuilder.m; sourceTree = "<group>"; };
48+
F2CB9E7A2BCE128B003984C2 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
4849
/* End PBXFileReference section */
4950

5051
/* Begin PBXFrameworksBuildPhase section */
@@ -68,6 +69,7 @@
6869
A15C30051CD25C330074CB35 = {
6970
isa = PBXGroup;
7071
children = (
72+
F2CB9E7A2BCE128B003984C2 /* PrivacyInfo.xcprivacy */,
7173
A19B48241D98102400E6868A /* RNFetchBlobProgress.m */,
7274
A19B48231D98100800E6868A /* RNFetchBlobProgress.h */,
7375
A1AAE2981D300E4D0051D11C /* RNFetchBlobReqBuilder.m */,
@@ -134,6 +136,7 @@
134136
developmentRegion = English;
135137
hasScannedForEncodings = 0;
136138
knownRegions = (
139+
English,
137140
en,
138141
);
139142
mainGroup = A15C30051CD25C330074CB35;

0 commit comments

Comments
 (0)