Fisca is a Canada-only, offline-only Android application designed to help ODSP (Ontario Disability Support Program) recipients manually log transactions and income for easier tax filing and income reporting.
Fisca helps people with ODSP or DSO in Ontario by:
- Tracking all transactions with detailed information (date, price, GST/HST, total, category, payment method)
- Recording ODSP income including regular payments, DSO payments, and additional support
- Organizing financial data for easier tax filing and income reporting
- Maintaining privacy - all data stays on your device (no internet connection required or used)
- Add Transactions with comprehensive details:
- Date of purchase with calendar picker
- Item/service description
- Multi-currency support (CAD/USD with automatic exchange rate conversion)
- Price before tax
- Auto-calculated GST/HST (Ontario's 13% HST)
- Total price (including tax, converted to CAD)
- 11 transaction categories (Groceries, Medical, Housing, Utilities, Transportation, Personal Care, Clothing, Entertainment, Education, Insurance, Other)
- 11 payment methods (Cash, Debit, Credit, ODSP Card, Cheque, E-Transfer, PayPal, Bank Transfer, Mobile Payment, Prepaid Card, Other)
- Bank/financial institution tracking
- Business GST/HST ID recording
- Custom notes
- View All Transactions in a scrollable list with details
- Edit/Delete transactions with swipe actions
- Add Income Entries with:
- Date of income receipt
- Gross pay (before deductions)
- Deductions (tax, CPP, EI, etc.)
- Auto-calculated net pay
- Income type (ODSP Payment, DSO Payment, Additional Support, Other Income)
- Deduction details tracking
- Custom notes
- View Income History with all entries
- Edit/Delete income entries
- Store your personal information for tax reporting:
- Full name
- Date of birth
- Social Insurance Number (SIN)
- Complete address (Street, City, Province, Postal Code)
- Phone number and email (optional)
- Province selector with Canadian provinces
- Postal code validation
- Overall Statistics:
- Total number of transactions
- Total amount spent (in CAD)
- Total tax paid
- Average transaction amount
- Category Breakdown:
- Spending by category
- Transaction count per category
- Visual breakdown of where money goes
- Payment Method Analysis:
- Spending by payment method
- Track which payment methods you use most
- Tax Summary:
- Total HST/GST paid
- Tax information for filing
- Currency Breakdown:
- Separate tracking of CAD vs USD transactions
- Exchange rate summaries
- Export to CSV:
- Export all transactions, income, and personal data
- UTF-8 with BOM encoding for Office compatibility
- Windows line endings (CRLF) for Excel/LibreOffice
- Timestamped export files
- Share exported files via email or other apps
- Import from CSV:
- Restore data from previous exports
- Validate data before import
- Detailed import results
- 100% Offline: No internet permissions in AndroidManifest - data never leaves your device
- Local Storage: All data stored securely using Room database on your Android device
- No Accounts: No sign-up, no login, no personal information collected or transmitted
- Your Data, Your Control: Export and backup your data at any time to CSV format
- File Provider Security: Export files use secure FileProvider for controlled sharing
- Install the App on your Android device (API 26+)
- Add Personal Information (optional but recommended for tax filing):
- Tap the menu (โฎ) and select "Personal Information"
- Enter your details (name, address, SIN, etc.)
- Save your information
- Start Tracking:
- Use "Add Transaction" from the menu to log purchases
- Use "View Income" to add ODSP/DSO payments
-
Adding a Transaction:
- Tap menu โ "Add Transaction"
- Select date and enter description
- Choose currency (CAD or USD)
- Enter item price (HST auto-calculated for CAD purchases)
- Select category and payment method
- Add notes if needed and save
-
Adding Income:
- Tap menu โ "View Income" โ (+) button
- Select date received
- Enter gross pay and deductions
- Net pay calculates automatically
- Select income type and save
-
Viewing Statistics:
- Tap menu โ "Statistics"
- View spending by category, payment method
- See total HST paid for tax filing
-
Exporting Data:
- Tap menu โ "Export Data"
- Tap "Export to CSV"
- Share via email or save to device
This app is designed specifically for Ontario, Canada:
- HST Calculations: Automatic 13% HST calculation for Ontario transactions
- ODSP/DSO Income Categories: Specialized income tracking for Ontario disability support programs
- Canadian Tax Compliance: Data organized for Canadian tax reporting requirements
- Categories: Relevant to Ontario residents and ODSP recipients
- Multi-Currency: CAD/USD support with exchange rate tracking for cross-border purchases
- Android Version: Android 8.0 (API 26) or higher
- Storage: Minimal storage space (~10 MB for app + your data)
- Internet: Not required or used (completely offline)
- Permissions: Storage access for CSV export/import only
- Android Studio (latest version recommended)
- JDK 17
- Android SDK with API 26+ and API 36 (target)
- Gradle 8.13.2 (included via wrapper)
# Clone the repository
git clone https://github.com/matthewdaluz/fisca.git
cd fisca
# Build the application
./gradlew assembleDebug
# Install on connected device or emulator
./gradlew installDebug
# Or build a release version (requires signing)
./gradlew assembleReleaseapp/
โโโ src/main/
โ โโโ AndroidManifest.xml (NO internet permission)
โ โโโ java/matthewdaluz/app/fisca/
โ โ โโโ MainActivity.kt
โ โ โโโ AddTransactionActivity.kt
โ โ โโโ TransactionListActivity.kt
โ โ โโโ AddIncomeActivity.kt
โ โ โโโ IncomeListActivity.kt
โ โ โโโ PersonalInfoActivity.kt
โ โ โโโ StatisticsActivity.kt
โ โ โโโ ExportActivity.kt
โ โ โโโ ImportActivity.kt
โ โ โโโ model/
โ โ โ โโโ Transaction.kt
โ โ โ โโโ ODSPIncome.kt
โ โ โ โโโ PersonalInfo.kt
โ โ โโโ database/
โ โ โ โโโ FiscaDatabase.kt
โ โ โ โโโ TransactionDao.kt
โ โ โ โโโ ODSPIncomeDao.kt
โ โ โ โโโ PersonalInfoDao.kt
โ โ โ โโโ Converters.kt
โ โ โโโ export/
โ โ โ โโโ CSVExporter.kt
โ โ โโโ import_export/
โ โ โโโ CSVImporter.kt
โ โโโ res/
โ โโโ layout/ (Activity layouts)
โ โโโ menu/ (Main menu)
โ โโโ values/ (Strings, colors, themes)
- Language: Kotlin
- Architecture Pattern: MVVM-ready with ViewModels and LiveData
- Database: Room Persistence Library
- UI Framework: Material Design 3 Components
- Minimum SDK: API 26 (Android 8.0)
- Target SDK: API 36 (Android 14+)
- AndroidX Core KTX 1.17.0
- Material Components 1.13.0
- Room Database 2.8.4
- Lifecycle Components 2.10.0
- ConstraintLayout 2.2.1
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License v3.0 as published by the Free Software Foundation.
Fisca - Transaction and Income Tracking for ODSP Recipients
Copyright (C) 2026 Matthew Daluz
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
See LICENSE file for full license text.
Contributions are welcome! Since this app is designed for ODSP recipients in Ontario, please ensure any contributions:
- Maintain offline-only functionality (no network calls)
- Are relevant to Canadian/Ontario tax and benefit systems
- Follow the GNU GPLv3 license requirements
- Respect user privacy and data security
- Include GPL license headers in all source files
- Follow Kotlin coding conventions
- Add appropriate documentation
See CONTRIBUTING.md for detailed guidelines.
For questions, issues, or suggestions, please open an issue on GitHub.
This app is provided as-is for personal financial tracking. It is not a substitute for professional financial or tax advice. Always consult with a qualified tax professional or financial advisor for specific guidance on your situation.
- Basic project structure and build configuration
- Transaction data models with multi-currency support
- ODSP income models with gross/net pay tracking
- Personal information model
- Room database implementation with DAOs
- Transaction entry UI with auto-calculation
- Income entry UI with deduction tracking
- Personal information form with validation
- Transaction list view with edit/delete
- Income history view with edit/delete
- Statistics and reports page
- Category and payment method breakdowns
- CSV export functionality
- CSV import functionality
- Share exported files
- Multi-currency support (CAD/USD)
- Offline-only implementation (no internet permission)
- GNU GPLv3 licensing
- Data filtering and search
- Date range selection for reports
- PDF export for tax filing
- HST calculator tool
- Receipt photo attachment
- Backup to local storage
- Dark mode theme
- Enhanced data visualization (charts/graphs)
- Accessibility improvements
- Multi-language support (English/French)
- Widget for quick transaction entry
- Recurring transaction support
- Budget tracking features
- Notification reminders