From f29597b53054d9933aafc5677e1e397ef96074b5 Mon Sep 17 00:00:00 2001 From: Satindar Dhillon Date: Mon, 20 Jun 2022 21:38:08 -0700 Subject: [PATCH] add google sign in package --- .../xcshareddata/swiftpm/Package.resolved | 22 +++++++++++++++++-- apple/OmnivoreKit/Package.swift | 4 +++- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/apple/Omnivore.xcworkspace/xcshareddata/swiftpm/Package.resolved b/apple/Omnivore.xcworkspace/xcshareddata/swiftpm/Package.resolved index fa6f4cbb3..7d1eeae0b 100644 --- a/apple/Omnivore.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/apple/Omnivore.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -23,8 +23,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/openid/AppAuth-iOS.git", "state" : { - "revision" : "01131d68346c8ae552961c768d583c715fbe1410", - "version" : "1.4.0" + "revision" : "33660c271c961f8ce1084cc13f2ea8195e864f7d", + "version" : "1.5.0" } }, { @@ -72,6 +72,15 @@ "version" : "9.1.2" } }, + { + "identity" : "googlesignin-ios", + "kind" : "remoteSourceControl", + "location" : "https://github.com/google/GoogleSignIn-iOS", + "state" : { + "revision" : "9450e779619fc184d360c9f7ce61023587f7e1f4", + "version" : "6.2.2" + } + }, { "identity" : "googleutilities", "kind" : "remoteSourceControl", @@ -99,6 +108,15 @@ "version" : "1.7.0" } }, + { + "identity" : "gtmappauth", + "kind" : "remoteSourceControl", + "location" : "https://github.com/google/GTMAppAuth.git", + "state" : { + "revision" : "b9d1683be336ba8c8d1c6867bafeb056a5399700", + "version" : "1.3.0" + } + }, { "identity" : "intercom-ios", "kind" : "remoteSourceControl", diff --git a/apple/OmnivoreKit/Package.swift b/apple/OmnivoreKit/Package.swift index 6fafc0cb0..cafef369a 100644 --- a/apple/OmnivoreKit/Package.swift +++ b/apple/OmnivoreKit/Package.swift @@ -32,6 +32,7 @@ let package = Package( .target( name: "Services", dependencies: [ + .product(name: "GoogleSignIn", package: "GoogleSignIn-iOS"), .product(name: "AppAuth", package: "AppAuth-iOS"), "Valet", .product(name: "SwiftGraphQL", package: "swift-graphql"), @@ -67,7 +68,8 @@ var dependencies: [Package.Dependency] { .package(url: "https://github.com/Square/Valet", from: "4.1.2"), .package(url: "https://github.com/maticzav/swift-graphql", from: "2.3.1"), .package(url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "0.1.4"), - .package(url: "git@github.com:segmentio/analytics-swift.git", .upToNextMajor(from: "1.0.0")) + .package(url: "git@github.com:segmentio/analytics-swift.git", .upToNextMajor(from: "1.0.0")), + .package(url: "https://github.com/google/GoogleSignIn-iOS", from: "6.2.2") ] // #if canImport(UIKit) deps.append(.package(url: "https://github.com/PSPDFKit/PSPDFKit-SP", branch: "master"))