Mobile App Support & Updates

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 15 of 15 servicesAll 1735 services
Simple
from 1 business day to 3 business days
Medium
from 1 business day to 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

Mobile Application Support: Monitoring, Hotfixes and OS Updates

Application in App Store — this is not completed project, but a living system. iOS 18 changes Background App Refresh behavior. Android 15 tightens foreground service policy. New iPhone 17 with different aspect ratio breaks hardcoded layout. All this requires reaction without full development cycle.

Crash Monitoring in Production

Firebase Crashlytics sends alert on crash rate rise above threshold. But receiving notification is not enough — you need a response process.

Metric to watch first: crash-free users rate. Below 99.5% — warning signal. Below 99% — incident. Google Play Console and App Store Connect show their own metrics calculated differently than Crashlytics — discrepancy is normal.

Typical scenario: after iOS 18.1 release a new crash appears in UISheetPresentationController on iOS 18.1 devices with specific app version. Crashlytics shows 0.3% affected users, but growing velocity. Operatively: verify on device, find cause (behavior change of detents in iOS 18.1), release hotfix.

For React Native additionally use Sentry with breadcrumbs — see what actions preceded crash. For Flutter — sentry_flutter with WidgetsFlutterBinding.ensureInitialized() and runZonedGuarded.

Hotfixes: What Can Be Done Without Store Release

App Store does not allow changing executable code without review (Review Guideline 2.5.2). But there are legal mechanisms for operative intervention.

Remote Config (Firebase or custom) — behavior change via flags without update. Disable problematic feature, show maintenance banner, change URL endpoint — all without release. Critical for monetization experiments and quick rollback.

OTA updates (React Native): react-native-code-push (Microsoft CodePush) or Expo Updates allow updating JS bundle without App Store. Limitation: JS code only, native modules require full update. Still falls under guideline restrictions on abuse — can't change key functionality via OTA.

Expo EAS Update — modern CodePush alternative for Expo projects with channel support (production/staging) and rollback.

OS Updates: Preparation and Testing

Apple announces iOS beta in June (WWDC), final release — in September. This gives three months for testing. In practice, many teams start in August and get surprises on release day.

Critical areas to check with every major iOS update:

  • Privacy Manifest — mandatory from iOS 17 for certain API usage. Without it reject on review
  • UIScene lifecycle changes
  • Changes in UICollectionView and UITableView animations
  • Swift Concurrency behavior

On Android similarly: target SDK must update annually (Google Play requires targetSdk minimum Android -1). Moving from targetSdk 33 to 34 changes behavior for foreground services, broadcast receivers, implicit intents.

Technical Debt and Planning

Support is not just bug reaction. Plan technical debt in backlog: outdated dependencies with known vulnerabilities (npm audit / bundler-audit), deprecated API to be removed in next Xcode, unsupported libraries.

Dependency updates via Dependabot (GitHub) or Renovate automatically create PR on new releases. This doesn't replace testing, but prevents "we haven't updated libraries in two years" situation.

Minimum supported OS version — review annually. Apple publishes version statistics, Google — Android distribution dashboard. Raising minimum from iOS 15 to iOS 16 allows removing significant amount of workaround code.

Response timeline for crash: critical crash hotfix (crash rate >1%) — within 24-48 hours before release, 3-7 days before Apple review pass (Expedited Review available for critical security and functionality issues).