Skip to content

Commit

Permalink
Merge pull request #25 from keithito/update-spm
Browse files Browse the repository at this point in the history
Update Package.swift to work with modern versions of xcode
  • Loading branch information
keithito authored Nov 14, 2024
2 parents 35e92b9 + fec23e7 commit 8f7c63e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
17 changes: 16 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
// swift-tools-version:5.8
import PackageDescription

let package = Package(
name: "SimpleAnimation"
name: "SimpleAnimation",
platforms: [
.iOS(.v11),
.tvOS(.v11),
.watchOS(.v4)
],
products: [
.library(name: "SimpleAnimation", targets: ["SimpleAnimation"]),
],
targets: [
.target(name: "SimpleAnimation", path: "Source", resources: [.copy("PrivacyInfo.xcprivacy")]),
],
swiftLanguageVersions: [
.v5
]
)
15 changes: 15 additions & 0 deletions Source/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?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>NSPrivacyAccessedAPITypes</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyTrackingDomains</key>
<array/>
</dict>
</plist>

0 comments on commit 8f7c63e

Please sign in to comment.