New Device Compatibility for Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
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 1 servicesAll 1735 services
New Device Compatibility for Mobile App
Medium
~2-3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1050
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Ensuring Mobile App Compatibility with New Devices

Apple released iPhone 16 with a new form factor and Dynamic Island instead of notch. Within a week, users started sending screenshots: status bar overlaps content, buttons moved under Home Indicator, camera covers part of the interface. The app didn't crash — it simply didn't know about new Safe Area insets.

What Specifically Breaks on New Device Release

Safe Area and Dynamic Island. On iOS, Safe Area insets depend on device model. Hardcoded insets — UIEdgeInsets(top: 44, left: 0, bottom: 34, right: 0) — are wrong for three iPhone generations already. Correct approach: view.safeAreaInsets or safeAreaLayoutGuide in Auto Layout. In SwiftUI — .ignoresSafeArea() with explicit edge specification, not globally.

Display cutout on Android. Starting with Android 9, there's DisplayCutout API. Devices with camera cutout (Pixel, Samsung A-series, Xiaomi) have WindowInsets.getDisplayCutout(). If app doesn't account for LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES or NEVER, content goes under cutout on fullscreen fragments.

Aspect ratio changes. Flagship phones from 2023–2024 have 19.5:9 and 20:9 ratio. If layouts are designed for 16:9 with fixed heights — content either stretches or black bars appear. On Android, test with <activity android:maxAspectRatio> — if not specified, OS might letterbox the app.

Foldable and large screens. Samsung Fold, Pixel Fold — app receives configuration change when unfolding. If Activity doesn't handle configChanges="screenSize|smallestScreenSize|screenLayout|orientation", recreation occurs with state loss. Jetpack WindowManager FoldingFeature lets you adapt layout to fold state.

Compatibility Check Process

Test new devices by layers:

  1. Simulator/emulator — primary layout check on new form factor without real hardware. Xcode Simulator for iPhone 16 Pro appears with Xcode release. Android Emulator — create AVD with needed resolution and density.

  2. Firebase Test Lab / BrowserStack — run UI tests on real device fleet. Especially important for Android: fragmentation is huge, emulator doesn't reproduce bugs specific to custom launchers and OEM skins.

  3. Real device — for touch, Face ID, camera, NFC. Some bugs reproduce only on hardware.

For iOS: check traitCollection.horizontalSizeClass and verticalSizeClass, UIScreen.main.bounds (though for layout, better not rely on global bounds — use container-relative layout).

For Android: WindowMetricsCalculator.computeCurrentWindowMetrics(activity) from Jetpack WindowManager instead of deprecated Display.getSize().

Typical Audit Findings

  • ScrollView without contentInsetAdjustmentBehavior = .automatic — content goes under Navigation Bar
  • WebView with fixed height instead of constraint to safeAreaLayoutGuide.bottomAnchor
  • Splash screen with hardcoded size — doesn't scale on Pro Max / Ultra
  • getStatusBarHeight() via reflection in old Android code — returns 0 on some new devices

Timeline

Auditing compatibility with new devices and fixing critical bugs — 2–3 days. If app was originally written without Auto Layout / ConstraintLayout (old frame-based code) — significant refactoring may be needed.