Mobile midcore game development

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
Mobile midcore game development
Complex
from 2 weeks to 3 months
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
    1052
  • 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 Midcore Game Development

Midcore—zone of maximum engineering stress in mobile gaming. Client expects meta-layer: progression, guilds, season pass, PvP leagues. Simultaneously works on Unity 2022 LTS on Snapdragon 680 without FPS drops and cold start under 4 seconds. Casual solutions don't scale, AAA architecture overkill. Must design system growing with monetization without breaking on new content addition.

Where Midcore Projects Fail Most

Most common fail point—progression system designed as Excel spreadsheet, not code. Balance recorded in ScriptableObject or local JSON, game launches—three months later discover adding new unit type impossible without rewriting four systems. Seen projects where UnitConfig contained 47 boolean flags, entire logic via if (isElite && hasBuff && !isFrozen). Doesn't work at 200 unit types.

Second pain point—network layer in PvP and co-op. Simple HTTP REST for real-time combat causes client and server diverge at 150ms delay by 3–4 steps. Client prediction without server validation—cheats. Server validation without rollback—jitter. Need Photon Fusion with state synchronization, or Mirror with deterministic physics (Deterministic Lockstep) where clients replay same commands same order.

Third problem—memory. Unity Addressables with wrong groups leaves previous scene in memory on level load. iPhone 12 tolerable. Android low-end 2GB RAM—OOM crash. Explicit lifecycle via Addressables.ReleaseInstance and proper bundle split: UI atlases separate, characters separate, environment separate.

How Midcore Architecture Structured

For midcore we use Entity Component System (ECS) via Unity DOTS or Arch for game simulation, separate MonoBehaviour layer for UI and visuals. Game logic (stats, buffs, AI, projectile physics) in ECS—deterministic and performant on job threads. Canvas, Animator, VFX—stays in Mono.

Meta-layer (inventory, progression, social) as separate domain with clear boundaries. Typical structure:

GameCore/
  ECS/          -- combat simulation (DOTS)
  Systems/      -- GameplayLoop, SpawnSystem, CombatSystem
  Data/         -- ScriptableObject configs + Firebase remote config
Meta/
  Inventory/
  Progression/  -- XP, levels, unlocks
  Social/       -- guilds, leaderboards (Google Play Games SDK / GameKit)
Network/
  Photon/       -- real-time PvP
  REST/         -- meta operations (purchases, saves)

Remote Config via Firebase—mandatory for balance. All numeric params: damage, upgrade cost, drop chances—in Remote Config, not build. Allows patching balance without store update.

Monetization: Unity IAP for purchases + ironSource or AppLovin MAX for ads with mediation. Important: iOS needs proper SKPaymentTransactionObserver handling—pending on interrupted internet must restore next launch, or Apple rejects per 3.1.1 guideline.

Case: 50v50 Battle and Renderer Overheating

One project—midcore strategy 50v50 combat—budgetAndroid CPU overheated after 8 min continuous. Profiler: 6ms per frame for SkinnedMeshRenderer.Update on 100 units. Solution—GPU Instancing for static meshes + GPU skinning via Compute Shader for distant units (distance > 15 units). Close units—normal skinned mesh. Distant—billboard or simplified vertex shader animation. CPU render time dropped 6ms to 1.8ms, temperature stabilized.

Timeline and Process

Midcore game from scratch—6–14 months depending on meta systems and content volume.

Stage Timeline
Preproduction: GDD, architecture, prototype core 4–6 weeks
Alpha: basic mechanics, meta v1, network 3–5 months
Beta: content, balance, monetization, LiveOps infra 2–4 months
Soft launch + metric iterations 1–2 months

Cost estimate—after GDD analysis and technical requirements. Critical understanding multiplayer volume: real-time PvP or async—significantly different workload.

Common Costly Mistakes

  • PlayerPrefs for critical progression. PlayerPrefs not atomic—crash between writes loses state. Need Cloud Save (Play Games SDK, Game Center) or own server with idempotent ops.
  • No analytics day one. Firebase Analytics or GameAnalytics must connect before soft launch, else no D1/D7/D30 baseline.
  • Hardcoded localization. Texts in code—adding language painful. Use Unity Localization Package with LocalizedString and tables.
  • Single build for all platforms. iOS and Android differ: texture compression (ASTC vs ETC2), memory limits, store guidelines. Scripting Define Symbols and Platform-specific Asset Variants—not optional.