voximplant / flutter_callkit

Flutter SDK for CallKit integration to Flutter applications on iOS
MIT License
53 stars 18 forks source link

callUUID are always uppercase #7

Closed VictorUvarov closed 3 years ago

VictorUvarov commented 3 years ago

It looks like CallKit will uppercase any UUID i send from the server. I had to lowercase all the UUIDs when sending them back to the server. I assume it is swift that is doing that transform. Is this correct? If so, this should probably be documented.

UUID(uuidString: callUUID)
VladimirBrejcha commented 3 years ago

Hi Victor, Yes, Apple's NSUUID returns the uppercase uuid by default. We will update the documentation to cover this, thanks!