I am checking for SMS notification subscription code in Native Android and IOS. I was able to find code for hybrid app but can some body help with a sample code for native Android and IOS.
I was checking the below link
https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/7.1/notifications/sms-notifications/
There is no support for SMS in native applications in MobileFirst Platform Foundation 7.1. You can do this, though, in IBM MobileFirst Foundation 8.0. See:
Notifications overview: https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/notifications/
Handling SMS notifications: https://mobilefirstplatform.ibmcloud.com/tutorials/en/foundation/8.0/notifications/handling-sms-notifications/
Related
To give more clarity on the issue, i am developing this for IOS using expo notifications and expo sdk44 in my current project.
I have a couple of questions which i failed to find the answer to in their official documentation.
Is it possible to display images in a local notification while using expo's expo-notification library?
Is it possible to send "data-only" messages to Apple devices using expo push notification service?
Thanks in advance
expo-notifications has limited features and not currently support a custom image in the notification.
In case you need a native-like notification experience, you should opt for https://notifee.app/.
I am trying to implement cloud messaging firebase in react native app, I follow a lot of tutorials but non of them works fine like :
https://medium.com/#rempire230/push-notification-for-android-in-react-native-282019867f86
https://medium.com/#anum.amin/react-native-integrating-push-notifications-using-fcm-349fff071591
The android app always crash when receiving a message in foreground or background.
I would be grateful If anybody can recommend a good tutorial about using FCM in react native (for both android and ios).
Thanks in advance.
I have found this tutorial and it works fine for android and ios:
React Native #31: Firebase Notification (react-native-firebase Version 7)
https://www.youtube.com/watch?v=dyAwv9HLS60&t=805s
https://github.com/tranhonghan/RNFirebaseV7/
I would like to initiate a call with the react-native api and play a ringtone on the receiving phone. Is this supported on the api?
From Samyak Jain's answer
You can check out this library: https://github.com/react-native-webrtc/react-native-callkeep
It uses callkit on the ios side and connection service on the android side.
We also have some sample apps for IOS and Android that use CallKit and ConnectionService respectively and use Agora RTM. You can find them here: https://github.com/AgoraIO/Advanced-Video/tree/dev/backup/Calling-Interface
i already follow the instruction given http://docs.aws.amazon.com/sns/latest/dg/mobile-push-gcm.html#registration-id-gcm. But my created app didnt received any notification.
Can someone shed light on me.
You have:
Installed the Android SDK
Installed the Google Play Services SDK
Installed the Android Support Library package
Registered your app with GCM to receive push notification message
(you have a registration ID)
If not, start at http://docs.aws.amazon.com/sns/latest/dg/mobile-push-gcm.html.
With IBM Worklight 6.2.0.1
Is It possible to show worklightSetting (show/modify worklight server url:port) for Native Apps ?
application-descriptor.xml don't include worklightSetting properties for Native API.
Thanks
The worklightSetting bundle in iOS is available out-of-the-box only for a Hybrid application.
For fully-native applications only an SDK containing adapter and authentication API methods is provided, and so any bundle you'd like to have you will need to implement on your own.
However, starting MobileFirst Platform 6.3, there are new API methods to accomplish exactly this (which you could create a UI for).
Hybrid: WL.App.getServerUrl and WL.App.setServerUrl
Native iOS: serverUrl and setServerUrl in the WLClient class
Native Android: setServerUrl and getServerUrl in the WL and WLClient classes
Native WP8: WLClient.getInstance().getServerUrl and WLClient.getInstance().setServerUrl in the WLClient class