Welcome to the
WalkMe Help Center
Please log in to continue
Please log in to continue
The WalkMe iOS SDK is compatible with .NET MAUI for iOS. This article explains how to integrate the WalkMe iOS SDK with a MAUI app using NuGet.
dotnet add package WalkMe.Maui.iOS --version 1.0.24
using Foundation;
using WalkMe.Maui.iOS;
namespace YourAppName;
[Register("AppDelegate")]
public class AppDelegate : MauiUIApplicationDelegate
{
protected override MauiApp CreateMauiApp()
{
ABBI.Start("APP_KEY", "APP_SECRET");
return MauiProgram.CreateMauiApp();
}
}
Replace APP_KEY and APP_SECRET with the values from your system in the Admin Center.
Launch the app with the WalkMe SDK integrated and press and hold 5 fingers on the screen for 5 seconds until the login popup displays. This is the default setting and can be configured at any time in the console.
Log in to Power Mode with your mobile console credentials to complete the sync.
Confirm the integration is working by checking your logs for: ABBI SDK. You should see the current version of the SDK and the app ID you're using.