An open API service indexing awesome lists of open source software.

https://github.com/c0d3h01/androidtweaker

Android performance enhancer
https://github.com/c0d3h01/androidtweaker

android optimization shell tweaks

Last synced: 4 months ago
JSON representation

Android performance enhancer

Awesome Lists containing this project

README

          

# Android Tweaker

Android Tweaker is a Magisk module for manual CPU/GPU frequency control.

## Features

- Set CPU min/max frequency
- Set GPU min/max frequency
- Apply preset profiles
- Interactive terminal interface

This module does not run auto-optimizer tasks in background.

## Requirements

- Rooted Android device
- Magisk installed
- Kernel with exposed CPU/GPU frequency sysfs nodes
- Terminal app (recommended: Termux)

## Installation

1. Download the latest module zip from GitHub Releases.
2. Open Magisk app.
3. Go to Modules.
4. Tap Install from storage.
5. Select the downloaded zip.
6. Reboot device.

## Usage

Run from terminal as root:

```bash
su -c andro
```

Help:

```bash
su -c "andro --help"
```

Use custom preset file:

```bash
su -c "andro --preset-file /data/adb/modules/android_tweaker/config/processes.list"
```

Use custom log file:

```bash
su -c "andro --log-file /data/adb/modules/android_tweaker/logs/andro.log"
```

## Presets

Default preset file:

`/data/adb/modules/android_tweaker/config/processes.list`

Format:

```text
preset_name cpu_min cpu_max gpu_min gpu_max
```

## Logs

Default log file:

`/data/adb/modules/android_tweaker/logs/andro.log`

## Uninstall

Remove the module from Magisk Modules, then reboot.

## Important

- Wrong frequency values may cause instability, lag, or reboot loops.
- Start with safe values supported by your device kernel.