Skip to content

Commit

Permalink
add privacy manifest PrivacyInfo.xcprivacy
Browse files Browse the repository at this point in the history
  • Loading branch information
yonat committed Aug 19, 2023
1 parent 869843f commit ec19b63
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
- add privacy manifest PrivacyInfo.xcprivacy.

## [2.1.0] - 2023-07-15

### Added
Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- AvailableHapticFeedback (1.0.2)
- MultiSlider (2.0.0):
- MultiSlider (2.1.0):
- AvailableHapticFeedback
- SweeterSwift
- SweeterSwift (1.2.1)
Expand Down Expand Up @@ -34,7 +34,7 @@ CHECKOUT OPTIONS:

SPEC CHECKSUMS:
AvailableHapticFeedback: 9b21b9f6d3e4566015988b5de35b40abefe6c09a
MultiSlider: 7e1c0ce4891d3c698c835b4309b8b18cd3f212f6
MultiSlider: ac3545e486dcf7f758848679cc601a5581da8d26
SweeterSwift: 61baeda1c0c27d1dc57c8112c3d6a82e5aff3139
SwiftFormat: 4fcf72ee44c7198255108c22ed7135c38a36ba6b
SwiftLint: 77f7cb2b9bb81ab4a12fcc86448ba3f11afa50c6
Expand Down
1 change: 1 addition & 0 deletions MultiSlider.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Pod::Spec.new do |s|

s.source = { :git => "https://github.com/yonat/MultiSlider.git", :tag => s.version }
s.source_files = "Sources/*.swift"
s.resources = ['PrivacyInfo.xcprivacy']

s.dependency 'SweeterSwift'
s.dependency 'AvailableHapticFeedback'
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
.package(url: "https://github.com/yonat/AvailableHapticFeedback", from: "1.0.2"),
],
targets: [
.target(name: "MultiSlider", dependencies: ["SweeterSwift", "AvailableHapticFeedback"], path: "Sources"),
.target(name: "MultiSlider", dependencies: ["SweeterSwift", "AvailableHapticFeedback"], path: "Sources", resources: [.copy("PrivacyInfo.xcprivacy")]),
],
swiftLanguageVersions: [.v5]
)
8 changes: 8 additions & 0 deletions PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?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/>
</dict>
</plist>

0 comments on commit ec19b63

Please sign in to comment.