Mobile App Development for Cashback Service

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 Cashback Service
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
    1054
  • 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 Cashback Service

A cashback service is a middleman between user, store, and partner network. Technically: app tracks user transitions to stores (via deeplink or tracking links), partner network confirms purchase, service credits rewards. Main technical challenge—attribution: prove user made purchase via app, not directly.

Tracking Partner Transitions

Use partner network tracking links (Admitad, CJ, Impact, proprietary). How it works:

  1. App opens tracking link: https://trk.admitad.com/g/xxxxx?uid={userId}
  2. Tracker redirects to store, sets cookie
  3. User makes purchase
  4. Store sends conversion to network with uid
  5. Network sends postback to service server
  6. Server credits cashback to user with that uid

Store transition via SFSafariViewController (iOS) or Custom Tabs (Android). Can't use built-in WKWebView—its cookies isolated and not passed to Safari. This common cause of "lost" attribution.

import SafariServices

func openShopWithTracking(shop: Shop) {
    guard let trackingUrl = buildTrackingUrl(shop: shop, userId: currentUser.id) else { return }
    let safariVC = SFSafariViewController(url: trackingUrl)
    safariVC.preferredControlTintColor = .systemBlue
    present(safariVC, animated: true)
    // Record transition locally for stats
    analyticsService.track(.shopOpened(shopId: shop.id))
}
// Android: Chrome Custom Tabs for tracking
val customTabsIntent = CustomTabsIntent.Builder()
    .setShowTitle(true)
    .setColorScheme(CustomTabsIntent.COLOR_SCHEME_LIGHT)
    .build()

customTabsIntent.launchUrl(this, trackingUri)

Cashback Accrual and Withdrawal

Cashback stored as internal user balance. Accrual statuses:

Status Description
PENDING Transition recorded, purchase not confirmed
CONFIRMED Store confirmed purchase (usually 30–90 days)
AVAILABLE Available for withdrawal
WITHDRAWN Withdrawn
CANCELLED Purchase returned, cashback cancelled

Withdrawal via SBP, card transfer, or promo code conversion. Integrate with payout providers: YooKassa Payouts, Tinkoff Payouts API, MTS Pay.

Store Search and Filtering

Store list—main app screen. Filters: category, cashback size, type (fixed % or fixed amount), new / popular.

Backend—full-text search via PostgreSQL tsvector or Elasticsearch. Client debounces search:

// iOS: search with debounce via Combine
@Published var searchQuery = ""

init() {
    $searchQuery
        .debounce(for: .milliseconds(300), scheduler: RunLoop.main)
        .removeDuplicates()
        .filter { $0.count >= 2 }
        .sink { [weak self] query in
            self?.loadShops(query: query)
        }
        .store(in: &cancellables)
}

Campaign Notifications

Elevated cashback for limited period—key retention tool. App shows promotions in feed with countdown timer. Push about promotion starts—via FCM/APNs with user interest segmentation.

Timeline Estimates

Basic version (store catalog, tracking, accrual history): 4–6 weeks. Withdrawal via SBP/card—another 1–2 weeks. Pricing is calculated individually.