Does someone already successfully deployed an ios App with include a dynamic library? I try to include this library: https://cocoapods.org/pods/GoogleWebRTC (https://dl.google.com/dl/cpdc/0d72a13625d8f3e5/GoogleWebRTC-1.1.25331.tar.gz) But its always failed with
DYLD, Library not loaded: @rpath/WebRTC.framework/WebRTC | Referenced from: /var/containers/Bundle/Application/691B922F-44B9-4780-AC44-6E564866E92A/ALLiveVideoChatClient.app/ALLiveVideoChatClient | Reason: image not found
When I try to deploy the file ./Frameworks/WebRTC.framework/WebRTC
, then the deployment failed with error e8000067
. When I change the deployment path with for example ./WebRTC.framework/WebRTC
then deployment work but the app still crash with image not found. When I try to load the library using dlopen
then it's failed also (the application look like frozen, nothing written in the log)
Note: on https://cocoapods.org/pods/GoogleWebRTC they say the pod contain the armv7, arm64 and x86_64 slices. I try to deploy on iOS64 or iOS32, same problem.
So as from now (from ios 8) most libraries are dynamic, how to include in an delphi app an iOS dynamic library ?