From 44f60ad03ceef284489f9083eef72ce88802a020 Mon Sep 17 00:00:00 2001 From: Tom Lokhorst Date: Thu, 19 Sep 2024 20:27:06 +0200 Subject: [PATCH] Update Examples.md --- Documentation/Examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/Examples.md b/Documentation/Examples.md index a361fcf1..cff6daa5 100644 --- a/Documentation/Examples.md +++ b/Documentation/Examples.md @@ -290,8 +290,8 @@ Values under `UIApplicationShortcutItems`, `UIApplicationSceneManifest`, `NSUser *With R.swift* -Access the values in the entitlement file you embedded. This might differ from the entitlements your app actually has at runtime! But it's greate to get some identifiers in a consistent way. +Access the values in the Info.plist file. ```swift -let sceneConfiguration = UISceneConfiguration(name: R.info.uiApplicationSceneManifest.uiSceneConfigurations.uiWindowSceneSessionRoleApplication.defaultConfiguration.uiSceneConfigurationName, sessionRole: .windowApplication) +let activity = NSUserActivity(activityType: R.info.nsUserActivityTypes.planTripIntent) ```