Skip to content

Commit

Permalink
Merge pull request AckeeCZ#10 from AckeeCZ/integration
Browse files Browse the repository at this point in the history
Dependency managers support
  • Loading branch information
LukasHromadnik authored Jul 22, 2021
2 parents 77d3350 + 3a9ef54 commit 6f016b4
Show file tree
Hide file tree
Showing 18 changed files with 823 additions and 62 deletions.
1 change: 0 additions & 1 deletion .gitignore
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
23 changes: 23 additions & 0 deletions CHANGELOG.md
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)
20 changes: 20 additions & 0 deletions OpenGoogleSignInSDK.podspec
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 OpenGoogleSignInSDK.xcodeproj/OpenGoogleSignInSDKTests_Info.plist
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 OpenGoogleSignInSDK.xcodeproj/OpenGoogleSignInSDK_Info.plist
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>
Loading

0 comments on commit 6f016b4

Please sign in to comment.