20 lines
509 B
Swift
20 lines
509 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#if canImport(UIKit)
|
|
import Foundation
|
|
|
|
/// String constants used in the developer menu
|
|
struct DevMenuStringConstants {
|
|
static let notAvailable = "Not available"
|
|
static let unknownPlugin = "Unknown Plugin"
|
|
static let versionNotAvailable = "Version not available"
|
|
static let logTag = "DevMenu"
|
|
static let persistentLoggingPluginKey = "PersistentLoggingPlugin"
|
|
}
|
|
#endif
|