Mobile App Development for Event Networking

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 Event Networking
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 an Event Networking Mobile Application

A networking app applies Tinder mechanics to professional contacts: swipe or mutual interest, match, chat. Plus: nearby discovery, business card exchange, meeting scheduling. All within a limited event window.

Profile and Matching

User profile: name, photo, company, title, interests/tags, goals (seeking partner / clients / open to hire). Tags are the basis for recommendation algorithm.

Matching algorithm: tag intersection + cosine similarity on interest vectors (for large tag lists). PostgreSQL side: cube extension for vector similarity or simple array && array operator for tag intersection. For events < 1000 participants—simple SQL aggregation beats any ML.

Two-way interest: "like" hidden until mutual. Implemented via interests(from_user_id, to_user_id) table, match occurs when both records exist. Webhook or polling for match notification: push via FCM with vibration and sound.

Discovery Nearby: Bluetooth and Geolocation

"People nearby" is popular for event networking. Two approaches:

Bluetooth Low Energy (BLE) beaconing: Each device periodically broadcasts userId in BLE advertisement (Custom Service UUID). Other devices listen via CBCentralManager.scanForPeripherals(withServices:) (iOS) or BluetoothLeScanner.startScan() (Android). RSSI (signal strength) approximates distance. Advantage: works without internet and GPS. Problem: iOS background BLE scanning is limited—only registered Service UUIDs.

Geolocation: CLLocationManager.requestLocation() (iOS) / FusedLocationProviderClient.getCurrentLocation() (Android). Client sends coordinates to server, server returns users within N meters. Geolocation more precise on open spaces, worse indoors.

Recommend combining: geolocation for large radius (whole venue), BLE for "standing nearby" (< 10 meters).

Contact Exchange

Three mechanics:

  1. QR profile code: generate QR from userId, scan via AVMetadataOutput. Most universal.
  2. NFC bump: iOS 14+ NFCNDEFReaderSession + NFCNDEFWriterSession. Android NfcAdapter.enableForegroundDispatch(). Both devices need NFC, close proximity. Cool UX, requires coordinated action.
  3. Deep link sharing: profile link via UIActivityViewController. Recipient opens app, adds contact. Slowest, but works without NFC or camera.

Saved contacts: list with vCard export (CNContact.vcf via CNContactVCardSerialization). Android: ContentProviderOperation to add to system address book (needs WRITE_CONTACTS).

Meetings and Scheduling

Meeting request: propose time from available slots. Conference schedule integration: slots between bookmarked talks auto-marked as available.

Accept meeting: push notification, add to personal calendar via EventKit.EKEventStore (iOS) or CalendarContract (Android). Location: conference room, venue cafe, or custom text.

10-minute reminder: local notification. If other party cancels—push immediately.

Chat After Match

Chat opens only on mutual match. WebSocket per match or third-party SDK (Stream Chat, SendBird freemium). Message history saved for post-event access—valuable contact shouldn't be lost.

Process and Timeline

Profiles + matching + discovery + contact exchange (QR): 6–8 weeks. Meetings + NFC + schedule integration + chat: 2–3 months. Pricing calculated after requirements analysis.