forked from AckeeCZ/OpenGoogleSignInSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request AckeeCZ#10 from AckeeCZ/integration
Dependency managers support
- Loading branch information
Showing
18 changed files
with
823 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
.DS_Store | ||
/.build | ||
/Packages | ||
/*.xcodeproj | ||
xcuserdata/ | ||
DerivedData/ | ||
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# CHANGELOG | ||
|
||
- please enter new entries in format | ||
|
||
``` | ||
- <description> (#<PR_number>, kudos to @<author>) | ||
``` | ||
|
||
## Next | ||
|
||
### Added | ||
|
||
- `audience` parameter for server-side sign after a token is obtain (#9, kudos to @paweldudek) | ||
|
||
## 1.1.0 | ||
|
||
### Added | ||
|
||
- Load user's profile (#6, kudos to @LukasHromadnik) | ||
|
||
## 1.0.0 | ||
|
||
- 🎉 Initial release (kudos to @IgorRosocha) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "OpenGoogleSignInSDK" | ||
s.version = "1.1.0" | ||
s.summary = "OpenGoogleSignInSDK takes care of Google Sign-In flow using OAuth 2.0." | ||
s.description = <<-DESC | ||
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 | ||
DESC | ||
s.homepage = "https://github.com/AckeeCZ/OpenGoogleSignInSDK" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.authors = { "Ackee" => "[email protected]" } | ||
s.source = { :git => "https://github.com/AckeeCZ/OpenGoogleSignInSDK.git", :tag => s.version } | ||
|
||
s.ios.deployment_target = "12.0" | ||
s.osx.deployment_target = "10.15" | ||
|
||
s.swift_version = "5.4.2" | ||
|
||
s.source_files = "Sources/**/*.swift" | ||
end |
25 changes: 25 additions & 0 deletions
25
OpenGoogleSignInSDK.xcodeproj/OpenGoogleSignInSDKTests_Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleExecutable</key> | ||
<string>$(EXECUTABLE_NAME)</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>$(PRODUCT_NAME)</string> | ||
<key>CFBundlePackageType</key> | ||
<string>BNDL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>$(CURRENT_PROJECT_VERSION)</string> | ||
<key>NSPrincipalClass</key> | ||
<string></string> | ||
</dict> | ||
</plist> |
25 changes: 25 additions & 0 deletions
25
OpenGoogleSignInSDK.xcodeproj/OpenGoogleSignInSDK_Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleExecutable</key> | ||
<string>$(EXECUTABLE_NAME)</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>$(PRODUCT_NAME)</string> | ||
<key>CFBundlePackageType</key> | ||
<string>FMWK</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>$(CURRENT_PROJECT_VERSION)</string> | ||
<key>NSPrincipalClass</key> | ||
<string></string> | ||
</dict> | ||
</plist> |
Oops, something went wrong.