Hallo zusammen.
aus einer Dokuemtation einer externen
SDK:
Code:
Build Process
This section describes how to add the XXXX
SDK to your app's build process.
iOS
Swift
Package Manager
If you are using Swift
Package Manager (SPM), add the following to
Package.swift :
.package(
url: "https://git.XXXX...", .exact("x.y.z"))
or if you are developing in Xcode, you can do the following:
Go to Project->
Package Dependencies
Click "+"
Enter
package URL "https://git.XXXX..."
Set "Dependency Rule" to "Exact Version"
Change version to: x.y.z
Click "Add
Package"
CocoaPods
If you are using CocoaPods, add the following to your Podfile:
source 'https://git.XXXX.../CocoaPodSpecs'
Inside the target specification add the following:
pod 'XXXX', 'x.y.z'
install the CocoaPods using the command line:
pod install
Sagt Euch das irgendwas? Was muss ich tun, um das in Delphi einzubinden? Geht das überhaupt?