5G Network Slicing capabilities in 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
5G Network Slicing capabilities in mobile app
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

Integrating 5G Network Slicing Capabilities in Mobile Applications

5G Network Slicing — telecom operator ability to allocate mobile application separate virtual network resource with guaranteed parameters: bandwidth, latency, reliability. Not "faster" but "guaranteed". Difference principle for medical, industrial and AR applications.

What Network Slicing Is in Practice

Physical 5G network divides into isolated "slices". Each slice — separate network container with dedicated RAN (Radio Access Network), transport and core resources. For application this means:

  • eMBB (Enhanced Mobile Broadband) — max bandwidth, up to 10 Gbit/s. For 4K/8K streaming, VR.
  • URLLC (Ultra-Reliable Low-Latency Communication) — latency <1 ms, reliability 99.999%. For managing industrial equipment, remote surgery.
  • mMTC (Massive Machine-Type Communication) — low power, thousands devices. For IoT sensors, telemetry.

Important: in 2024 Network Slicing available only via operator APIs supporting it. In Russia — MTS, Rostelecom in pilot zones. In Europe — Deutsche Telekom, Telefonica, Vodafone. Without operator contract and SIM card support, slice unavailable.

Accessing Network Slicing from Mobile Application

No direct OS API for requesting slice. Mechanism depends on platform and operator partnership:

Android (API 33+): TelephonyManager.isDataCapable(), NetworkCapabilities.NET_CAPABILITY_PRIORITIZE_LATENCY, NET_CAPABILITY_PRIORITIZE_BANDWIDTH. From Android 13 NetworkRequest allows specifying quality requirements — OS translates to slice request via operator.

val networkRequest = NetworkRequest.Builder()
    .addCapability(NetworkCapabilities.NET_CAPABILITY_INTERNET)
    .addCapability(NetworkCapabilities.NET_CAPABILITY_PRIORITIZE_LATENCY)
    .addTransportType(NetworkCapabilities.TRANSPORT_CELLULAR)
    .build()

val connectivityManager = getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
connectivityManager.requestNetwork(networkRequest, object : ConnectivityManager.NetworkCallback() {
    override fun onAvailable(network: Network) {
        // slice provided, bind sockets to this network
        network.bindSocket(mySocket)
    }
    override fun onUnavailable() {
        // slice unavailable, fallback to standard bearer
    }
})

iOS: no direct slice API. Apple doesn't expose PDN connection parameters from CoreTelephony. Partnerships via Carrier App Extensions — only for operator apps (eSIM, SIM settings). For iOS Network Slicing via VPN profile or specialized APN operator configures at network level, not SDK.

React Native: native Android API call via Kotlin Native Module.

Socket Binding to Specific Network

Critical moment: receiving Network object via NetworkCallback, explicitly bind all network operations to this network. Otherwise system chooses default bearer (LTE/5G generic).

// OkHttp: pass network.socketFactory()
val client = OkHttpClient.Builder()
    .socketFactory(network.socketFactory)
    .build()

// Standard Socket
val socket = Socket()
network.bindSocket(socket)
socket.connect(InetSocketAddress(host, port))

For React Native, native module binds socket and returns networkHandle, which JS side works with. Abstraction looks like regular HTTP client, but under hood — slice.

Monitoring Slice Quality

After getting slice, monitor actual parameters via LinkProperties and NetworkCapabilities:

connectivityManager.registerNetworkCallback(networkRequest, object : ConnectivityManager.NetworkCallback(
    FLAG_INCLUDE_LOCATION_INFO
) {
    override fun onCapabilitiesChanged(
        network: Network,
        capabilities: NetworkCapabilities
    ) {
        val downBandwidth = capabilities.linkDownstreamBandwidthKbps // kbps
        val upBandwidth = capabilities.linkUpstreamBandwidthKbps
        val latency = capabilities.transportInfo // TransportInfo with latency on Android 12+
    }
})

If real parameters differ from slice SLA — log anomaly and notify monitoring server. For URLLC applications, slice degradation may require immediate fallback to cloud processing.

Application Architecture for Slicing

Network Slicing doesn't replace adaptive logic — complements it. Recommended architecture:

Layer Component Responsibility
Transport SliceNetworkManager Request slice, bind sockets
Adaptive QoSMonitor Monitor parameters, detect degradation
Business Logic ContentQualityAdapter Choose quality/mode under current QoS
Fallback StandardNetworkFallback Degrade to LTE/5G generic on slice loss

Common Mistakes

Requesting URLLC slice for tasks not needing it. Slice with guaranteed <1 ms latency — expensive operator resource. Requesting for video conference — senseless. Right: URLLC only for real-time physical system control, eMBB — for media.

Not handling onUnavailable. Slice may be unavailable (device out of 5G SA coverage, operator doesn't support). Application must degrade to standard bearer without losing functionality.

Assessment

Android Native Module for slice request + QoS monitoring + adaptive business logic: 5–9 weeks (with operator test infrastructure). Without access to test 5G SA network — development with mocks only, full testing impossible. Cost calculated individually after requirements and infrastructure analysis.