SkillAgentSearch skills...

Tracktor

A GitHub user tracking app, inspired from a GIF. šŸ•µļø Can be considered as a demo project to showcase MVVM with latest android development tools

Install / Use

/learn @theapache64/Tracktor

README

tracktor šŸ•µļø

GitHub issues GitHub forks GitHub stars GitHub license Twitter

If you've got someone you truly admire for their fiery passion in programming, hitting that 'follow' button on GitHub might not be enough. Don't settle for the minimal info on your feed! That's where this app comes in šŸ˜‰

Can be considered as a demo project to showcase MVVM with latest android development tools

<p align="center"> <img src="extras/dog_stalks_cat.gif"/> </p>

Dark Mode Available šŸŒ™

dark_screenshots

How to use? šŸ¤”

  • Install the latest APK from releases šŸ“„
  • Add him/her to the list by entering the GitHub username
  • Done šŸ‘

Now you can see whatever he does 😜

Built With šŸ› 

Core šŸ˜

  • Kotlin - First class and official programming language for Android development.
  • Coroutines - For asynchronous and more..
  • Flow - A cold asynchronous data stream that sequentially emits values and completes normally or with an exception.
  • Android Architecture Components - Collection of libraries that help you design robust, testable, and maintainable apps.
    • LiveData - Data objects that notify views when the underlying database changes.
    • ViewModel - Stores UI-related data that isn't destroyed on UI changes.
    • ViewBinding - Generates a binding class for each XML layout file present in that module and allows you to more easily write code that interacts with views.
    • Room - SQLite object mapping library.
  • Dagger 2 - Dependency Injection Framework
  • Retrofit - A type-safe HTTP client for Android and Java.
  • Moshi - A modern JSON library for Kotlin and Java.
  • Moshi Converter - A Converter which uses Moshi for serialization to and from JSON.
  • Glide - An image loading library for Android backed by Kotlin Coroutines.
  • Material Components for Android - Modular and customizable Material Design UI components for Android.
  • TwinKill - A simple library, a collection of utility classes wrapped around JetPack components
  • MaterialColors - Android material color palettes
  • Material Dialogs - A beautiful, fluid, and extensible dialogs API for Kotlin & Android.

Testing 🄼

Instrumentation Testing šŸ›”ļø

  • Espresso - To write concise, beautiful, and reliable Android UI tests.
  • Barista - To make espresso tests faster, easier and more predictable

Architecture šŸ—¼

This project follows the famous MVVM architecture and best practices from Google's GithubBrowserSample

Project Structure šŸ“‚

.
ā”œā”€ā”€ androidTest
│   └── java
│       └── com
│           └── theapache64
│               └── tracktor
│                   ā”œā”€ā”€ ui
│                   │   └── activities
│                   │       ā”œā”€ā”€ splash
│                   │       │   └── SplashActivityTest.kt
│                   │       ā”œā”€ā”€ userdetail
│                   │       │   └── UserDetailActivityTest.kt
│                   │       └── users
│                   │           └── UsersActivityTest.kt
│                   └── utils
│                       └── DaggerMockRules.kt
ā”œā”€ā”€ main
│   ā”œā”€ā”€ AndroidManifest.xml
│   ā”œā”€ā”€ ic_launcher-playstore.png
│   ā”œā”€ā”€ java
│   │   └── com
│   │       └── theapache64
│   │           └── tracktor
│   │               ā”œā”€ā”€ App.kt
│   │               ā”œā”€ā”€ core
│   │               │   └── events
│   │               │       ā”œā”€ā”€ BaseEventSupport.kt
│   │               │       ā”œā”€ā”€ EventManager.kt
│   │               │       ā”œā”€ā”€ issuecomment
│   │               │       │   ā”œā”€ā”€ IssueCommentEventPayload.kt
│   │               │       │   └── IssueCommentEventSupport.kt
│   │               │       ā”œā”€ā”€ issues
│   │               │       │   ā”œā”€ā”€ IssuesEventPayload.kt
│   │               │       │   └── IssuesEventSupport.kt
│   │               │       ā”œā”€ā”€ push
│   │               │       │   ā”œā”€ā”€ PushEventPayload.kt
│   │               │       │   └── PushEventSupport.kt
│   │               │       └── watch
│   │               │           └── WatchEventSupport.kt
│   │               ā”œā”€ā”€ data
│   │               │   ā”œā”€ā”€ local
│   │               │   │   ā”œā”€ā”€ AppDatabase.kt
│   │               │   │   ā”œā”€ā”€ daos
│   │               │   │   │   └── UserDao.kt
│   │               │   │   └── entities
│   │               │   │       └── UserEntity.kt
│   │               │   ā”œā”€ā”€ remote
│   │               │   │   ā”œā”€ā”€ ApiInterface.kt
│   │               │   │   ā”œā”€ā”€ events
│   │               │   │   │   └── Event.kt
│   │               │   │   └── user
│   │               │   │       └── User.kt
│   │               │   └── repositories
│   │               │       ā”œā”€ā”€ EventsRepo.kt
│   │               │       ā”œā”€ā”€ PrefRepo.kt
│   │               │       └── UserRepo.kt
│   │               ā”œā”€ā”€ di
│   │               │   ā”œā”€ā”€ components
│   │               │   │   └── AppComponent.kt
│   │               │   └── modules
│   │               │       ā”œā”€ā”€ ActivitiesBuilderModule.kt
│   │               │       ā”œā”€ā”€ AppModule.kt
│   │               │       ā”œā”€ā”€ DatabaseModule.kt
│   │               │       ā”œā”€ā”€ NetworkModule.kt
│   │               │       ā”œā”€ā”€ RepoModule.kt
│   │               │       └── ViewModelModule.kt
│   │               ā”œā”€ā”€ models
│   │               │   └── UserEvent.kt
│   │               ā”œā”€ā”€ ui
│   │               │   ā”œā”€ā”€ activities
│   │               │   │   ā”œā”€ā”€ splash
│   │               │   │   │   ā”œā”€ā”€ SplashActivity.kt
│   │               │   │   │   └── SplashViewModel.kt
│   │               │   │   ā”œā”€ā”€ userdetail
│   │               │   │   │   ā”œā”€ā”€ UserDetailActivity.kt
│   │               │   │   │   └── UserDetailViewModel.kt
│   │               │   │   └── users
│   │               │   │       ā”œā”€ā”€ UsersActivity.kt
│   │               │   │       └── UsersViewModel.kt
│   │               │   └── adapters
│   │               │       ā”œā”€ā”€ EventDetailsAdapter.kt
│   │               │       ā”œā”€ā”€ UserEventsAdapter.kt
│   │               │       └── UsersAdapter.kt
│   │               └── utils
│   │                   ā”œā”€ā”€ DateTimeUtils.kt
│   │                   ā”œā”€ā”€ EventRepoUtils.kt
│   │                   ā”œā”€ā”€ NightModeUtils.kt
│   │                   ā”œā”€ā”€ StringUtils.kt
│   │                   └── test
│   │                       └── OpenForTesting.kt
│   └── res
│       ā”œā”€ā”€ drawable
│       │   ā”œā”€ā”€ ic_baseline_add_24.xml
│       │   ā”œā”€ā”€ ic_baseline_close_24.xml
│       │   ā”œā”€ā”€ ic_baseline_delete_outline_24.xml
│       │   ā”œā”€ā”€ ic_hacker_100.xml
│       │   ā”œā”€ā”€ ic_launcher_foreground.xml
│       │   └── ic_night_mode_24.xml
│       ā”œā”€ā”€ drawable-night
│       │   └── ic_night_mode_24.xml
│       ā”œā”€ā”€ layout
│       │   ā”œā”€ā”€ activity_splash.xml
│       │   ā”œā”€ā”€ activity_user_detail.xml
│       │   ā”œā”€ā”€ activity_users.xml
│       │   ā”œā”€ā”€ item_event_detail.xml
│       │   ā”œā”€ā”€ item_user_event.xml
│       │   └── item_user.xml
│       ā”œā”€ā”€ mipmap-anydpi-v26
│       │   ā”œā”€ā”€ ic_launcher_round.xml
│       │   └── ic_launcher.xml
│       ā”œā”€ā”€ mipmap-hdpi
│       │   ā”œā”€ā”€ ic_launcher.png
│       │   └── ic_launcher_round.png
│       ā”œā”€ā”€ mipmap-mdpi
│       │   ā”œā”€ā”€ ic_launcher.png
│       │   └── ic_launcher_round.png
│       ā”œā”€ā”€ mipmap-xhdpi
│       │   ā”œā”€ā”€ ic_launcher.png
│       │   └── ic_launcher_round.png
│       ā”œā”€ā”€ mipmap-xxhdpi
│       │   ā”œā”€ā”€ ic_launcher.png
│       │   └── ic_launcher_rou
View on GitHub
GitHub Stars62
CategoryDevelopment
Updated3d ago
Forks7

Languages

Kotlin

Security Score

85/100

Audited on Mar 25, 2026

No findings