Smart Home Electric Locks and Intercom 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
Smart Home Electric Locks and Intercom Mobile App
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

Smart Home Locks and Intercom Mobile App Development

Opening a door from your smartphone is a task with zero margin for error. Lock hangs, API returns 503, Bluetooth connection failed — user is standing at the door. This isn't a UX problem, it's an incident. Therefore, the architecture of a lock management app is not built on "how to make it simpler," but "what to do when every communication channel fails."

Protocols and Lock Types

BLE locks (August, Schlage Encode, Nuki) — direct control via Bluetooth without internet. Range 5–15 meters, latency < 200ms. Native implementation via CoreBluetooth (iOS) / Android BLE API. On Flutter — flutter_blue_plus. Each lock is a GATT service with its own characteristics. August locks use 00001523-1212-EFDE-1523-785FEABCD123 service UUID with proprietary protocol — no official SDK, work via reverse engineering or August API.

Wi-Fi locks (Tuya, Yale Connect, Kwikset Halo) — cloud control. Latency 300–2000ms, depends on internet. For Tuya — Tuya Open API: POST /v1.0/devices/{deviceId}/commands with {"commands": [{"code": "switch_1", "value": true}]}.

Zigbee locks (Samsung SmartThings, Kwikset) — via hub. MQTT command to topic zigbee2mqtt/{device}/set with {"state": "UNLOCK"}.

Z-Wave locks (Schlage, Kwikset Z-Wave) — via Z-Wave JS or Home Assistant.

Backup Opening Channels

Rule: minimum two independent ways to open the lock. If primary fails — user shouldn't call support standing in the cold.

Typical channel hierarchy:

  1. BLE (local, no internet) — first priority when close
  2. Wi-Fi/cloud — if BLE unavailable
  3. Backup PIN code on lock — complete system failure
  4. Mechanical key — physical fallback

App automatically detects available channels and switches. BLE: check Bluetooth state via FlutterBluePlus.adapterState. No BLE or device too far — try Wi-Fi/cloud. Show active channel to user in UI.

Temporary Access and Guests

Guest key for 24 hours, Airbnb tenant for a week, housekeeper Tuesdays 10-2 — core functionality.

Implementation depends on lock. Nuki Web API: POST /smartlock/{smartlockId}/auth creates authorization with allowedWeekDays, allowedFromDate, allowedUntilDate, allowedFromTime, allowedUntilTime. August API: POST /access_codes with access_code type.

For BLE locks without cloud: temporary key is a cryptographically signed token with time constraints, transmitted via BLE. Mechanism depends on manufacturer.

Backend: store all issued access keys with metadata (to whom, by whom, expiration, usage list). Push notification to owner when guest key used.

Video Doorbell and Video Call

Video call from doorbell to mobile = WebRTC + VoIP push. When someone presses doorbell:

  1. Doorbell publishes event to MQTT
  2. Backend sends VoIP push to iOS (via PushKit) or FCM with priority: high on Android
  3. App wakes in background, establishes WebRTC connection to doorbell
  4. Shows incoming call UI via CallKit (iOS) or android.telecom.ConnectionService

VoIP push on iOS via PushKit — only reliable way to wake app for video call. Regular push arrives with 2–30 second delay. PushKit — instant. Requires VoIP certificate in Apple Developer Portal, entitlement com.apple.developer.pushkit.unrestricted-dispatch.

On Android background service with startForeground keeps WebRTC connection ready. Starting Android 14 — background service restrictions tightened, need ForegroundServiceType.CAMERA + ForegroundServiceType.MICROPHONE in manifest.

Event Log

Every opening — record in log: who, which method, what time. For rental properties this is legally important.

Storage: PostgreSQL with table access_log (id, lock_id, user_id, method, timestamp, result). Index on (lock_id, timestamp DESC). Mobile app requests paginated: GET /api/locks/{id}/access-log?page=1&per_page=50.

Timeline

One lock type (BLE or Wi-Fi/cloud), basic control, temporary access — 6–8 weeks. Multi-protocol, video doorbell, CallKit/VoIP, log, notifications — 4–6 months. Cost calculated after determining lock models and guest access requirements.