// the find
aydenp/Bank
A simple iOS app for viewing your bank account balance and transactions.
A personal iOS app that connects to your bank via Plaid and shows balances and transactions. UIKit-based, written in Swift, split into a BankKit framework and a thin UI layer. Last touched in 2019 and effectively abandoned.
The BankKit/UI separation is sensible — keeping Plaid API logic in a framework means it could theoretically be reused. The Plaid Link SDK integration is done correctly using token exchange rather than storing credentials. Custom views like AmountLabel and RangeSegmentedControl suggest the UI was built with some care rather than slapped together.
Dead project — last commit was 2019, which means it's targeting a Plaid SDK version that no longer works; Plaid deprecated their v1 API and this will not authenticate with current Plaid infrastructure. CocoaPods with committed Pods directory is a mess; the repo ships binary framework blobs. No error recovery to speak of — if the API call fails, you're probably looking at a crash or a stuck loading state. Only works for US banks Plaid supports, which is fine for personal use but worth knowing upfront.