The "Firebase / Auth" dependency is installed, but they require a higher minimum deployment target

Google just updated its Firebase kernels, and several old methods are deprecated. One of them that I want to integrate is as follows: Firebase/Authhowever, importing into a podfile and running: pod installproduces an error:

[!] Unable to satisfy the following requirements:

- `Firebase/Auth` required by `Podfile`

Specs satisfying the `Firebase/Auth` dependency were found, but they required a higher minimum deployment target.

However, looking at the purpose of the assembly, I installed it in the latest version:

enter image description here

How can I alleviate this error?

+4
source share
3 answers

I have the same problem and I decided to update my pod file and put all the necessary modules in the last file, for example:

target 'UITests' do
  inherit! :search_paths

end
pod 'Firebase'
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Messaging'

end
#End of file

And run in the terminal:

pod update
0
source

, :

1) :
   :
1.1) cd Desktop/YourApp
 1.2) YOURMAC: YourApp Fernanda $sudo pod init

2) :

,  : ios, '8.0'

target 'YourApp' do
# , Swift
use_frameworks!

# YourApp
pod 'Firebase'

end

3) : pod install

4) :

, : ios, '8.0'
target 'YourApp' do
# , Swift
use_frameworks!
# YourApp
pod 'Firebase'
pod 'Firebase/Auth'

5) : pod  
, ,
!

0

, pod.

platform :ios, '9.0'

pod 'Firebase/Core'

target 'Unity-iPhone' do

target 'Unity-iPhone Tests' do
    inherit! :search_paths
    # Pods for testing
  end    
end
0

All Articles