Welcome to the
WalkMe Help Center
Please log in to continue
Select your data center
Please log in to continue
Das WalkMe SDK unterstützt die Integration mit allen WebView-basierten Hybrid-Apps. WalkMe stellt seine Logik und Benutzeroberfläche auf nativer Ebene bereit, sodass kein Risiko von Leistungsproblemen besteht oder Codeänderungen in der Host-App erforderlich sind.
In diesem Artikel wird erläutert, wie Sie das WalkMe SDK mithilfe des Cordova-Plugins in eine Hybrid-App integrieren.
$ cordova plugin add cordova-plugin-walkme-sdk
Oder von git:
$ cordova plugin add https://github.com/abbiio/cordova-plugin-walkme-sdk.git
<feature name="WalkMeSDK"> <param name="android-package" value="cordova.plugin.walkme.sdk.WalkMeSDK" /> </feature>
<script type="text/javascript" src="js/plugins/WalkMeSDK.js"></script>
<feature name="WalkMeSDK"> <param name="ios-package" value="WalkMeSDK" /> </feature>
<script type="text/javascript" src="js/plugins/WalkMeSDK.js"></script>
this.platform.ready().then(() => {
...
window.cordova.plugins['WalkMeSDK'].start('<App-Key>', '<App-Secret>');
});
document.addEventListener("deviceready", function() {
...
window.cordova.plugins['WalkMeSDK'].start('<App-Key>', '<App-Secret>');
}, false);
