Lightweight Android system monitor — by G23
Also check out: G23-GetSysInfo · g23dev.vercel.app
- Performance — Battery level/status, total RAM, device info
- Apps — Installed apps list, filter by name, show/hide system apps
- Cache — Scan and clear this app's own cache
- About — App info, links to G23 projects
No root required. Android restricts killing other apps or clearing their cache — this app works within those limits.
- Go to github.com
- Click Sign up and create a free account
- Verify your email
- Click the + button (top right) → New repository
- Name it:
TaskManagerPlusAndroid - Set it to Public
- Do NOT check "Add a README" — leave it empty
- Click Create repository
- On the empty repo page, click uploading an existing file
- Upload ALL the files you downloaded, keeping the folder structure:
App.js app.json babel.config.js eas.json package.json .gitignore src/ theme.js screens/ PerformanceScreen.js AppsScreen.js CacheScreen.js AboutScreen.js .github/ workflows/ build.ymlImportant: GitHub's web uploader doesn't create folders automatically. You need to type the path manually when uploading, e.g. type
src/theme.jsin the filename field. Or use the method below.
- Download GitHub Desktop
- Sign in with your GitHub account
- Clone your new empty repo to your PC
- Copy all the project files into the cloned folder (keeping folder structure)
- In GitHub Desktop: write a commit message → click Commit → click Push
- Go to your repo on github.com
- Click the Actions tab
- You'll see a workflow called "Build Android APK" running
- Wait 5–10 minutes for it to finish (green checkmark = success)
- Click on the completed workflow run
- Scroll down to Artifacts
- Click TaskManagerPlus-APK to download a
.zip - Unzip it — inside is
app-release.apk
- Send the APK to your phone (WhatsApp, Google Drive, USB cable, etc.)
- Open it on your phone
- Android will ask to "Allow from this source" — tap Allow
- Install and open TaskManager+
TaskManagerPlusAndroid/
├── App.js # Entry point, navigation
├── app.json # Expo config
├── package.json # Dependencies
├── eas.json # Build config
├── babel.config.js
├── .gitignore
├── src/
│ ├── theme.js # Colors and fonts
│ └── screens/
│ ├── PerformanceScreen.js # Battery, RAM, device info
│ ├── AppsScreen.js # Installed apps list
│ ├── CacheScreen.js # Cache cleaner
│ └── AboutScreen.js # About + G23 links
└── .github/
└── workflows/
└── build.yml # GitHub Actions APK builder
- Cannot kill other apps' processes
- Cannot clear other apps' cache
- Process list with CPU% per app is blocked by Android
- GPU stats not available (no standard API)
© 2025 G23 · TaskManager+ Android is open source