Skip to content
This repository was archived by the owner on Nov 7, 2024. It is now read-only.

Commit 6f016b4

Browse files
Merge pull request #10 from AckeeCZ/integration
Dependency managers support
2 parents 77d3350 + 3a9ef54 commit 6f016b4

18 files changed

+823
-62
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.DS_Store
22
/.build
33
/Packages
4-
/*.xcodeproj
54
xcuserdata/
65
DerivedData/
76
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# CHANGELOG
2+
3+
- please enter new entries in format
4+
5+
```
6+
- <description> (#<PR_number>, kudos to @<author>)
7+
```
8+
9+
## Next
10+
11+
### Added
12+
13+
- `audience` parameter for server-side sign after a token is obtain (#9, kudos to @paweldudek)
14+
15+
## 1.1.0
16+
17+
### Added
18+
19+
- Load user's profile (#6, kudos to @LukasHromadnik)
20+
21+
## 1.0.0
22+
23+
- 🎉 Initial release (kudos to @IgorRosocha)

OpenGoogleSignInSDK.podspec

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Pod::Spec.new do |s|
3+
s.name = "OpenGoogleSignInSDK"
4+
s.version = "1.1.0"
5+
s.summary = "OpenGoogleSignInSDK takes care of Google Sign-In flow using OAuth 2.0."
6+
s.description = <<-DESC
7+
OpenGoogleSignInSDK is an open-source library which takes care of Google Sign-In flow using OAuth 2.0 and can be used as an alternative to official GoogleSignInSDK
8+
DESC
9+
s.homepage = "https://github.com/AckeeCZ/OpenGoogleSignInSDK"
10+
s.license = { :type => 'MIT', :file => 'LICENSE' }
11+
s.authors = { "Ackee" => "info@ackee.cz" }
12+
s.source = { :git => "https://github.com/AckeeCZ/OpenGoogleSignInSDK.git", :tag => s.version }
13+
14+
s.ios.deployment_target = "12.0"
15+
s.osx.deployment_target = "10.15"
16+
17+
s.swift_version = "5.4.2"
18+
19+
s.source_files = "Sources/**/*.swift"
20+
end
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<plist version="1.0">
3+
<dict>
4+
<key>CFBundleDevelopmentRegion</key>
5+
<string>en</string>
6+
<key>CFBundleExecutable</key>
7+
<string>$(EXECUTABLE_NAME)</string>
8+
<key>CFBundleIdentifier</key>
9+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
10+
<key>CFBundleInfoDictionaryVersion</key>
11+
<string>6.0</string>
12+
<key>CFBundleName</key>
13+
<string>$(PRODUCT_NAME)</string>
14+
<key>CFBundlePackageType</key>
15+
<string>BNDL</string>
16+
<key>CFBundleShortVersionString</key>
17+
<string>1.0</string>
18+
<key>CFBundleSignature</key>
19+
<string>????</string>
20+
<key>CFBundleVersion</key>
21+
<string>$(CURRENT_PROJECT_VERSION)</string>
22+
<key>NSPrincipalClass</key>
23+
<string></string>
24+
</dict>
25+
</plist>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<plist version="1.0">
3+
<dict>
4+
<key>CFBundleDevelopmentRegion</key>
5+
<string>en</string>
6+
<key>CFBundleExecutable</key>
7+
<string>$(EXECUTABLE_NAME)</string>
8+
<key>CFBundleIdentifier</key>
9+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
10+
<key>CFBundleInfoDictionaryVersion</key>
11+
<string>6.0</string>
12+
<key>CFBundleName</key>
13+
<string>$(PRODUCT_NAME)</string>
14+
<key>CFBundlePackageType</key>
15+
<string>FMWK</string>
16+
<key>CFBundleShortVersionString</key>
17+
<string>1.0</string>
18+
<key>CFBundleSignature</key>
19+
<string>????</string>
20+
<key>CFBundleVersion</key>
21+
<string>$(CURRENT_PROJECT_VERSION)</string>
22+
<key>NSPrincipalClass</key>
23+
<string></string>
24+
</dict>
25+
</plist>

0 commit comments

Comments
 (0)