NASdroid is an unofficial Android client for TrueNAS server management.
Check out our releases page for the latest builds!
You can also get nightly builds from our CI runs.
Screenshots coming soon.
Features correspond to the menu items you see in the TrueNAS SCALE web interface.
Feature | Status |
---|---|
Dashboard | Available |
Storage | In progress |
Apps | In progress |
Reporting | In progress |
Datasets | Not yet started |
Shares | Not yet started |
Data Protection | Not yet started |
Network | Not yet started |
Credentials | Not yet started |
Virtualization | Not yet started |
System Settings | Not yet started |
- Networking: Ktor Client
- User Interface: Jetpack Compose
- Dependency Injection: Koin
Dependency versions (and artifact coordinates) are strictly managed via Version Catalogs, with the one exception of the Android settings plugin located in settings.gradle.kts. Take a look at our libs.versions.toml to see exact versions and a full list of libraries used.
At a high level the application is split into 3 levels, detailed below.
Core is a collection of modules that serve as "foundational" components. Most, if not all of these are planned to be moved to separate libraries in the near future.
The "meat" of NASdroid lives here. This is a collection of modules that build every feature within the app, which are further separated into a maximum of 3 modules per feature.
If a feature requires its own data source (local repositories, APIs not found in the TrueNAS API, etc), its abstraction and implementation will be here. This is the only optional module in the set of modules for any given feature.
NASdroid adopts the "use case" pattern, where business logic (Create a pool, delete an application, etc) are all extracted and broken down into single-responsibility classes.
All UI for any particular feature lives here. This includes screens, navigation graphs, ViewModels, etc.
This is the application module. It's what depends on all the features before it, and puts it all together into a usable app for your phone.
TrueNAS is an open-source NAS operating system. NASdroid is a native Android app that will (eventually) give you the same level of control over your TrueNAS install as the website.
Have you ever tried to use the TrueNAS website (or any reasonably complex management interface) on your phone? It's not much fun, so let's set out to fix that.