Carsharing Mobile App 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
Carsharing Mobile App 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

Carsharing Mobile App Development

User taps "unlock" on the map — command goes to the car's CAN-bus via IoT block, door opens in 2–4 seconds. If nothing happens after 30 seconds, he taps again. Door opens twice. This is why vehicle control commands require idempotency keys and confirmation via callback, not fire-and-forget.

Telematics and Vehicle Control

The heart of a carsharing platform is a telematics block in the car (Teltonika FMB140, Queclink GV620, Neomatica ADM700 or similar) that connects to the server via GPRS/LTE and receives commands: open/close doors, permit/forbid engine start, activate alarm. The mobile app itself doesn't talk to the car — everything goes through the server.

Command flow:

  1. App sends command to API (POST /cars/{id}/commands) with idempotency-key
  2. Server writes command to queue (RabbitMQ or Kafka)
  3. Worker sends command to telematics block via TCP/UDP
  4. Block confirms execution
  5. Server sends push notification to app with result

If step 4 doesn't happen within 30 seconds — server returns error, app shows specific status. Not "something went wrong," but "vehicle didn't respond to command — possibly no network in this area."

Map and Vehicle Search

Fleet display on map — clustering markers at low zoom. Google Maps SDK and MapKit both support this natively, but with 500+ cars online you need server-side clustering: server returns clusters with centroids and counts, client draws aggregated markers. At zoom > 14 switch to individual icons with battery/fuel level color indicators.

"Find nearest available car" — request with user geolocation and radius. PostGIS on backend (ST_DWithin) + coordinate index. Response — list with distance and walking route via Google Maps Directions (mode WALKING).

Onboarding and Verification

Carsharing requires driver's license and passport verification. Standard path — integration with liveness + document recognition services:

  • Smile Identity or Onfido for international projects
  • Sufteh, GetID or ECRN (via Gosuslugi / GIS MVD) for Russian market

Technical implementation: native camera with document placement guidance (frame overlay), photo upload via multipart/form-data, polling verification status via WebSocket. Don't store document photos on device beyond upload session.

Rental and Payment

Rental session — state machine: available → reserved → active → completed. Each transition is atomic on the server. Mobile client displays current status via WebSocket subscription or long-polling with ETag.

Payment — Stripe (international) or YooKassa/CloudPayments (Russia). Important nuance: amount hold (payment_intent with requires_capture status) at rental start, actual charge after completion with recalculation by actual time. Stripe SDK for iOS and Android provides ready Payment Sheet that handles 3DS, SCA, card saving.

Vehicle Condition Check

Before rental starts user photographs scratches and damage. Protection for both user and operator. Implement via CameraX with multiple captures, upload to cloud (S3/GCS) with geotag (EXIF GPS data) and timestamp. After rental completion — same.

Automatic damage detection via ML model (YOLOv8 fine-tuned on car damage) — optional feature implemented via Core ML (iOS) or TensorFlow Lite (Android). Reduces inspection team load but requires quality dataset.

Architecture and Stack

Component Technology
Cross-platform development Flutter (BLoC)
Native Android Kotlin + Compose + Hilt
Native iOS Swift + SwiftUI + Combine
Maps Google Maps SDK / MapLibre
Telematics REST API + WebSocket
Payment Stripe SDK / YooKassa SDK
Verification Onfido / GetID
Crash monitoring Firebase Crashlytics
A/B tests Firebase Remote Config

Development Stages

  1. Audit of telematics infrastructure — what blocks are installed, what protocol, is there API
  2. State machine architecture for rental on server + API contract with mobile client
  3. Design — map, search, onboarding, rental session
  4. Development — MVP includes: map with fleet, booking, vehicle unlock, payment, rental completion
  5. Verification — KYC provider integration, testing edge cases (expired license, blurry photo)
  6. Publication — App Store (Transport category) + Google Play

Timeline: MVP — 3–4 months, full platform with analytics, corporate cabinet and advanced telematics — 6–9 months. Cost calculated individually after requirements audit.