I'm developing an iOS app that uses Firebase push notifications. It worked well with Testing Firebase Notifications and receiving notification on iOS device.
But Custom notification is not receiving on the device. How to debug what is a problem ? Is it a problem from Firebase console or iOS development issue.
Using an iPhone with ios 11.
For some reason, FCM isn't working on iOS 11. Read about it here
https://github.com/firebase/quickstart-ios/issues/327
In your podfile change your FirebaseMessaging to pod 'FirebaseMessaging', '2.0.0'
Related
I want to make chat app using nearby connections/bluetooth. I was using flutter_nearby_connection pack, which should work on both platform (ios + android), but it works only on IOS emulator. Real device is calling methods flutter -> swift.
I gave a lot of permissions (info.plist / permission handler/NSBonjourServices key). Right now I have a error [Core Bluetooth] XPC connection invalid . NSBluetoothPeripheralUsageDescription is added to plist and sandbox is off.
Did someone try this on real IOS? Documentation only has tests on IOS emulator, so idk if its problem by my side. Can u recommend other pack that will allow me to chat between Android - IOS?
MacOs 12.6.2, Xcode 14.2, IOS 15.7.1
while it works normally on Huawei device, my app doesn't work on iOS device. It crashes after opening.
huawei_analytics: ^6.2.0+302
I am using Revenuecat for in app subscription for android and ios. I successfully implemented revenuecat in app subscription for android. But I am not able to implement in iOS. I have followed all the steps to setup revenuecat subscription for ios in apple developer console and revenuecat.
When I tried Purchases.getOfferings() it is always returning Offerings{current:null, all:{}}. I am running app on iOS simulator.
Your configuration is empty. make sure you have add these configuration.
https://docs.revenuecat.com/docs/in-app-purchase-key-configuration
I have created IONIC 2 App and currently have launched only android version, now I am planning to publish IOS version for the same.
I created IOS package using ionic package and tested in Iphone and its working but the PUSH Notification is not working for IOS and I can not find a way to implement PUSH notification for IOS without using MAC/XCODE.
Docs explain things by using XCODE - https://docs.ionic.io/services/push
Please let me know what changes I need to make to activate PUSH for IOS, I already have created APN Certificate & App Development/App Store Certificate and have linked to IONIC.IO
Please suggest.
Thanks
It is possible to show a notification from Apple watchOS 2 native app? Although watchOS 2 applications can run directly on the Apple watch device, it still hasn't reference to the UIApplication.SharedApplication, so I can't all the UIApplication.presentLocalNotificationNow() directly from the WatchKit app an it seems that also the WKExtensionDelegate cannot be used to show instant notifications.
The WKExtensionDelegate can respond to local notifications via the didReceiveLocalNotification(_:) method. Your iPhone app will have to schedule the notification. If it is an even that only the watch knows about, you can send a message to the phone app using the WCSession set of APIs.