I've tried to archive my project, but every time it stops at the same place. There is no error has been thrown in this case.
Anyone has faced this issue or any way to find what causes it to stop.
I've tried to archive my project, but every time it stops at the same place. There is no error has been thrown in this case.
Anyone has faced this issue or any way to find what causes it to stop.
This problem has been resolved.
Normally the way code has been done should have been working fine, but it didn't.
We had just declared one array, which was removing it's all values before inserting new once.
var arrayDictDeviceNames = [DeviceEndPointName]()
arrayDictDeviceNames.removeAll()
arrayDictDeviceNames.append(DeviceEndPointName.init())
Yes, arrayDictDeviceNames.append(DeviceEndPointName.init())
this statement was stopping that achieve. Weird.
Well, what we have done is to alloc our array - arrayDictDeviceNames
again and it worked fine.