Open vargajacint opened 8 months ago
Hello @vargajacint thanks for reaching out! We are looking into this.
I'm suffering the same issue here. Pending to be resolved
Until this is fixed I use:
if(Platform.OS==='android'){
OneSignal.Notifications.requestPermission(false);
}else{
OneSignal.Notifications.requestPermission();
}
since on IOS it works if no arguments are present. And on android it must have argument.
What happened?
I have observed that even after explicitly setting the parameter to
false
in the method callOneSignal.Notifications.requestPermission(false);
, iOS still presents a fallback alert. Additionally, the function returns an array that contains a boolean value on iOS, instead of returning a boolean value directly.Everything is working correctly on Android as per the documentation.
Versions: react-native-onesignal: 5.1.0 OneSignalXCFramework: 5.1.3
Steps to reproduce?
What did you expect to happen?
Not present the fallback alert if I call the function with
false
value. Also, the return value should be boolean on iOS as wellReact Native OneSignal SDK version
5.1.0
Which platform(s) are affected?
Relevant log output
No response
Code of Conduct