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 withIPHONEOS_DEPLOYMENT_TARGET = 15.0 - Recommended release for Swift Package Manager and CocoaPods
- Use Exact Version
1.2.0for all new iOS integrations
Requirementsโ
| Setting | Value |
|---|---|
| iOS deployment target | 15.0+ |
| Xcode | 15.0+ |
| Swift | 5.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:
- Set SPM to Exact Version
1.2.0 - Lower your app target to iOS 15.0 if you need iOS 15 support (optional)
- File โ Packages โ Reset Package Caches
- Product โ Clean Build Folder
- Rebuild
Sample appโ
NCKit_Demo โ NCKitSample.xcodeproj at 1.2.0 with deployment target iOS 15.0.