-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added workaround to fix google sign-in framework issue
- Loading branch information
1 parent
3cd9e34
commit 173eb78
Showing
1 changed file
with
10 additions
and
1 deletion.
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,4 +1,13 @@ | ||
# KiwiPods | ||
|
||
To integrate Kiwipods in your app add `pod 'KiwiPods', :git => 'https://github.com/KiwiTechLLC/KiwiPods.git'` to your pod file. | ||
KiwiPods are supported for `Swift 4.2` and `iOS 11.0 and above` | ||
KiwiPods are supported for `Swift 4.2` and `iOS 11.0 and above` | ||
|
||
|
||
In case `Social` depandency is needed, add following code in `podfile` : | ||
``` | ||
pre_install do |installer| | ||
# workaround for https://github.com/CocoaPods/CocoaPods/issues/3289 | ||
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {} | ||
end | ||
``` |