Once you have your Swift package set up, adding TDLib as a dependency is as easy as adding it to the dependencies value of your Package.swift.
dependencies: [
.package(url: "https://github.com/oboupo/tdlib-spm.git", .upToNextMajor(from: "1.7.0"))
]
Usage:
import tdjson
Sample of code can be found in official tdlib repo
Below are instructions for building tdjson.xcframework
.
To compile tdjson
you will need to:
- Install the latest Xcode via
xcode-select --install
or downloading it from Xcode website. It is not enough to install only command line developer tools to buildTDLib
for iOS. - Install other build dependencies using Homebrew:
brew install gperf cmake coreutils
- Build TDLib for iOS, watchOS, tvOS and macOS:
./xcframework.sh
This may take a while, because TDLib will be built about 10 times.
Built framework will be store in build
directory.
Other documentation can be found at https://github.com/tdlib/td/tree/master/example/ios.