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

Add Apple SDK Privacy Manifest #153

Merged
merged 2 commits into from
Apr 5, 2024
Merged
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
3 changes: 2 additions & 1 deletion OktaIdx.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'OktaIdx'
spec.version = '3.2.1'
spec.version = '3.2.2'
spec.summary = 'SDK to easily integrate the Okta Identity Engine'
spec.description = <<-DESC
Integrate your native app with Okta using the Okta Identity Engine library.
Expand All @@ -22,6 +22,7 @@ Integrate your native app with Okta using the Okta Identity Engine library.
spec.source = { :git => 'https://github.com/okta/okta-idx-swift.git', :tag => spec.version.to_s }

spec.source_files = 'Sources/OktaIdx/**/*.swift'
spec.resources = 'Sources/OktaIdx/Resources/**/*'
spec.swift_version = "5.6"

spec.dependency "OktaAuthFoundation", "~> 1.7.0"
Expand Down
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ var package = Package(
.target(name: "OktaIdx",
dependencies: [
.product(name: "AuthFoundation", package: "okta-mobile-swift")
]),
],
resources: [.process("Resources")]),
.target(name: "TestCommon",
dependencies: ["OktaIdx"],
path: "Tests/TestCommon"),
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This library uses semantic versioning and follows Okta's [Library Version Policy
| ------- | ---------------------------------- |
| 1.0.0 | |
| 2.0.1 | |
| 3.2.1 | ✔️ Stable |
| 3.2.2 | ✔️ Stable |

The latest release can always be found on the [releases page][github-releases].

Expand Down
14 changes: 14 additions & 0 deletions Sources/OktaIdx/Resources/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?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>NSPrivacyAccessedAPITypes</key>
<array/>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
</dict>
</plist>
2 changes: 1 addition & 1 deletion Sources/OktaIdx/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

import Foundation

public let Version = SDKVersion(sdk: "okta-idx-swift", version: "3.2.1")
public let Version = SDKVersion(sdk: "okta-idx-swift", version: "3.2.2")
Loading