Skip to content

Commit 3893de8

Browse files
authored
Rename Swift support pod (google#137)
* Rename Swift pod. * Use module_name to override the default.
1 parent ee92c97 commit 3893de8

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
runs-on: macOS-latest
1616
strategy:
1717
matrix:
18-
podspec: [GoogleSignIn.podspec, GoogleSignInSwift.podspec]
18+
podspec: [GoogleSignIn.podspec, GoogleSignInSwiftSupport.podspec]
1919
flag: [
2020
"",
2121
"--use-libraries",
2222
"--use-static-frameworks"
2323
]
2424
include:
25-
- podspec: GoogleSignInSwift.podspec
25+
- podspec: GoogleSignInSwiftSupport.podspec
2626
includePodspecFlag: "--include-podspecs='GoogleSignIn.podspec'"
2727
steps:
2828
- uses: actions/checkout@v2
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Pod::Spec.new do |s|
2-
s.name = 'GoogleSignInSwift'
2+
s.name = 'GoogleSignInSwiftSupport'
33
s.version = '6.2.0'
44
s.swift_version = '4.0'
55
s.summary = 'Adds Swift-focused support for Google Sign-In.'
@@ -15,6 +15,7 @@ Pod::Spec.new do |s|
1515
macos_deployment_target = '10.15'
1616
s.ios.deployment_target = ios_deployment_target
1717
s.osx.deployment_target = macos_deployment_target
18+
s.module_name = 'GoogleSignInSwift'
1819
s.prefix_header_file = false
1920
s.source_files = [
2021
'GoogleSignInSwift/Sources/*.swift',

Samples/Swift/DaysUntilBirthday/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pod 'GoogleSignIn', :path => '../../../', :testspecs => ['unit']
2-
pod 'GoogleSignInSwift', :path => '../../../', :testspecs => ['unit']
2+
pod 'GoogleSignInSwiftSupport', :path => '../../../', :testspecs => ['unit']
33
project 'DaysUntilBirthdayForPod.xcodeproj'
44

55
target 'DaysUntilBirthdayForPod (iOS)' do

0 commit comments

Comments
 (0)