You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is my understanding that starting with 6.15.0, FCM supports watchOS. I have been trying to install that pod in my standalone watch app but I am running into problems immediately. Adding the pod to the podfile and running pod install leads to the following error:
[!] The platform of the target `Example WatchKit App Extension` (watchOS 6.0) is not compatible with `Firebase/Messaging (6.16.0)`, which does not support `watchOS`.
Steps to reproduce:
Create a project with a standalone watch app.
Run pod init
Update the pod file to include Firebase/Messaging for the watch app extension
Run pod install
Relevant Code:
Podfile
inhibit_all_warnings!
use_frameworks!
target 'Example' do
platform :ios, '12.0'
pod 'Firebase/Messaging'
end
target 'Example WatchKit App Extension' do
platform :watchos, '6.0'
pod 'Firebase/Messaging'
end
Step 1: Describe your environment
CocoaPods
Step 2: Describe the problem
It is my understanding that starting with 6.15.0, FCM supports watchOS. I have been trying to install that pod in my standalone watch app but I am running into problems immediately. Adding the pod to the podfile and running
pod install
leads to the following error:Steps to reproduce:
pod init
Firebase/Messaging
for the watch app extensionpod install
Relevant Code:
Podfile
Example Project
Example.zip
The text was updated successfully, but these errors were encountered: