1
コードベースアプリのiosでfirebase通知を追加しようとしていますが、できません。 これは私がやった手順は次のとおりです。firebase通知cordova ios integration
1-作成firebaseプロジェクト
2コピーGoogleservice-のInfo.plist
3インストールコルドバのプラグインFCMは
ファイルにこのコードを4 - 追加の設定ファイルindex.js
window.FirebasePlugin.grantPermission();
FCMPlugin.onNotification(function(data){
if(data.wasTapped){
//Notification was received on device tray and tapped by the user.
console.log(JSON.stringify(data));
}else{
//Notification was received in foreground. Maybe the user needs to be notified.
console.log(JSON.stringify(data));
}
});
FCMPlugin.subscribeToTopic(topicSub);
5インストールcocoapods 6-実行このコマンド:
pod init
7は、中のファイルPodFile私はこのコードを挿入した
:
今.xcworkspaceファイルと
pod install
10-開いているプロジェクトのXcode:このCOMANDと
pod ’Firebase/Core’
pod 'Firebase/Messaging'
8-インストールポッドこのエラーを返信:
diff: /../Podfile.lock: No such file or directory
diff: /Manifest.lock: No such file or directory
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.
何が問題なのですか?
cordova plugin add cordova-plugin-cocoapod-support --save
この作品を私のために: