Skip to content

Releases: Core-Mate/OpenGUI

OpenGUI Android APK v0.1.0

02 May 15:33
1a09c2f

Choose a tag to compare

OpenGUI Android APK v0.1.0

This release provides a debug APK for Android device testing.

APK

  • File: OpenGUI-Android-v0.1.0-debug.apk
  • Package name: com.coremate.opengui
  • Verified UI language: English

What This APK Includes

This APK is the Android client only. It does not include the backend service, model configuration, or API keys.

Users can install the APK directly, but they still need to run an OpenGUI backend and point the app to that backend.

Quick Start

  1. Start the backend:
cd server
./start.sh
  1. On first run, edit the generated backend environment file:
server/apps/backend/.env

Fill in the required model settings:

VLM_API_KEY=your_model_api_key
VLM_BASE_URL=https://your-openai-compatible-endpoint/v1
VLM_MODEL=your_model
  1. Install the APK on an Android device.

  2. Open the app settings and set the backend Server URL.

For an Android emulator:

http://10.0.2.2:7777

For a physical device on the same Wi-Fi or hotspot as the computer, use the computer LAN IP, for example:

http://192.168.x.x:7777

For a public backend, use your deployed backend URL.

Notes

  • Do not put real API keys inside the APK or release notes.
  • If the app cannot connect, first check that the backend is running and that the Server URL in the app points to the correct backend address.
  • This is a debug APK intended for testing.