I'm trying to add push notification to my mobile native chat app. I'm trying to use OneSignal.
I can send manual push notification, so I think gradle part is okay
idsAvaiable method is deprecated, I started to looking for how can I get userId.
OSPermissionSubscriptionState status = OneSignal.getPermissionSubscriptionState();
String userId = status.getSubscriptionStatus().getUserId();
In here, I'm trying to get userId with status, but it's saying:
Cannot resolve symbol 'OSPermissionSubscriptionState'
How can I get userId?
Root cause
From OneSignal API
4.0.0
, there are many APIs that have been removed includingOSPermissionSubscriptionState
.Solution 1
Use OneSignal.getDeviceState()
Solution 2
Use OneSignal.addSubscriptionObserver()
For more information, see the change log here.