简体   繁体   中英

How to integrate zoho 'Mobilisten' to xcode 11

i am trying to add 'Mobilisten' through pods to xcode 11, but getting error 'Module compiled with Swift 5.0.1 cannot be imported by the Swift 5.1 compiler'.

I think Mobilisten has not release its sdk for xcode swift that has swift 5.1. I am also facing the same issue, need to wait till they release.

You should try updating to Mobilisten 3.1.0
You can find the release notes for the update here .

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'

target 'Project Target' do
  use_frameworks!
  pod 'Mobilisten', '3.1.0'
end


Add the above version of Mobilisten to your Podfile and run pod repo update && pod install

Depending on the version of Swift/Xcode used, you can always find the compatibility matrix for Mobilisten in the installation page here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM