You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello everybody! Firstly I want to say thank you so much for this wonderful library.
Secondly I want to tell you, the way that I've got to update this library on the Swift 3.
At first I did add this pod, and at the end of my file I have the following entry
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
but after the update pods, I got an error that the library does not meet the Swift 3.
Then, I decided to make an update to this library and did my fork. And then I decided to just try to change the entry on the pod replace of pod "LiquidFloatingActionButton" with pod 'LiquidFloatingActionButton', :git => 'https://github.com/alexsanderkhitev/LiquidFloatingActionButton.git'
Then I updated again, and then update the compiler no longer shows the error, I just looked at the outcome of the code, it is now matched against the Swift 3. Please do not forget this record at the end of the Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end
The text was updated successfully, but these errors were encountered:
Hello everybody! Firstly I want to say thank you so much for this wonderful library.
Secondly I want to tell you, the way that I've got to update this library on the Swift 3.
At first I did add this pod, and at the end of my file I have the following entry
but after the update pods, I got an error that the library does not meet the Swift 3.
Then, I decided to make an update to this library and did my fork. And then I decided to just try to change the entry on the pod replace of
pod "LiquidFloatingActionButton"
withpod 'LiquidFloatingActionButton', :git => 'https://github.com/alexsanderkhitev/LiquidFloatingActionButton.git'
Then I updated again, and then update the compiler no longer shows the error, I just looked at the outcome of the code, it is now matched against the Swift 3. Please do not forget this record at the end of the Podfile
The text was updated successfully, but these errors were encountered: