Getting started with Capacitor SDK
Follow the documentation on how to use Medallia Experience Orchestration Capacitor SDK.
Before you begin (version 2.0.0)
- Capacitor requirements:
- Capacitor Android 5.5.1
- Capacitor iOS 5.5.1
- Capacitor Core 5.5.1
- iOS requirements:
- Minimum deployment target 12.0
- Xcode 15+
- Base iOS version 17.0
- Android requirements:
- Android 9.0 - 14.0 (API levels 28 - 34)
- Android Gradle Plugin 8.0+
- Gradle 8.0+
- Java 17
- Kotlin 1.9.10+
Registration of Medallia's NPM
~/.npmrc
files:@medallia:registry=https://repository.medallia.com/artifactory/api/npm/public-npm
Installation of the MXO Capacitor SDK
App
's root folder and run the following command:npm install @medallia/mxo-capacitor-js-sdk
npx cap sync
If iOS and/or Android has not been added to your project, add them using the following commands as described in the Capacitor documentation for iOS and Android:npm install @capacitor/ios
npx cap add ios
npm install @capacitor/android
npx cap add android
npx cap sync
Installation for Android
In addition to the above, Android SDK requires the following updates to the build.gradle
files:
Applying the MXO Orchestration Plugin.
Adding the
coreLibraryDesugaring
dependency.
Configuration of the MXO Capacitor SDK
To configure the Medallia Experience Orchestration Capacitor SDK, see Configuring Capacitor SDK.
Removal of the MXO Capacitor SDK
To remove the MXO Capacitor SDK from your app, execute the following command in your Terminal:
npm uninstall @medallia/mxo-capacitor-js-sdk
npx cap sync