Skip to content

Commit

Permalink
1717143615
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleh Kulykov committed May 31, 2024
1 parent 00c699c commit 2ca50d7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
Binary file removed .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@

* **[apodrugin](https://github.com/apodrugin)**
* Improve SDK interface.


* **[ArthurAlvarez](https://github.com/ArthurAlvarez)**
* Adding Privacy Manifest.
1 change: 1 addition & 0 deletions PLzmaSDK-ObjC.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Pod::Spec.new do |s|
s.source = { :git => s.homepage + '.git', :tag => s.version }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Oleh Kulykov' => '[email protected]' }
s.resource = 'resources/PrivacyInfo.xcprivacy'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
# s.tvos.deployment_target = '9.0'
Expand Down
2 changes: 1 addition & 1 deletion PLzmaSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Pod::Spec.new do |s|
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Oleh Kulykov' => '[email protected]' }
s.swift_versions = ['5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9']
s.resource = 'resources/PrivacyInfo.xcprivacy'
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.resource = 'resources/PrivacyInfo.xcprivacy'
# s.tvos.deployment_target = '12.0'
# s.watchos.deployment_target = '2.0'

Expand Down
7 changes: 5 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.0
// swift-tools-version:5.3

import PackageDescription

Expand All @@ -23,7 +23,10 @@ let package = Package(
dependencies: [
.target(name: "libplzma")
],
path: "swift"),
path: "swift",
resources: [
.copy("../resources/PrivacyInfo.xcprivacy"),
]),
.target(name: "plzma_test_files",
path: "test_files"),
.testTarget(
Expand Down

0 comments on commit 2ca50d7

Please sign in to comment.