Skip to content

Commit

Permalink
feat: Add Privacy Manifest (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
einsteinx2 committed Apr 3, 2024
1 parent 44d9fc8 commit 67dda6e
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let package = Package(
.upToNextMajor(from: "8.0.0")),
.package(name: "Adjust",
url: "https://github.com/adjust/ios_sdk",
.upToNextMajor(from: "4.20.0")),
.upToNextMajor(from: "4.38.0")),
],
targets: [
.target(
Expand Down
18 changes: 18 additions & 0 deletions Sources/mParticle-Adjust/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>
2 changes: 1 addition & 1 deletion mParticle-Adjust.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ Pod::Spec.new do |s|
s.ios.deployment_target = "9.0"
s.ios.source_files = 'Sources/**/*.{h,m,mm}'
s.ios.dependency 'mParticle-Apple-SDK/mParticle', '~> 8.2'
s.ios.dependency 'Adjust', '~> 4.23'
s.ios.dependency 'Adjust', '~> 4.38'
end
4 changes: 4 additions & 0 deletions mParticle-Adjust.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
53D881FB2BBCA36C0066BB30 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 53D881FA2BBCA36C0066BB30 /* PrivacyInfo.xcprivacy */; };
DB9401791CB70C58007ABB18 /* AdjustSdk.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DB9401771CB70C58007ABB18 /* AdjustSdk.framework */; };
DB94017A1CB70C58007ABB18 /* mParticle_Apple_SDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DB9401781CB70C58007ABB18 /* mParticle_Apple_SDK.framework */; };
E0CE254525CC583A00E443A6 /* MPKitAdjust.h in Headers */ = {isa = PBXBuildFile; fileRef = E0CE254125CC583900E443A6 /* MPKitAdjust.h */; settings = {ATTRIBUTES = (Public, ); }; };
Expand All @@ -15,6 +16,7 @@
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
53D881FA2BBCA36C0066BB30 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
DB94016C1CB703F2007ABB18 /* mParticle_Adjust.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = mParticle_Adjust.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DB9401771CB70C58007ABB18 /* AdjustSdk.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdjustSdk.framework; path = Carthage/Build/iOS/AdjustSdk.framework; sourceTree = "<group>"; };
DB9401781CB70C58007ABB18 /* mParticle_Apple_SDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = mParticle_Apple_SDK.framework; path = Carthage/Build/iOS/mParticle_Apple_SDK.framework; sourceTree = "<group>"; };
Expand Down Expand Up @@ -69,6 +71,7 @@
children = (
E0CE254025CC583900E443A6 /* include */,
E0CE254325CC583900E443A6 /* MPKitAdjust.m */,
53D881FA2BBCA36C0066BB30 /* PrivacyInfo.xcprivacy */,
);
path = "mParticle-Adjust";
sourceTree = "<group>";
Expand Down Expand Up @@ -153,6 +156,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
53D881FB2BBCA36C0066BB30 /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down

0 comments on commit 67dda6e

Please sign in to comment.