Welcome to the
WalkMe Help Center
Please log in to continue
Select your data center
Please log in to continue
To add the WalkMe Mobile permalinks schema to your app, add the following URL scheme to your info.plist file (replace the <app_key> placeholder with your apps unique app key identifier, which can be found in App Settings).
com.walkme.<app_key> |
In your AppDelegate file override:
func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey: Any]) -> Bool; |
And call:
ABBI.open(url, options: options) |
In your AppDelegate file override:
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey, id> *)options; |
And call:
[ABBI openURL:url options:options]; |
To add the WalkMe Mobile permalinks schema to your app, add the following to your App Manifest file (replace the <app_key> placeholder with your app's unique app key identifier, which can be found in App Settings).
<intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:host="*" android:scheme="com.walkme.<app_Key>" /> </intent-filter> |