iOS SDK Migration Service: Update Your App for App Store Compliance

Noted: when you submit your latest build to the App Store, an hour later an email arrives: "ITMS-91053: Missing Privacy Manifest." With every new iOS SDK version, Apple deprecates old APIs and introduces mandatory requirements. Without planned migration, you risk being unable to submit updates. We f

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1734 services
iOS SDK Migration Service: Update Your App for App Store Compliance
Medium
~3-5 days

Our competencies:

Frequently Asked Questions

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    895
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    782
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1216
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1079
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    1002
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    597

Noted: when you submit your latest build to the App Store, an hour later an email arrives: "ITMS-91053: Missing Privacy Manifest." With every new iOS SDK version, Apple deprecates old APIs and introduces mandatory requirements. Without planned migration, you risk being unable to submit updates. We frequently encounter these scenarios and offer end-to-end migration — including audit, update, and guarantee.

What Actually Breaks When Changing SDKs

Deprecated APIs are the most extensive part of the work. UIWebView has been removed since the iOS 15 SDK; apps using it receive rejection with ITMS-90809. UIAlertView, UIActionSheet, shouldAutorotateToInterfaceOrientation — these methods no longer compile in the iOS 16 SDK. We search the codebase via Xcode #available and the deprecated list from the specific SDK release notes.

Privacy Manifest (iOS 17 SDK) — a new requirement from recent versions. Every third-party dependency and the app itself must include a PrivacyInfo.xcprivacy file declaring the used API categories (NSPrivacyAccessedAPITypes): NSUserDefaults, NSFileManager, NSProcessInfo, UIDevice.systemBootTime. If the file is missing, ITMS-91053 appears as a warning (now an error) during submission.

Example PrivacyInfo.xcprivacy:

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" ...> <plist version="1.0"> <dict> <key>NSPrivacyAccessedAPITypes</key> <array> <dict> <key>NSPrivacyAccessedAPIType</key> <string>NSPrivacyAccessedAPICategoryUserDefaults</string> <key>NSPrivacyAccessedAPITypeReasons</key> <array> <string>CA92.1</string> </array> </dict> </array> </dict> </plist> 

Reasons must be specific codes from Apple's documentation. CA92.1 for UserDefaults means "storage of settings directly managed by the user." You can't just write any code — you must choose from the approved list. If none fit, you need to write to Apple via App Review, which is a challenge in itself.

Swift Concurrency and Sendable — iOS 16+ SDK includes enhanced Sendable checks and actor isolation. A project that built without warnings on an older SDK will produce dozens of warnings like Capture of non-Sendable type 'SomeModel' on the new SDK. With iOS 17 SDK, some become errors when strict concurrency checking: complete is enabled. On large codebases, this is a significant effort.

How We Perform the Migration

  1. Audit via xcodebuild

    xcodebuild -workspace MyApp.xcworkspace \ -scheme MyApp \ -destination 'generic/platform=iOS' \ -sdk iphoneos17.0 \ build 2>&1 | grep -E "error:|warning:" | sort | uniq -c | sort -rn | head -50 

    This provides a quantitative picture: how many errors, which categories, top 50 by frequency. For a 300k line codebase jumping from iOS 14 SDK to iOS 17 SDK, typical results are 15–40 errors and 100–300 warnings. Our automated audit approach is 10–15 times faster than manual code review.

    Analysis of Third-Party Dependencies The second issue is libraries that haven't been updated in two years. Our checklist:

    • CocoaPods: pod outdated for a list of outdated dependencies
    • SPM: check Package.resolved, look for libraries without recent tags on GitHub
    • Dependencies with outdated deployment target — conflicts with the app's new minimum iOS version

    A special case is dependencies without a Privacy Manifest. Apple requires manifests from popular SDKs (Firebase, Crashlytics, Amplitude, Adjust, and others have updated their packages). But for lesser-known libraries, the manifest may be missing, requiring either forking and adding it or removing the dependency.

    Migration by Complexity Levels

    Category of Changes Effort
    Replace UIWebViewWKWebView Medium (delegate API changes)
    Privacy Manifests for custom code Low (configuration)
    Privacy Manifests for third-party SDKs Depends on author support
    Sendable/actor isolation warnings High (architectural changes)
    Removed APIs (UIAlertView etc.) Low (direct replacement)

What's Included in Our Work

  • Full codebase audit with xcodebuild and identification of all blocked APIs
  • Configuration of Privacy Manifest for the app and all dependencies
  • Updating third-party SDKs to versions compatible with the new iOS SDK
  • Fixing Sendable/actor isolation warnings
  • Testing on real devices with the new iOS version
  • Documentation of changes and recommendations for ongoing support
  • 30-day guarantee after delivery

How We Test After Migration

Smoke tests on a real device with the new iOS are mandatory. Simulator and real device can behave differently when changing SDKs, especially regarding URLSession timeouts, push notifications, and background execution.

Crashlytics or Firebase Crash Reporting — after release we monitor new crash signatures in the first 24–48 hours. SDK migration sometimes introduces crashes in edge cases not covered by tests.

Timeline Estimates

Timelines depend on codebase size, number of deprecated APIs, and dependency state:

Project Timeline
Small app (< 50k lines, few dependencies) 1–2 days
Medium project (50–150k lines) 3–5 days
Large project with legacy Obj-C code 1–2 weeks

Cost is calculated individually, but you save by catching issues early — migration costs are always lower than the consequences of blocked releases. Contact us for an accurate assessment. With experience migrating over 50 projects, we guarantee to account for all pitfalls. Get a consultation for your codebase — we'll conduct an audit in one day.

Apple App Store Review Guidelines