This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop (JVM).
OGWallet now includes a complete system for crowdsourcing and displaying credit card offers and benefits!
- π Microsoft Forms Integration - Collect offers from the community
- π Python Processing Server - Validate and process submissions
- π¦ Git-based Data Storage - Version-controlled JSON data
- π¨ Beautiful UI - Display offers with gradients and emojis
- π Automated Updates - GitHub Actions for scheduled processing
-
Set up sample data:
cd data-server python3 test_setup.py -
Run the app:
./gradlew :composeApp:run
-
View offers: Navigate to the "Offers & Rewards" screen to see credit card offers!
- π Complete Setup Guide
- π Quick Start
- π Microsoft Forms Template
- π§ Server Documentation
OGWallet can automatically scan your SMS messages and import credit card transactions!
- π¨ Automatic SMS Scanning - Scan all existing SMS messages
- π Real-time Interception - Capture new transaction SMS automatically
- π¦ 25+ Banks Supported - HDFC, ICICI, SBI, Axis, and more
- π Privacy First - All processing happens locally on your device
- π Progress Tracking - Real-time scan progress with statistics
- Open the app on your Android device
- Grant SMS permissions when prompted
- Navigate to the Import tab (π§)
- Tap "Import from SMS"
- Select time range (90 days recommended)
- Start scan and wait for completion
- View your transactions in the Home tab
β Transaction amount β Merchant name β Card last 4 digits β Transaction date & time
β Full card numbers (never stored) β CVV codes (never stored) β PINs or OTPs (never stored)
- π User Guide - Complete user documentation
- π Quick Start - Get started in 5 minutes
- π§ Technical Docs - Implementation details
-
/composeApp is for code that will be shared across your Compose Multiplatform applications. It contains several subfolders:
- commonMain is for code thatβs common for all targets.
- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name. For example, if you want to use Appleβs CoreCrypto for the iOS part of your Kotlin app, the iosMain folder would be the right place for such calls. Similarly, if you want to edit the Desktop (JVM) specific part, the jvmMain folder is the appropriate location.
-
/iosApp contains iOS applications. Even if youβre sharing your UI with Compose Multiplatform, you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.
To build and run the development version of the Android app, use the run configuration from the run widget in your IDEβs toolbar or build it directly from the terminal:
- on macOS/Linux
./gradlew :composeApp:assembleDebug
- on Windows
.\gradlew.bat :composeApp:assembleDebug
To build and run the development version of the desktop app, use the run configuration from the run widget in your IDEβs toolbar or run it directly from the terminal:
- on macOS/Linux
./gradlew :composeApp:run
- on Windows
.\gradlew.bat :composeApp:run
To build and run the development version of the web app, use the run configuration from the run widget in your IDE's toolbar or run it directly from the terminal:
- for the Wasm target (faster, modern browsers):
- on macOS/Linux
./gradlew :composeApp:wasmJsBrowserDevelopmentRun
- on Windows
.\gradlew.bat :composeApp:wasmJsBrowserDevelopmentRun
- on macOS/Linux
- for the JS target (slower, supports older browsers):
- on macOS/Linux
./gradlew :composeApp:jsBrowserDevelopmentRun
- on Windows
.\gradlew.bat :composeApp:jsBrowserDevelopmentRun
- on macOS/Linux
To build and run the development version of the iOS app, use the run configuration from the run widget in your IDEβs toolbar or open the /iosApp directory in Xcode and run it from there.
Learn more about Kotlin Multiplatform, Compose Multiplatform, Kotlin/Wasmβ¦
We would appreciate your feedback on Compose/Web and Kotlin/Wasm in the public Slack channel #compose-web. If you face any issues, please report them on YouTrack.










