Following the instructions here for .net SDK to get push notifications set up - it mentions registering the device with public void Backendless.Messaging.RegisterDevice( String token ) (Blocking)
or public Task RegisterDeviceAsync( String token ) (non-blocking)
Am I missing something? I can’t seem to figure it out.
OK I managed to work around this by using plugin.firebase as well as a REST API call for device registration instead.
New question - how often does deviceID change? While I’m testing, is it every time the app is deployed to the device a new ID is created? In production will it more likely be static?