Skip to main content
Code samples

NCKit v1.2.1

Released: June 2026

What's newโ€‹

  • ios-arm64_x86_64-simulator slice โ€” native simulator support on Apple Silicon and Intel Mac (arm64 and x86_64 simulator targets)
  • No Rosetta workaround required for Intel Mac simulators when using 1.2.1+
  • Minimum deployment target remains iOS 15.0+
  • Recommended release for Swift Package Manager and CocoaPods
  • Use Exact Version 1.2.1 for all new iOS integrations

Requirementsโ€‹

SettingValue
iOS deployment target15.0+
Xcode15.0+
Swift5.9+
Devicearm64
Simulatorarm64 and x86_64 via ios-arm64_x86_64-simulator

Install this versionโ€‹

SPM (Xcode): File โ†’ Add Package Dependencies โ†’ https://github.com/5Exceptions-Mobile-Team/NCKit.git โ†’ Exact Version 1.2.1

CocoaPods:

platform :ios, '15.0'

pod 'NCKit',
:git => 'https://github.com/5Exceptions-Mobile-Team/NCKit.git',
:tag => '1.2.1'

Package.swift:

platforms: [.iOS(.v15)],
dependencies: [
.package(
url: "https://github.com/5Exceptions-Mobile-Team/NCKit.git",
exact: "1.2.1"
)
]

After upgrading from 1.2.0 or older:

  1. Set SPM to Exact Version 1.2.1
  2. File โ†’ Packages โ†’ Reset Package Caches
  3. Product โ†’ Clean Build Folder
  4. Rebuild on device and simulator (including Intel Mac x86_64 simulator if applicable)

Sample appโ€‹

NCKit_Demo โ€” NCKitSample.xcodeproj at 1.2.1.

See Requirements for the updated XCFramework layout.