In order to build your app on a SmartDeviceLink (SDL) Core, the SDL software development kit (SDK) must be installed in your app. The following steps will guide you through adding the SDL SDK to your workspace and configuring the environment.
The SDL SDK is currently supported on iOS 10.0 and above.
There are five different ways to install the SDL SDK in your project: Accio, Carthage, CocoaPods, Swift Package Manager, or manually.
1. Xcode should be closed for the following steps.
2. Open the terminal app on your Mac.
3. Make sure you have the latest version of CocoaPods installed. For more information on installing CocoaPods on your system please consult: https://cocoapods.org.
sudo gem install cocoapods
4. Navigate to the root directory of your app. Make sure your current folder contains the .xcodeproj file.
5. Create a new Podfile.
pod init
6. In the Podfile, add the following text. This tells CocoaPods to install SDL SDK for iOS. SDL Versions are available on Github. We suggest always using the latest release.
target ‘<#Your Project Name#>’ do pod ‘SmartDeviceLink’, ‘~> <#SDL Version#>’ end
7. Install SDL SDK for iOS:
pod install
8. There will be a newly created .xcworkspace file in the directory in addition to the .xcodeproj file. Always use the .xcworkspace file from now on.
9. Open the .xcworkspace file. To open from the terminal, type:
open <#Your Project Name#>.xcworkspace
You can install this library using the Swift Package Manager. You can install SDL into your iOS project using Xcode 12 by following these steps:
1. Open File -> Swift Packages -> Add Package Dependency...
2. Enter the URL https://github.com/smartdevicelink/sdl_ios.git
into the search box.
3. Use the default rules or customize the rules to use a specific version or branch. This library added SPM support in version 7.0.0, so please use at least that version.
4. You will be asked which package project to use. If you are using a Swift project, then you should use the SmartDeviceLinkSwift
project. If not, then you should use the SmartDeviceLink
project. You can use the SmartDeviceLink
project in a Swift project as well, but you will miss some Swift specific customizations, which are currently limited to logging enhancements.
5. In your SDL related code, use import SmartDeviceLink
to call most SDL-related code. If you want to use the Swift-specific logging enhancements you must also use import SmartDeviceLinkSwift
.
You can install this library using Accio, which is based on SwiftPM syntax. Please follow the steps on the Accio README linked above to initialize Accio into your application. Once installed and initialized into your Xcode project, the root directory should contain a Package.swift file.
1. Open the Package.swift file.
2. Add the following line to the dependencies array of your package file. We suggest always using the latest release of the SDL library.
.package(url: "https://github.com/smartdevicelink/sdl_ios.git", .upToNextMajor(from: "<#SDL Version#>")),
Please see package manifest format to specify dependencies to a specific branch / version of SDL.
3. Add "SmartDeviceLink"
or "SmartDeviceLinkSwift"
to the dependencies array in your target. Use "SmartDeviceLink"
for Objective-C applications and "SmartDeviceLinkSwift"
for Swift applications.
4. Install the SDK by running accio install
in the root folder of your project in Terminal.
SDL iOS supports Carthage! Install using Carthage by following this guide.
Tagged to our releases is a dynamic framework file that can be drag-and-dropped into the application.
You cannot submit your app to the app store with the framework as is. You MUST strip the simulator part of the framework first.
You can check the architectures of your built framework like so:
lipo -info SmartDeviceLink.framework/SmartDeviceLink
Use a script like this to strip the simulator part of the framework.
lipo -remove i386 -remove x86_64 -o SmartDeviceLink.framework/SmartDeviceLink SmartDeviceLink.framework/SmartDeviceLink