Introduction: The Connectivity Mandate for Frontline Fleets
Imagine your healthcare professionals relying on a telehealth streaming application during a critical emergency, only to experience severe latency because the local cellular network is congested by civilian traffic. Or picture your logistics team in a massive, automated warehouse, where barcode scanners lose connection to the central database due to bandwidth bottlenecks. For mission-critical mobile fleets, standard "best-effort" cellular data is no longer sufficient. You need guaranteed performance.
Enter Android 16 5G network slicing. With the release of Android 16, Google has integrated native support for 5G network slicing directly through the Android Management API (AMAPI). This revolutionary capability allows IT administrators to carve out dedicated, virtualized lanes of 5G bandwidth for specific, high-priority business applications. Instead of fighting for bandwidth on the public network, your critical enterprise apps get VIP treatment.
However, raw AMAPI capabilities can be complex to deploy at scale. That is where Nomid MDM steps in. As an official Android Enterprise Partner, Nomid MDM bridges the gap between complex AMAPI JSON configurations and intuitive, zero-touch deployment. In this comprehensive guide, you will learn exactly how to leverage Nomid MDM network management to configure, assign, and deploy Android Enterprise 5G slicing to your frontline devices.
Note: Network slicing requires a 5G Standalone (5G SA) network architecture. Ensure your cellular carrier supports enterprise network slicing and has provisioned your corporate SIMs/eSIMs accordingly before beginning this tutorial.
Understanding the AMAPI Network Slicing Architecture
Before diving into the configuration, you must understand how Android 16 handles this technology. Android 16 introduces the preferentialNetworkServiceSettings policy within AMAPI. This policy allows an MDM to define specific network slices and route designated application traffic through them.
A 5G slice is identified by an S-NSSAI (Single Network Slice Selection Assistance Information), which consists of:
- SST (Slice/Service Type): Defines the expected network behavior (e.g., eMBB for high bandwidth, URLLC for ultra-low latency).
- SD (Slice Differentiator): Optional information that differentiates amongst multiple slices of the same SST.
With Nomid MDM, you do not need to manually code the entire AMAPI payload from scratch. Nomid's intuitive interface wraps the complex Android Management API 5G commands into a streamlined workflow, while still allowing code-level precision for advanced administrators.

Prerequisites for Deployment
To successfully complete this tutorial, you must have the following in place:
- Nomid MDM Administrative Access: You need a user role with policy creation and deployment privileges.
- Android 16+ Devices: Devices must be running Android 16 or newer and support 5G SA.
- Carrier Provisioning: Your telecom provider must have provided you with the Enterprise Slice details (S-NSSAI, PLMN ID).
- Target Application Package Names: You need the exact Android package names (e.g., com.healthcare.telehealth) of the apps you wish to route through the slice.
- Zero-Touch Enrollment (ZTE) Configured: For seamless deployment out of the box, ensure your devices are registered in your Nomid MDM ZTE portal.
Step-by-Step Tutorial: Configuring 5G Network Slicing in Nomid MDM
Follow these precise steps to create, configure, and deploy a 5G network slice to your mission-critical mobile fleets.
Step 1: Access the Nomid MDM Network Management Console
Your first task is to navigate to the policy creation center within your Nomid MDM dashboard. This is where all Android Enterprise configurations are managed.
- Log in to your Nomid MDM Admin Console.
- In the left-hand navigation menu, click on Policies & Profiles.
- Click the + Create New Profile button in the top right corner.
- Select Android Enterprise as the platform.
- Choose Fully Managed Device (Device Owner) as the deployment type, as network slicing requires device-level control.
- Name your profile (e.g., "Frontline URLLC 5G Slice") and provide a brief description.
- Click Continue to enter the profile configuration screen.
Expected result: You are now in the active profile editor for your new Android Enterprise policy, viewing a list of configurable settings categories.
Step 2: Enable Advanced AMAPI Configurations
Because Android 16 5G network slicing relies on the latest AMAPI endpoints, you must enable custom JSON payload injection within Nomid MDM.
- Scroll down the categories list and select Advanced Network Settings.
- Toggle the switch labeled Enable Custom AMAPI Payloads to the "On" position.
- Locate the section titled 5G Network Slicing (Android 16+) and click Configure.
Warning: Enabling custom AMAPI payloads will override any conflicting basic network settings you have configured elsewhere in this profile. Ensure you are not duplicating cellular APN settings. Expected result: The Nomid MDM JSON editor expands, displaying a blank canvas for your preferentialNetworkServiceSettings payload.
Step 3: Define the Preferential Network Service Settings JSON
Now, you will construct the MDM 5G configuration payload. This code tells the Android 16 OS exactly which network slice to look for based on the parameters provided by your carrier.
- In the JSON editor, you will define the enterprise slice. Obtain your sliceServiceType (SST) and sliceDifferentiator (SD) from your carrier.
- Input the following JSON structure, replacing the placeholder values with your specific carrier data:
{ "preferentialNetworkServiceSettings": { "preferentialNetworkServiceEnabled": true, "enterpriseSlices": [ { "sliceId": "mission_critical_slice_01", "snssai": { "sliceServiceType": 2, "sliceDifferentiator": "0000A1" }, "plmnId": { "mcc": "310", "mnc": "410" }, "fallbackToDefaultConnection": false } ] } }
- Review your parameters:sliceServiceType: 2 typically denotes URLLC (Ultra-Reliable Low-Latency Communication), ideal for real-time applications.
- fallbackToDefaultConnection: false ensures that if the slice is unavailable, the app will not transmit over the unsecured public network. Change this to true if connectivity is more important than strict slice isolation.
Expected result: Nomid MDM displays a green "Schema Validated" badge, confirming your 5G slice definition is technically sound and ready to be mapped to applications.
Step 4: Assign Network Slices to Specific Applications
A network slice is useless unless the device knows which traffic to route through it. You will now bind specific mission-critical apps to the slice you just created.
- In the same policy editor, navigate to the Application Management tab.
- Click Add Application and search for your mission-critical app (e.g., your proprietary inventory scanner or telehealth app). Add it to the policy.
- Click on the Gear Icon (Settings) next to the newly added application.
- Scroll to the Network Routing section.
- Check the box for Route via 5G Enterprise Slice.
- From the dropdown menu, select the slice ID you defined in Step 3 (mission_critical_slice_01).
- Save the application settings.
Expected result: The application is now explicitly tethered to the 5G network slice within the policy. When the app requests a network socket, Android 16 will force that connection over the defined S-NSSAI.
Step 5: Apply the Profile via Zero-Touch Enrollment
To ensure your devices receive this configuration the moment they are powered on, you will link this policy to your Zero-Touch Enrollment configuration. This is where Nomid MDM's lightning-fast device deployment truly shines.
- Save your completed policy by clicking Publish Profile at the bottom of the screen.
- Navigate to the Enrollment & Provisioning section in the left-hand menu.
- Select Zero-Touch Configurations.
- Create a new configuration or edit an existing one tailored for your Android 16 devices.
- In the DPC Extras section, ensure the JSON payload points to the profile you just created. (Nomid simplifies this: simply select your "Frontline URLLC 5G Slice" profile from the Assigned Policy dropdown).
- Click Save and Apply to Devices.
Expected result: The configuration is synced with the Google Zero-Touch portal. Any new device assigned to your enterprise will automatically download Nomid MDM, provision the device as Fully Managed, and apply the 5G network slice routing rules upon first boot.
Step 6: Verify Slice Activation on the Device
It is critical to test the deployment to ensure the carrier, the OS, and the MDM are communicating correctly.
- Unbox a test Android 16 device and power it on. Allow it to complete the Zero-Touch Enrollment process.
- Once at the home screen, ensure Wi-Fi is disabled and the device is connected to the 5G network.
- Open the targeted mission-critical application.
- To verify the slice is active from the admin side, return to the Nomid MDM console.
- Navigate to Device Inventory, select your test device, and click on the Network Diagnostics tab.
- Look at the Active Data Bearers section. You should see an active connection matching your S-NSSAI parameters.
Expected result: The device successfully routes the application's traffic through the dedicated 5G slice, bypassing standard consumer network congestion.

Industry Use Cases: Why Nomid MDM Network Management Matters
Deploying Android 16 5G network slicing is not just a technical exercise; it solves severe operational challenges across various industries. Here is how Nomid MDM network management empowers different sectors:
Healthcare: Uninterrupted Telehealth and Patient Monitoring
In a crowded hospital, the public cellular network is often saturated by patients and visitors. By using Nomid MDM to deploy an eMBB (Enhanced Mobile Broadband) slice to Samsung Knox-secured tablets, IT admins can guarantee that high-definition telehealth video streams and real-time patient vitals are transmitted without jitter or packet loss, ensuring doctors have the data they need during critical moments.
Retail: Flawless Mobile Point-of-Sale (mPOS)
During Black Friday or holiday rushes, shopping malls become cellular dead zones due to thousands of shoppers streaming data. Retailers using Nomid MDM can assign a dedicated network slice to their mPOS applications. Even if the local cell tower is overloaded, the transaction data bypasses the congestion, ensuring payments process instantly and lines keep moving.
Logistics and Warehousing: Real-Time Robotics and Scanning
Modern warehouses rely on automated guided vehicles (AGVs) and frontline workers using ruggedized Android scanners. Wi-Fi handoffs in massive metal environments are notoriously unreliable. By utilizing a 5G URLLC slice configured via Nomid MDM, logistics companies achieve ultra-low latency, ensuring inventory databases update in real-time and automated machinery receives instant commands without interference.
Education: Secure and Dedicated Testing Environments
When hundreds of students take standardized tests simultaneously on school-issued tablets, bandwidth limits are quickly reached. Network slicing allows school districts to dedicate a specific slice entirely to the testing application. Combined with Nomid MDM's kiosk mode, administrators ensure a secure, uninterrupted, and cheat-proof testing environment.

Troubleshooting FAQ
Even with precise configuration, cellular networks can be complex. Here are the most common issues administrators face when deploying AMAPI network slicing, and how to resolve them.
Why is my application failing to connect after applying the policy?
If you set "fallbackToDefaultConnection": false and the app cannot connect, it means the device cannot access the specified 5G slice. This usually happens for three reasons: 1. The device is not in an area with 5G SA coverage. 2. The carrier has not properly provisioned the SIM/eSIM for the specific S-NSSAI. 3. The device is connected to Wi-Fi. (Network slicing only applies to cellular data). Solution: Temporarily change the fallback setting to true to ensure the app functions, and contact your carrier to verify SIM provisioning and local 5G SA tower capabilities.
Does network slicing work over Wi-Fi?
No. 5G network slicing is strictly a cellular technology managed by the mobile network operator. If an Android device is connected to Wi-Fi, the OS will route traffic over the Wi-Fi network by default, bypassing the 5G slice. If your use case requires slicing at all times, use Nomid MDM to disable Wi-Fi on the device or for that specific application.
Can I assign multiple slices to different apps on the same device?
Yes. Android 16 and AMAPI support multiple enterprise slices on a single device. In your JSON payload (Step 3), you can define multiple objects within the enterpriseSlices array. In Step 4, you simply map App A to Slice 1, and App B to Slice 2. For example, you could have an eMBB slice for video streaming and a URLLC slice for a low-latency scanner app.
Why isn't the policy applying to my Android 15 devices?
The preferentialNetworkServiceSettings API specifically targeted at granular 5G network slicing is a feature introduced and refined in Android 16. While earlier versions had rudimentary enterprise network features, true AMAPI-driven slicing requires Android 16. Ensure your fleet is updated. Nomid MDM allows you to enforce OS updates remotely to prepare your fleet.
How does Nomid MDM integrate this with Samsung Knox?
For fleets utilizing Samsung rugged devices (like the Galaxy XCover series), Nomid MDM layers AMAPI slicing alongside Samsung Knox Service Plugin (KSP) configurations. This means you can secure the hardware via Knox, lock the device into a dedicated kiosk mode, and route the kiosk app's data through a 5G slice--all deployed simultaneously via a single Nomid MDM profile.
Conclusion: Future-Proofing Your Fleet with Nomid MDM
The introduction of 5G network slicing in Android 16 marks a paradigm shift in how enterprises manage mobile connectivity. You are no longer at the mercy of public network congestion. By dedicating specific bandwidth to your most critical applications, you ensure that your frontline workers can execute their tasks reliably, safely, and efficiently.
While the Android Management API provides the raw power to achieve this, Nomid MDM provides the control panel. Through intuitive UI workflows, seamless Zero-Touch Enrollment integration, and robust diagnostic tools, Nomid MDM transforms complex JSON payloads into actionable, fleet-wide connectivity strategies.
Do not let poor connectivity bottleneck your mission-critical operations. By following this tutorial, you have taken the first step toward true network autonomy. Log in to your Nomid MDM console today, configure your first 5G slice, and experience the unparalleled reliability of dedicated enterprise bandwidth.
Écrit par
David Ponces
Appréciez cet article ?
Recevez plus d'informations sur la gestion des appareils mobiles directement dans votre boîte de réception.
