MisoGlobalInfo

Swift package to get basic information from the hardware / os / info.plist

2
0
Swift

MisoGlobalInfo

Swift package to get basic information from the hardware / os / info.plist

Instead of searching everywhere for the most used variables, these are provided here.

Main app’s bundle info

  • Application name: GlobalInfo.App.displayName
  • Copyright: GlobalInfo.App.copyright
  • Identifier: GlobalInfo.App.bundleIdentifier
  • Version: GlobalInfo.App.bundleShortVersion, GlobalInfo.App.bundleVersion, and GlobalInfo.App.bundleVersionAsInt.
  • Environment: GlobalInfo.App.isiOSOnMac, GlobalInfo.App.isMacCatalyst, GlobalInfo.App.isMacAppleSiliconNativeCode.
  • Execution environment: GlobalInfo.App.isPreview, GlobalInfo.App.isRunningTests
  • Build architecture: GlobalInfo.App.buildArchitecture

Main app’s argument parsing

  • Argument detection: GlobalInfo.App.hasArgument
  • Argument value retrieval: GlobalInfo.App.argumentValue
  • Process Path: GlobalInfo.App.processPathName

Hardware environment

  • Device architecture: GlobalInfo.HW.architecture
  • Device is a Simulator: GlobalInfo.HW.isSimulator
  • Device code name: GlobalInfo.HW.modelIdentifier, GlobalInfo.HW.simulatorModelIdentifier
  • Device family name (iPhone, iPad, …): GlobalInfo.HW.family

Software environment

  • OS version (localized): GlobalInfo.OS.localizedVersion
  • OS version: GlobalInfo.OS.majorVersion, GlobalInfo.OS.minorVersion, GlobalInfo.OS.patchVersion

App store receipt validation

  • App store receipt retrieval: GlobalInfo.App.appStoreReceiptURL and GlobalInfo.App.appStoreReceipt
  • identifierForVendor’s UUID retrieval (not for advertisement): GlobalInfo.OS.uuid

macOS 11 / iOS 14 Logger support

  • Defines the subsystem as the bundleIdentifier automatically. Simply create your logger with the
    category: Logger(category: "SomeCategory")
  • Defines the subsystem as well as the category automatically from the file name: Logger(file: #file)
  • Sends a one-liner on the current app execution context. Useful at app startup: Logger.logAppContext() and
    Logger.logAppContextOnce()

Version History

1.0.5

  • OSS-74 Execute complex operations only once
  • OSS-75 Add one-liner app info logging
  • OSS-76 Add command-line arguments parsing
  • OSS-77 Add Rosetta detection
  • OSS-78 Add OS version detection

1.0.4

  • OSS-73 Added isPreview and isRunningTests to App

1.0.3

  • OSS-72 Added Logger(file: #file) simplification

1.0.2

  • Added version history.
  • OSS-69 Removed GlobalInfo.App.hasAppStoreReceipt as it breaks Apple suggestion for file retrieval’s good practice. Data will return nil if invalid.
  • OSS-70 Added macOS app environment information (running an iOS app on Mac, running on Mac Catalyst, running an Apple Silicon native version).

1.0.1

  • OSS-68 Added simple Logger for macOS 11 / IOS 14
  • OSS-67 Improved sysctl calls for macOS

1.0.0

  • Initial Revision

Colophon

The official address for this package

The git / package url

This package is created and maintained by Misoservices Inc. and is licensed under the BSL-1.0: Boost Software License - Version 1.0.