Files
ivinject/Features/Packaging/Models/InfoPlistDictionaryKeys.cs
2024-11-03 18:29:07 +03:00

16 lines
940 B
C#

namespace ivinject.Features.Packaging.Models;
internal static class InfoPlistDictionaryKeys
{
internal const string UiKitSupportedDevicesKey = "UISupportedDevices";
internal const string UiKitSupportsDocumentBrowserKey = "UISupportsDocumentBrowser";
internal const string UiKitFileSharingEnabledKey = "UIFileSharingEnabled";
internal const string CoreFoundationBundleIdentifierKey = "CFBundleIdentifier";
internal const string CoreFoundationBundleExecutableKey = "CFBundleExecutable";
internal const string WatchKitCompanionAppBundleIdentifierKey = "WKCompanionAppBundleIdentifier";
internal const string NextStepExtensionKey = "NSExtension";
internal const string NextStepExtensionPointIdentifierKey = "NSExtensionPointIdentifier";
internal const string NextStepExtensionAttributesKey = "NSExtensionAttributes";
internal const string WatchKitAppBundleIdentifierKey = "WKAppBundleIdentifier";
}