Skip to content

Commit

Permalink
add privacy manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
seemk committed Apr 22, 2024
1 parent 967fa7b commit e21af8c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -34,6 +34,7 @@
D770630C2A1FA776009F5FA9 /* SpanTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D770630B2A1FA776009F5FA9 /* SpanTests.swift */; };
D78995342A0C29CA009C9FB3 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = D78995332A0C29CA009C9FB3 /* Constants.swift */; };
D78995382A0D33AB009C9FB3 /* SplunkRumBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D78995372A0D33AB009C9FB3 /* SplunkRumBuilder.swift */; };
E269538B2BD2AECF008BF37A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = E269538A2BD2AECF008BF37A /* PrivacyInfo.xcprivacy */; };
E27ABA9D2989590D0060C16D /* StdoutExporter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E27ABA372989590D0060C16D /* StdoutExporter.swift */; };
E27ABA9E2989590D0060C16D /* ContextManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E27ABA3A2989590D0060C16D /* ContextManager.swift */; };
E27ABA9F2989590D0060C16D /* ActivityContextManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E27ABA3B2989590D0060C16D /* ActivityContextManager.swift */; };
Expand Down Expand Up @@ -201,6 +202,7 @@
D770630B2A1FA776009F5FA9 /* SpanTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpanTests.swift; sourceTree = "<group>"; };
D78995332A0C29CA009C9FB3 /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
D78995372A0D33AB009C9FB3 /* SplunkRumBuilder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SplunkRumBuilder.swift; sourceTree = "<group>"; };
E269538A2BD2AECF008BF37A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
E27ABA372989590D0060C16D /* StdoutExporter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StdoutExporter.swift; sourceTree = "<group>"; };
E27ABA3A2989590D0060C16D /* ContextManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContextManager.swift; sourceTree = "<group>"; };
E27ABA3B2989590D0060C16D /* ActivityContextManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ActivityContextManager.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -387,6 +389,7 @@
D77058D328D36E350047D880 /* SessionBasedSampler.swift */,
D78995332A0C29CA009C9FB3 /* Constants.swift */,
D78995372A0D33AB009C9FB3 /* SplunkRumBuilder.swift */,
E269538A2BD2AECF008BF37A /* PrivacyInfo.xcprivacy */,
);
path = SplunkRum;
sourceTree = "<group>";
Expand Down Expand Up @@ -851,6 +854,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E269538B2BD2AECF008BF37A /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
21 changes: 21 additions & 0 deletions SplunkRumWorkspace/SplunkRum/SplunkRum/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?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>NSPrivacyCollectedDataTypes</key>
<array>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypePerformanceData</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
</array>
</dict>
</plist>

0 comments on commit e21af8c

Please sign in to comment.