Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds Privacy Manifest Files #306

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions ios/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?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/>
</array>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>C56D.1</string>
</array>
</dict>
</array>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
</dict>
</plist>
22 changes: 3 additions & 19 deletions ios/ShareMenu.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@
objects = {

/* Begin PBXBuildFile section */


F4FF95D7245B92E800C19C63 /* ShareMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4FF95D6245B92E800C19C63 /* ShareMenu.swift */; };

5E555C0D2413F4C50049A1A2 /* ShareMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* ShareMenu.mm */; };
F4FF95D7245B92E800C19C63 /* ShareMenu.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4FF95D6245B92E800C19C63 /* ShareMenu.swift */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
Expand All @@ -28,12 +24,10 @@

/* Begin PBXFileReference section */
134814201AA4EA6300B7C361 /* libShareMenu.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libShareMenu.a; sourceTree = BUILT_PRODUCTS_DIR; };


B3E7B5891CC2AC0600A0062D /* ShareMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShareMenu.m; sourceTree = "<group>"; };
E0EB70782B7538A800BFF229 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
F4FF95D5245B92E700C19C63 /* ShareMenu-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ShareMenu-Bridging-Header.h"; sourceTree = "<group>"; };
F4FF95D6245B92E800C19C63 /* ShareMenu.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareMenu.swift; sourceTree = "<group>"; };

/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand All @@ -58,12 +52,10 @@
58B511D21A9E6C8500147676 = {
isa = PBXGroup;
children = (


E0EB70782B7538A800BFF229 /* PrivacyInfo.xcprivacy */,
F4FF95D6245B92E800C19C63 /* ShareMenu.swift */,
B3E7B5891CC2AC0600A0062D /* ShareMenu.m */,
F4FF95D5245B92E700C19C63 /* ShareMenu-Bridging-Header.h */,

134814211AA4EA7D00B7C361 /* Products */,
);
sourceTree = "<group>";
Expand Down Expand Up @@ -125,11 +117,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (


F4FF95D7245B92E800C19C63 /* ShareMenu.swift in Sources */,
B3E7B58A1CC2AC0600A0062D /* ShareMenu.m in Sources */,

);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -242,11 +230,9 @@
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = ShareMenu;
SKIP_INSTALL = YES;

SWIFT_OBJC_BRIDGING_HEADER = "ShareMenu-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;

};
name = Debug;
};
Expand All @@ -263,10 +249,8 @@
OTHER_LDFLAGS = "-ObjC";
PRODUCT_NAME = ShareMenu;
SKIP_INSTALL = YES;

SWIFT_OBJC_BRIDGING_HEADER = "ShareMenu-Bridging-Header.h";
SWIFT_VERSION = 5.0;

};
name = Release;
};
Expand Down