Mobile App Development for Inventory Management

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 App Development for Inventory Management
Medium
from 1 week 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

Developing a Mobile App for Inventory Management

Traditional inventory—printed forms, manual count, 1C verification in evening. Mobile app with barcode scanning changes process: employee scans barcode/QR, app immediately matches system, discrepancies recorded during scan. Sounds straightforward; implementation details determine real inventory speed.

Scanning: Built-in Camera vs Hardware Scanner

Built-in camera—most accessible. ML Kit Barcode Scanning (Android/iOS) via CameraX or AVFoundation decodes EAN-13, EAN-8, Code 128, Code 39, QR and dozen more. Works offline. Recognition delay on modern phones—100-200 ms.

But cases where camera can't deliver: warehouse with poor light, damaged labels, requirement to scan without raising item (distance reading). Here need Bluetooth scanners (Zebra CS60, Honeywell 1950g, Newland BS80) or industrial handhelds (Zebra TC21/TC26, Honeywell CT30). Connect as HID keyboard or via manufacturer SDK.

// Android: Zebra DataWedge integration via Intent
class ZebraDataWedgeManager(private val context: Context) {
    private val DATAWEDGE_ACTION = "com.symbol.datawedge.api.ACTION"
    private val SCAN_ACTION = "com.symbol.datawedge.data_string"

    fun registerScanReceiver(onScan: (String) -> Unit): BroadcastReceiver {
        val receiver = object : BroadcastReceiver() {
            override fun onReceive(context: Context, intent: Intent) {
                if (intent.action == SCAN_ACTION) {
                    val barcode = intent.getStringExtra("com.symbol.datawedge.data_string") ?: return
                    onScan(barcode)
                }
            }
        }
        context.registerReceiver(receiver, IntentFilter(SCAN_ACTION))
        return receiver
    }
}

Honeywell handhelds use similar broadcast via DataCollection SDK. Universal solution—abstract BarcodeScanner with implementations: CameraBarcodeScanner, ZebraBarcodeScanner, HoneywellBarcodeScanner. Config chosen at startup by device type.

Architecture: Offline-First Mandatory

Warehouse—unstable WiFi zone. Some areas have no coverage. App must work fully offline: load inventory list before start, record scans locally, sync on connection restore.

@Entity(tableName = "inventory_items")
data class InventoryItem(
    @PrimaryKey val sku: String,
    val name: String,
    val expectedQuantity: Int,
    val unit: String,
    val location: String,
)

@Entity(tableName = "scan_records")
data class ScanRecord(
    @PrimaryKey(autoGenerate = true) val id: Long = 0,
    val sku: String,
    val scannedQuantity: Int,
    val scannedAt: Long = System.currentTimeMillis(),
    val syncStatus: SyncStatus = SyncStatus.PENDING,
    val userId: String,
)

enum class SyncStatus { PENDING, SYNCED, CONFLICT }

WorkManager launches sync on network appearance—NetworkType.CONNECTED constraint. On conflict (other employee scanned same SKU)—server returns conflict, app shows both values and asks manual resolution.

Serial Number Search and Manual Entry

Not every item has readable barcode. Manual SKU entry with autocomplete from local database—mandatory feature. SKU list loaded beforehand into FTS4/FTS5 Room table for fast full-text search by name.

Serial numbers—separate story. Position may require scanning each copy individually (laptops, printers, tools). "Serial accounting" mode: app waits N serial number scans for one position, shows progress 3/10 serial numbers entered.

Discrepancy Report

After inventory complete—discrepancy report: which items not found, which surplus, where actual vs plan mismatch. Formed locally, sent to server or exported to PDF via PdfDocument API (Android) / PDFKit (iOS).

1C integration via REST API (1C HTTP service) or intermediate service. Data format—JSON or XML per 1C-developer agreement. Upload inventory document back to 1C—standard final step.

Developing inventory app with offline work, Camera ML Kit, report export: 5-7 weeks. Zebra/Honeywell TSD support, serial accounting, bidirectional 1C integration: 10-14 weeks. Cost individually quoted.