adamhartford / SwiftR

Swift client for SignalR (iOS and Mac)
MIT License
174 stars 74 forks source link

dyld: Library not loaded: @rpath/SwiftR.framework/SwiftR #115

Open sathishTkumar opened 6 years ago

sathishTkumar commented 6 years ago

Hi, Basically am trying to built a custom framework which uses SignalR. So I reached out to Cocoapod to install SwiftR and I followed the same steps you instructed. Once done, when i build the framework and integrate the same in my sample native iOS application project, on running it in my device, the app is crashing with the below error :

dyld: Library not loaded: @rpath/SwiftR.framework/SwiftR Referenced from: /private/var/containers/Bundle/Application/4D90F911-C15A-4059-92C5-BF983A3FA39B/AAAA.app/Frameworks/YYYY.framework/YYYY Reason: image not found

This is what in my Podfile FYR: platform :ios, '9.0' target 'YYYY' do use_frameworks! pod 'SwiftR' end

Kindly help me in getting rid of this issue.