No Such Module “Sinch” Xcode 9.1 Swift 4

后端 未结 1 419
遥遥无期
遥遥无期 2021-01-23 17:35

This question may be duplicate of this \"Sinch Integration in swift project\" But i am doing all these steps But getting same error \" No such module \'Sinch\'. Below steps i h

相关标签:
1条回答
  • 2021-01-23 18:06

    I have done same thing with cocoapod and Bridge-Header and what I found is you don't need to import Sinch in your header.

    You can directly use it without importing. Check below screenshot:

    Pod File:

    target 'test' do
      # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
      use_frameworks!
    
    pod 'Alamofire', '~> 4.0'
    pod 'SinchRTC'
    
      # Pods for test
    
    end
    

    Bridge-Header File:

    #import <Sinch/Sinch.h>
    

    Check Example Project for more info.

    0 讨论(0)
提交回复
热议问题