Skip to content

Commit

Permalink
feat: Add Privacy Manifest (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
einsteinx2 authored Apr 3, 2024
1 parent 0e8b189 commit 10c806c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
7 changes: 6 additions & 1 deletion mParticle-OneTrust.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
53D881F92BBCA0330066BB30 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 53D881F82BBCA0330066BB30 /* PrivacyInfo.xcprivacy */; };
DBB01A601DC1478A00A7B188 /* mParticle_OneTrust.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB01A5E1DC1478A00A7B188 /* mParticle_OneTrust.h */; settings = {ATTRIBUTES = (Public, ); }; };
DBB01A681DC1480700A7B188 /* MPKitOneTrust.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB01A661DC1480700A7B188 /* MPKitOneTrust.h */; };
DBB01A691DC1480700A7B188 /* MPKitOneTrust.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB01A671DC1480700A7B188 /* MPKitOneTrust.m */; };
Expand All @@ -27,7 +28,8 @@
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
DBB01A5B1DC1478A00A7B188 /* mParticle_OneTrust.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = mParticle_OneTrust.framework; path = mParticle_OneTrust.framework; sourceTree = BUILT_PRODUCTS_DIR; };
53D881F82BBCA0330066BB30 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
DBB01A5B1DC1478A00A7B188 /* mParticle_OneTrust.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = mParticle_OneTrust.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DBB01A5E1DC1478A00A7B188 /* mParticle_OneTrust.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = mParticle_OneTrust.h; sourceTree = "<group>"; };
DBB01A5F1DC1478A00A7B188 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
DBB01A661DC1480700A7B188 /* MPKitOneTrust.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MPKitOneTrust.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -85,6 +87,7 @@
DBB01A661DC1480700A7B188 /* MPKitOneTrust.h */,
DBB01A671DC1480700A7B188 /* MPKitOneTrust.m */,
DBB01A5E1DC1478A00A7B188 /* mParticle_OneTrust.h */,
53D881F82BBCA0330066BB30 /* PrivacyInfo.xcprivacy */,
DBB01A5F1DC1478A00A7B188 /* Info.plist */,
);
path = "mParticle-OneTrust";
Expand Down Expand Up @@ -181,6 +184,7 @@
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
);
mainGroup = DBB01A511DC1478A00A7B188;
Expand All @@ -199,6 +203,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
53D881F92BBCA0330066BB30 /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
18 changes: 18 additions & 0 deletions mParticle-OneTrust/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array>
<dict/>
</array>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict/>
</array>
</dict>
</plist>

0 comments on commit 10c806c

Please sign in to comment.