I am hoping to get some tips to resolve the errors I am getting with CocoaPods install and Xcode compile for the IOS database example App.
$ pod install
Analyzing dependencies
Downloading dependencies
Using Bolts (1.7.0)
Using FBSDKCoreKit (4.12.0)
Using FBSDKLoginKit (4.12.0)
Using Firebase (3.2.0)
Using FirebaseAnalytics (3.2.0)
Using FirebaseAuth (3.0.2)
Using FirebaseDatabase (3.0.1)
Using FirebaseInstanceID (1.0.6)
Using FirebaseUI (0.4.0)
Using GoogleAppUtilities (1.1.1)
Using GoogleAuthUtilities (2.0.1)
Using GoogleInterchangeUtilities (1.2.1)
Using GoogleNetworkingUtilities (1.2.1)
Using GoogleSignIn (4.0.0)
Using GoogleSymbolUtilities (1.1.1)
Using GoogleUtilities (1.3.1)
Generating Pods project
Integrating client project
Sending stats
Pod installation complete! There are 3 dependencies from the Podfile and 16 total pods installed.
[!] Unable to read the license file `.../FireBase-quickstart/database/Pods/FirebaseUI/LICENSE` for the spec `FirebaseUI (0.4.0)`
If I add a license file in the Pods/FirebaseUI directory (just a copy of the Apache License) then the pod install runs without error, but the Xcode build still fails to find the FirebaseUI module:
FireBase-quickstart/database/DatabaseExampleSwift/PostDataSource.swift:18:8: error: no such module 'FirebaseUI'
import FirebaseUI
Xcode generates the same error if I try to build the Obj-C target.
My Podfile is unchanged from the version downloaded from GitHub:
# DatabaseExample
use_frameworks!
platform :ios, '7.0'
pod 'Firebase/Database'
pod 'Firebase/Auth'
pod 'FirebaseUI'
target 'DatabaseExample' do
end
target 'DatabaseExampleSwift' do
end
target 'DatabaseExampleTests' do
end
Thanks in advance for any suggestions.