Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Cross-Platform-Entwicklung (https://www.delphipraxis.net/91-cross-platform-entwicklung/)
-   -   iOS: Externes SDK in Build Process einbinden (https://www.delphipraxis.net/215460-ios-externes-sdk-build-process-einbinden.html)

bcvs 8. Jul 2024 11:15

iOS: Externes SDK in Build Process einbinden
 
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?


Alle Zeitangaben in WEZ +1. Es ist jetzt 23:58 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz