Skip to main content

Installation

Description

In this section, you can find all the information related to the integration of:

Professional ListChatMy HealthVideocall

Requirements

Please make sure you are using the last Xcode compatible with our SDK

SwiftXcodeMeetingDoctorsiOSStatus
5.715.36.2.x+13.0+Supported
5.715.37.1.x+13.0+Supported
5.716.08.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

info

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.

caution

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:

parameters
  • 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.
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
}
}
[...]
}