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

Feature/LinkedIn #11

Merged
merged 8 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Package
  • Loading branch information
borut-t committed Sep 4, 2023
commit 0c0e7680cf91c7aff4c5bee1133f102439b3b70c
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,20 @@
ReferencedContainer = "container:">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "PovioKitAuthLinkedIn"
BuildableName = "PovioKitAuthLinkedIn"
BlueprintName = "PovioKitAuthLinkedIn"
ReferencedContainer = "container:">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
Expand Down
14 changes: 12 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ import PackageDescription
let package = Package(
name: "PovioKitAuth",
platforms: [
.iOS(.v13)
.iOS(.v13),
.macOS(.v13)
],
products: [
.library(name: "PovioKitAuthCore", targets: ["PovioKitAuthCore"]),
.library(name: "PovioKitAuthApple", targets: ["PovioKitAuthApple"]),
.library(name: "PovioKitAuthGoogle", targets: ["PovioKitAuthGoogle"]),
.library(name: "PovioKitAuthFacebook", targets: ["PovioKitAuthFacebook"])
.library(name: "PovioKitAuthFacebook", targets: ["PovioKitAuthFacebook"]),
.library(name: "PovioKitAuthLinkedIn", targets: ["PovioKitAuthLinkedIn"])
],
dependencies: [
.package(url: "https://github.com/poviolabs/PovioKit", .upToNextMajor(from: "3.0.0")),
Expand Down Expand Up @@ -51,6 +53,14 @@ let package = Package(
],
path: "Sources/Facebook"
),
.target(
name: "PovioKitAuthLinkedIn",
dependencies: [
"PovioKitAuthCore",
.product(name: "PovioKitNetworking", package: "PovioKit")
],
path: "Sources/LinkedIn"
),
.testTarget(
name: "Tests",
dependencies: [
Expand Down
Binary file modified Sources/.DS_Store
Binary file not shown.