diff --git a/frontend/ios/App/Podfile b/frontend/ios/App/Podfile index 359c5a1..7bacbb2 100644 --- a/frontend/ios/App/Podfile +++ b/frontend/ios/App/Podfile @@ -11,6 +11,7 @@ install! 'cocoapods', :disable_input_output_paths => true def capacitor_pods pod 'Capacitor', :path => '../../node_modules/@capacitor/ios' pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios' + pod 'CapacitorCommunityFcm', :path => '../../node_modules/@capacitor-community/fcm' pod 'CapacitorDevice', :path => '../../node_modules/@capacitor/device' pod 'CapacitorPushNotifications', :path => '../../node_modules/@capacitor/push-notifications' end diff --git a/frontend/package-lock.json b/frontend/package-lock.json index bd270b9..5769eec 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -6,6 +6,7 @@ "": { "hasInstallScript": true, "dependencies": { + "@capacitor-community/fcm": "^3.0.0", "@capacitor/core": "^4.3.0", "@capacitor/device": "^4.0.1", "@capacitor/ios": "^4.3.0", @@ -548,6 +549,14 @@ "node": ">=6.9.0" } }, + "node_modules/@capacitor-community/fcm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@capacitor-community/fcm/-/fcm-3.0.0.tgz", + "integrity": "sha512-YLPPy7wiuWSg4Uocw8FWpA3c7YSwyY2iNVr09UycZkbMwTBSDmMnr23guMstRgN/y2qT9X2WyHkpLFCWeeD5VQ==", + "peerDependencies": { + "@capacitor/core": "^4.0.0" + } + }, "node_modules/@capacitor/cli": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/@capacitor/cli/-/cli-4.3.0.tgz", @@ -11288,6 +11297,12 @@ "to-fast-properties": "^2.0.0" } }, + "@capacitor-community/fcm": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@capacitor-community/fcm/-/fcm-3.0.0.tgz", + "integrity": "sha512-YLPPy7wiuWSg4Uocw8FWpA3c7YSwyY2iNVr09UycZkbMwTBSDmMnr23guMstRgN/y2qT9X2WyHkpLFCWeeD5VQ==", + "requires": {} + }, "@capacitor/cli": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/@capacitor/cli/-/cli-4.3.0.tgz", diff --git a/frontend/package.json b/frontend/package.json index 289a459..e5f861b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -17,6 +17,7 @@ "nuxt-icon": "^0.1.5" }, "dependencies": { + "@capacitor-community/fcm": "^3.0.0", "@capacitor/core": "^4.3.0", "@capacitor/device": "^4.0.1", "@capacitor/ios": "^4.3.0",