OGWallet
[](https://github.com/consumerfinance/ogwallet/releases/latest)
[](https://github.com/consumnerfinance/ogwallet/releases/)
[](https://github.com/consumnerfinance/ogwallet/stargazers)
[](./LICENCE)
[

](https://play.google.com/store/apps/details?id=dev.consumerfinance.ogwallet)
[

](https://f-droid.org/app/dev.consumerfinance.ogwallet)
[

](https://apps.obtainium.imranr.dev/redirect?r=obtainium://app/%7B%22id%22%3A%22dev.consumerfinance.ogwallet%22%2C%22url%22%3A%22https%3A%2F%2Fgithub.com%2Fconsumerfinance%2Fente%22%2C%22author%22%3A%22consumerfinance%22%2C%22name%22%3A%22OG%20Wallet%22%2C%22preferredApkIndex%22%3A0%2C%22additionalSettings%22%3A%22%7B%5C%22includePrereleases%5C%22%3Afalse%2C%5C%22fallbackToOlderReleases%5C%22%3Atrue%2C%5C%22filterReleaseTitlesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22filterReleaseNotesByRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22verifyLatestTag%5C%22%3Afalse%2C%5C%22dontSortReleasesList%5C%22%3Atrue%2C%5C%22useLatestAssetDateAsReleaseDate%5C%22%3Afalse%2C%5C%22releaseTitleAsVersion%5C%22%3Afalse%2C%5C%22trackOnly%5C%22%3Afalse%2C%5C%22versionExtractionRegEx%5C%22%3A%5C%22%5C%22%2C%5C%22matchGroupToUse%5C%22%3A%5C%22%5C%22%2C%5C%22versionDetection%5C%22%3Atrue%2C%5C%22releaseDateAsVersion%5C%22%3Afalse%2C%5C%22useVersionCodeAsOSVersion%5C%22%3Afalse%2C%5C%22apkFilterRegEx%5C%22%3A%5C%22econsumerfinance*%5C%22%2C%5C%22invertAPKFilter%5C%22%3Afalse%2C%5C%22autoApkFilterByArch%5C%22%3Atrue%2C%5C%22appName%5C%22%3A%5C%22%5C%22%2C%5C%22shizukuPretendToBeGooglePlay%5C%22%3Afalse%2C%5C%22allowInsecure%5C%22%3Afalse%2C%5C%22exemptFromBackgroundUpdates%5C%22%3Afalse%2C%5C%22skipUpdateNotifications%5C%22%3Afalse%2C%5C%22about%5C%22%3A%5C%22%5C%22%7D%22%2C%22overrideSource%22%3Anull%7D)
[

](https://github.com/consumnerfinance/ogwallet/releases/)
[

](https://consumerfinance.github.io/ogwallet)
This is a Kotlin Multiplatform project targeting Android, iOS, Web, Desktop (JVM).
๐ Credit Card Data System
OGWallet now includes a complete system for crowdsourcing and displaying credit card offers and benefits!
Features
- ๐ 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
Quick Start
- 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!
Documentation
๐ฑ SMS Scanning Feature (Android)
OGWallet can automatically scan your SMS messages and import credit card transactions!
Features
- ๐จ 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
Quick Start
- 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
What Gets Imported?
โ
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)
Documentation
- /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.
Build and Run Android Application
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
Build and Run Desktop (JVM) Application
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
Build and Run Web Application
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
- for the JS target (slower, supports older browsers):
- on macOS/Linux
./gradlew :composeApp:jsBrowserDevelopmentRun
- on Windows
.\gradlew.bat :composeApp:jsBrowserDevelopmentRun
Build and Run iOS Application
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.