unity3d - How to get device token of device in Unity 5? -


i tring device token , dont want use update function.

right using following function:

if (!tokensent) {     token =unityengine.ios.notificationservices.devicetoken;     if (token != null) {         // send token provider         print ("my device token");         hextoken= "%" + system.bitconverter.tostring(token).replace('-', '%');         tokensent = true;     } } 


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -