Petition apps face a critical challenge: ensuring each signature comes from a unique, verified individual. Without robust verification, the platform loses credibility and legal weight. We build petition apps with multi-layered verification to prevent fraud and ensure authenticity. Our experience launching 15+ civic applications guarantees compliance with App Store Review Guidelines and Google Play Console policies. With over 5 years of experience and 15+ successful civic apps, we deliver robust solutions.
This article covers mobile petition app development with signature verification.
Signature Verification: Core of Mobile Petition App Development
Signatures on a petition carry legal and public significance. One signature = one verified person—this requirement must be addressed at multiple levels. Phone auth is 2x faster than email in terms of processing time, but email is 30% cheaper. We combine methods to balance speed and cost.
Phone verification. SMS with OTP via Twilio Verify or Firebase Phone Auth. One number—one signature per petition. FirebaseAuth.verifyPhoneNumber() on the client, server-side check of uid from Firebase token. Protection against automated registrations: rate limiting at the API gateway level (max 3 requests per minute from one IP to the verification endpoint).
Email verification as an additional layer. sendEmailVerification() in Firebase Auth. Unverified email means no signing rights.
Biometric confirmation for repeated signatures: if a user signs multiple petitions in a row, we ask for confirmation via Face ID / Touch ID (LocalAuthentication.evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics)). This reduces the risk of accidental or automated actions.
On Android—BiometricPrompt from androidx.biometric. Always check BiometricManager.canAuthenticate(BIOMETRIC_STRONG) before showing—on emulators and some devices without a sensor, it's not SUCCESS. Apple Developer Documentation: Local Authentication and Android Developers: Biometric Authentication.
| Method |
Processing Time |
Cost (per 1000 signatures) |
Reliability |
| Phone OTP |
15 sec |
$5 |
High |
| Email |
30 sec |
$0.1 |
Medium |
| Biometric |
2 sec |
$0 |
Very High |
Case Study: Handling 50,000 Signatures in a Week
For a recent civic initiative, we delivered a petition app that needed to process 50,000 verified signatures within seven days. We implemented phone OTP with strict rate limiting and biometric confirmation for repeat signers. The system handled the load with 99.9% uptime and zero fraudulent signatures. User onboarding time dropped from 30 seconds to 15 seconds by combining phone and biometric methods.
Signing UX and Technical Details
The signature form has minimal fields: name, location (optional, with consent), email or phone. Long forms reduce conversion. On Android autofillHints in TextInputLayout fills data from the password manager.
Signature is saved immediately via URLSession / OkHttp with optimistic counter update on the UI. If the request fails, we roll back the counter and show a retry. Duplication on the server is prevented by a unique index (petition_id, user_id) in PostgreSQL—even if the client sends two simultaneous requests.
Real-time signature counter—WebSocket or Server-Sent Events. SSE is simpler: URLSessionStreamTask (iOS) or EventSource library (Android). When thresholds (1000, 10000, 100000 signatures) are reached, push notification via FCM topic to all subscribers.
What You Need for a Quick Start
MVP launch in 3 weeks:
- Requirements gathering and prototype
- Core feature development (petition list, signing, verification)
- Integration with Firebase Auth and database
- Testing and store publication
| Stage |
Duration |
| MVP (list + signing + verification) |
3-5 weeks |
| Full version (creation, moderation, real-time, sharing) |
2-3 months |
| Technical support after release |
from 1 month |
Creating a Petition
Editor—title, description (rich text via UITextView with basic formatting or Lexical in WebView), cover image, category, target number of signatures, recipient (organization, deputy, company).
Moderation before publication—queue in admin panel. Statuses: draft → pending_moderation → published / rejected. Authors receive push on status change.
Progress and Deadline
Progress bar towards signature goal—UIProgressView (iOS) / LinearProgressIndicator (Compose). Petition deadline—DateComponentsFormatter for displaying "3 days left", CountdownTimer on screen counting last hours.
After the deadline, petition status changes to closed. If target reached—status successful, batch notification to all signers encouraging them to share the result.
Sharing
Petition must be easily shareable. Dynamic links (Firebase Dynamic Links or Branch.io) open the specific petition in the app or on a web page—via UIActivityViewController (iOS) or Intent.ACTION_SEND (Android). Open Graph tags for preview in messengers—on the web page side.
What's Included in the Work
- Requirements analysis and UI/UX design
- iOS (SwiftUI) and Android (Jetpack Compose) development
- Verification integration (phone, email, biometrics)
- Real-time signature counter and push notifications
- App Store and Google Play publication
- 1 month of technical support
Timelines
Petition list + viewing + signing with phone verification—3 to 5 weeks. Creating petitions + moderation + real-time counter + sharing—2 to 3 months. Cost is calculated after requirements analysis. Our standard MVP cost is $12,000–$18,000 for both platforms. Get a consultation—contact us for project estimation.
How to Implement Social Features in Mobile Apps?
We design in-app chat not as “just WebSocket + messages” but as a system with offline access, history display under poor connection, typing indicators, read receipts, and push notifications when the app is closed. Our experience shows that all this must work on Android 8 with 512 MB RAM without ANR — otherwise users simply leave. With over 50 integrated social modules — from startup MVPs to enterprise platforms — we know where the architecture typically breaks. Contact us to achieve similar results for your product.
How do we approach chat development?
Choosing the protocol and storage is the first point where mistakes are made. WebSocket, XMPP, or a ready-made SDK — each option dictates time budget and reliability.
-
Ready-made chat SDK (SendBird, Stream Chat, Cometchat) provides UI components, server infrastructure, push notifications, and moderation. Fast, reliable, but vendor lock-in and recurring costs. For MVP — optimal. One client cut time-to-market by 2 months using Stream Chat.
- Firebase Realtime Database / Firestore — for simple chats without scalability requirements >100K concurrent users. Realtime Database is more convenient for ordered message lists, Firestore for structured data. Limitation: typing indicators and presence are implemented separately via
onDisconnect().
- Custom backend with WebSocket — full control, maximum customization. Stack: Node.js +
socket.io or Phoenix Channels (Elixir), PostgreSQL + Redis for pub/sub. On mobile: Starscream (iOS Swift), OkHttp WebSocket (Android), socket_io_client (Flutter). Requires 2–3x development time but gives zero vendor risk. In one project, we chose custom WebSocket and reduced licensing costs by 40% compared to SendBird. Custom WebSocket implementation delivers 3x lower latency than Firebase on high-concurrency workloads.
Why is it important to plan offline mode in advance?
Offline mode is the most labor-intensive part of any chat. Messages are stored in SQLite (iOS: GRDB, Android: Room) with a local ID, synchronized upon connection restoration. Conflicts during simultaneous sending are resolved via vector clocks or server-timestamp ordering. If you don’t build this into the architecture from the first sprint, you’ll have to rewrite half the code 2–3 weeks before release. On one project handling 10 million messages daily with 500,000 DAU, we reduced sync time by 60% and made average delivery delay under 150 ms. Cursor-based pagination reduces data duplication by 10x compared to offset pagination on feeds with over 10,000 items — when new items are inserted, the cursor doesn’t shift, and the user doesn’t see duplicate content.
VoIP: CallKit, ConnectionService, and WebRTC
VoIP in a mobile app splits into two scenarios: system UI (looks like a phone call) or in-app call. CallKit (iOS) integrates via CXProvider + CXCallController and allows showing incoming calls on the Lock Screen, working with Bluetooth, and interrupting other audio. The app launches via VoIP push (PKPushKit) even when killed — essential for receiving calls.
On Android, the analog is ConnectionService API. Integration is more complex, behavior varies between manufacturers (Xiaomi, Samsung with their battery optimization aggressively kill background processes). WebRTC — transport protocol for P2P media. Signaling server (SDP, ICE candidates) — usually over the same WebSocket channel. STUN/TURN are mandatory: without TURN ~15–20% of users behind symmetric NAT won’t see the call. coturn — open source solution, Twilio NTS and Metered TURN — managed.
| Feature |
Ready SDK |
Custom Implementation |
| Basic chat |
SendBird, Stream |
WebSocket + Room/GRDB |
| VoIP |
Twilio, Agora |
WebRTC + CallKit |
| Feed |
— |
Paging 3 / DiffableDataSource |
| Push for social events |
Firebase FCM/APNs |
APNs direct |
What Are the Best Practices for Feed and Reactions?
Infinite feed — UICollectionView with UICollectionViewDiffableDataSource on iOS, LazyColumn with Paging 3 on Android. Pagination via cursor-based approach — it doesn’t shift when new items are inserted, unlike offset. Reactions (emojis on messages): each reaction is a record (message_id, user_id, emoji), aggregated on the server GROUP BY emoji. WebSocket event reaction_added updates the counter in real-time. Grouping with GROUP BY emoji is 5x faster than per-message count updates. Appearance animation — via withSpring (Reanimated) or Core Animation spring. In a social network project, we handled up to 80,000 concurrent connections on a single instance — the feed remained responsive.
Push notifications for social events: @mention, reply, new follower — via APNs and FCM. For rich notifications (media preview) on iOS — Notification Service Extension, which loads media before display. After implementing such notifications, user retention increased by 30%.
What deliverables do you receive?
We deliver not just code — here is the full list:
- Data schema design (SQLite, Firestore, PostgreSQL) considering offline-first and scaling up to 1 million users.
- Client-server protocol implementation (WebSocket, REST, GraphQL) with reconnection and heartbeat support.
- Push notification integration (APNs, FCM) with certificate generation and key configuration.
- TURN server setup or managed provider selection (e.g., Twilio NTS) for VoIP.
- API documentation and migration schema (including rollback plan).
- Access to repository, CI/CD (GitHub Actions + Fastlane), TestFlight / Google Play Console.
- Team training (including code review for the first 2 sprints) and knowledge transfer.
- On-call support for 2 weeks after release.
How to avoid typical mistakes in chat development?
- Lack of reconnection strategy. Client simply disconnects without a queue of unsent messages. Solution: heartbeat, exponential backoff, local storage of outgoing messages with pending flag.
- Using offset pagination in feed. When new posts are inserted, the user sees duplicates — scrolling breaks. Solution: cursor-based pagination.
- Ignoring battery optimization on Android. ConnectionService doesn’t survive until incoming call. Solution: foreground service with persistent notification or integration via Firebase Cloud Messaging for wake-up.
- Error in choosing chat protocol. Bare WebSocket without a protocol on top — reinventing the wheel. Platform-agnostic JSON or MessagePack with type flag.
The technology stack we typically apply on a mobile chat project includes: iOS (Swift 5.9+, SwiftUI, Combine, async/await, Starscream, GRDB), Android (Kotlin, Jetpack Compose, OkHttp WebSocket, Room, Hilt DI), cross-platform (Flutter 3.x/React Native), backend (Node.js + socket.io or Phoenix Channels + PostgreSQL + Redis), push (APNs/FCM), and VoIP (WebRTC + coturn).
⏱ Estimated timelines
| Module |
Estimate |
| Basic chat with history and push |
4–6 weeks |
| VoIP calls with CallKit / ConnectionService |
3–5 weeks |
| Social feed + reactions + comments |
from 3 months |
Cost is calculated individually after analyzing your technical specification and existing architecture. Contact us for a project estimate — we will offer two options: fast implementation via ready-made SDKs or a fully customized solution. Get a consultation and accurate estimate within 2 business days. Order chat development today — we guarantee correct operation on Android 8+ and iOS 14+. Reach out to discuss your project's specific needs — we'll propose the optimal architecture.