Skip to main content
Code samples

NCKit v1.2.0

Released: June 2026

Superseded

For new iOS projects, use v1.2.1 (ios-arm64_x86_64-simulator, Intel Mac support).

What's newโ€‹

  • Minimum deployment target: iOS 15.0 โ€” integrate NCKit into apps that support iOS 15+
  • Sample app (NCKit_Demo) updated to v1.2.0 with IPHONEOS_DEPLOYMENT_TARGET = 15.0
  • Recommended release for Swift Package Manager and CocoaPods
  • Use Exact Version 1.2.0 for all new iOS integrations

Requirementsโ€‹

SettingValue
iOS deployment target15.0+
Xcode15.0+
Swift5.9+

Install this versionโ€‹

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

CocoaPods:

platform :ios, '15.0'

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

Package.swift:

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

After upgrading from 1.1.1 or older:

  1. Set SPM to Exact Version 1.2.0
  2. Lower your app target to iOS 15.0 if you need iOS 15 support (optional)
  3. File โ†’ Packages โ†’ Reset Package Caches
  4. Product โ†’ Clean Build Folder
  5. Rebuild

Sample appโ€‹

NCKit_Demo โ€” NCKitSample.xcodeproj at 1.2.0 with deployment target iOS 15.0.