タイトルにもあるように、Podfileを編集後にpod installを実行するとエラーが発生してしまいます。
endが記載されていない時に発生するエラーらしいのですが、しっかり記載しています。何が原因で発生してしまっているのでしょうか。ご教示お願いします。
Firebaseを利用するために、pod 'Firebase/Analyticsという記述を追加しました。
Podfile
1# Uncomment the next line to define a global platform for your project 2# platform :ios, '9.0' 3 4target 'LoginWithFirebaseApp' do 5 # Comment the next line if you don't want to use dynamic frameworks 6 use_frameworks! 7 8 # Pods for LoginWithFirebaseApp 9 pod 'Firebase/Analytics 10 11end
その後、pod installを実行すると、下記のようなエラーが発生します。
error
1[!] Invalid `Podfile` file: unterminated string meets end of file 2/Users/macqenzie/workspace/swift/LoginWithFirebaseApp/Podfile:11: syntax error, unexpected end-of-input, expecting end. 3 4 # from /Users/macqenzie/workspace/swift/LoginWithFirebaseApp/Podfile:11 5 # ------------------------------------------- 6 # 7 > end 8 # -------------------------------------------
回答1件
あなたの回答
tips
プレビュー