LibSignalProtocolSwift
LibSignalProtocolSwift copied to clipboard
Value of type 'UnsafeMutablePointer<_>' has no member 'dataPtr'
I just create new project and install pod "pod 'LibSignalProtocolSwift'" after successfully install I try to build project but I'm getting this issue.
My Xcode version is 10.1 and I'm complied project with swift 4.2.
Looking forward to solution, Thanks
I don't know what went wrong with your pods, but if you need a quick fix you can use keyPtr.baseAddress!.assumingMemoryBound(to: UInt8.self)
instead of keyPtr.dataPtr
.
ohk let me try
still its not working :(
Hmm try to call pod update
instead of pod install
to make sure Curve25519 version 1.1 is installed. dataPtr
was introduced in version 1.1. Let me know if this works.
Yes sure let me try
@BaranEm still I'm facing same issue could you please check.
That's strange. Try to remove Cocoapods from your project and reintegrate it.