2016-05-22 51 views
2

我總是在導入火力地堡框架得到以下警告我AppDelegate.swiftiOS的火力地堡進口警告和錯誤

import Firebase -> File 'AppDelegate.swift' is part of module 'Firebase'; ignoring import 

而且在didFinishLaunchingWithOptions:以下錯誤:

FIRApp.configure() -> Use of unresolved identifier 'FIRApp' 


我進口Firebase框架與CocoaPods。 這是我Podfile:

# Uncomment this line to define a global platform for your project 
# platform :ios, '9.0' 

target 'Firebase' do 
    # Comment this line if you're not using Swift and don't want to use dynamic frameworks 
    use_frameworks! 

    # Pods for Firebase 
    pod 'Firebase' 
    pod 'Firebase/Messaging' 

end 

任何想法,我做錯了嗎?

+0

同樣的問題here.Did你找到任何解決辦法? –

+0

@AliHayder還沒有。 –

回答

0

您應取消在Podfile中的第二行「# platform :ios, '9.0'」的註釋。我很確定那是那裏的問題。

+0

不幸的不是。我取消了該行的註釋並做了「pod更新」,但仍然是同樣的問題。 –

4

我相信這個問題可能是,你命名你的項目Firebase

+0

你是完全正確的,我有同樣的問題,我命名我的項目就像一個Cocoapods框架 –