Installation
Description
In this section, you can find all the information related to the integration of:
Professional List | Chat | My Health | Videocall | ![]() | ![]() | ![]() | ![]() |
---|---|---|---|
Requirements
Please make sure you are using the last Xcode compatible with our SDK
Swift | Xcode | MeetingDoctors | iOS | Status |
---|---|---|---|---|
5.7 | 15.3 | 6.2.x+ | 13.0+ | Supported |
5.7 | 15.3 | 7.1.x+ | 13.0+ | Supported |
5.7 | 16.0 | 8.x.x+ | 13.0+ | Supported |
In order to check the last updates please check our Release Notes.
Swift Package Manager
To install the MeetingDoctors library you must first include MeetingDoctors package.
Steps:
- Open Xcode then select Project > Package Dependencies > "+"
- Add repo url:
https://github.com/Meeting-Doctors/meetingdoctors-sdk-spm
Access permissions
Access to camera or photo gallery always requires explicit permission from the user. See Apple Documentation
Your app must provide an explanation for its use of capture devices using the NSCameraUsageDescription
and NSPhotoLibraryUsageDescription
Info.plist
key. iOS displays this explanation when initially asking the user for permission to attach an element in the current conversation.
Attempting to attach a gallery photo or start a camera session without an usage description will raise an exception.
Integration
To use the library is necessary to import it in our AppDelegate
:
import MeetingDoctorsSDK
Next, once the system notifies that your application is active, you should initializate the framework using the following method:
- MeetingDoctors.Configuration
- apikey
- The API Key for the environment.
- environment (default .production)
- If set to
.production
, the SDK interacts with the production environment. - If set to
.staging
, the SDK will communicate with the staging environment.
- If set to
- apikey
public static func initialize(
configuration: MeetingDoctors.Configuration,
completion: @escaping @Sendable (Swift.Result<UUID, any Error>) -> Void
)
Implementation example
func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
[...]
let configuration = MeetingDoctors.Configuration(apikey: apikey)
MeetingDoctors.initialize(configuration: configuration) { result in
switch result {
case let .success(value):
// Handle success
case let .failure(error):
// Handle error
}
}
[...]
}