ZTzTopia / GTInternalAndroid

⚙️ Growtopia mod menu with ImGUI.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GTInternalAndroid

Github Action GitHub Release

GTInternalAndroid is a Growtopia mod menu with ImGui.

Supported Version

Android 5.0 Lollipop (SDK 21) ~ 13 Tiramisu (SDK 33)

Features

  • Free and open source.

Screenshot

ImGui Demo
ImGui Demo

Build

The following dependencies are required to build from source.

The following steps are for building from source.

  1. First you need to clone the source code of this project. git clone --recurse-submodules https://github.com/ZTzTopia/GLauncherAndroid.git
  2. Then create a build folder for cmake to use cmake when configuring and building the project.
mkdir build
cd build
  1. Configure the cmake project the way you want, for example to build the arm64 library with api above 21:
cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_SYSTEM_NAME=Android -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a -DCMAKE_ANDROID_NDK="/path/to/android/ndk" -DCMAKE_SYSTEM_VERSION=21 -DCMAKE_ANDROID_NDK_TOOLCHAIN_VERSION=clang
  1. After configuring the project you can immediately build it.
cmake --build .

Note: Building this source from android will most likely work but I haven't tried it so feel free to experiment yourself :)

But you can try this tutorial: Build for Android

Credits

  • Dobby: A lightweight, multi-platform, multi-architecture hook framework
  • frida-gum: Retrieve some memory code
  • ImGui: Bloat-free Graphical User interface
  • KittyMemory: Runtime code patching

License

This project is licensed under the MIT License. See the LICENSE file for details.

About

⚙️ Growtopia mod menu with ImGUI.

License:MIT License


Languages

Language:C++ 56.7%Language:C 33.0%Language:CMake 10.3%