Skip to content

2. Getting Started

Jing Jin edited this page May 19, 2025 · 1 revision

Downloading the APK

Download the latest APK.

Check out the releases page for more releases

Installation Instructions

You can install the APK in one of the following ways:

Method 1: Direct Installation (Easiest)

  1. Once the APK is downloaded to your device (e.g., in your "Downloads" folder), open your device's file manager.
  2. Locate and tap on the .apk file.
  3. You may be prompted to allow installations from "Unknown Sources." If so, enable this permission (usually in your device's settings under "Security" or "Apps"). The system will guide you.
  4. Confirm the installation.

Method 2: Installation via ADB

This method requires adb and USB debugging enabled on your device.

  1. Enable Developer Options and USB Debugging:
    • On your Android device, go to Settings > About phone.
    • Tap on Build number repeatedly (usually 7 times) until you see a message saying "You are now a developer!"
    • Go back to Settings > System > Developer options (the location might vary slightly by Android version/manufacturer).
    • Enable Developer options (if not already enabled).
    • Enable USB debugging.
  2. Connect Your Device: Connect your Android device to your computer via a USB cable.
  3. Install using ADB:
    • Open your terminal or command prompt on your computer.
    • Navigate to the directory where you downloaded the APK file.
    • Run the following command:
      adb install -t ai-edge-gallery.apk
      The -t flag allows testing of an APK meant for a newer platform version than the device.

Clone this wiki locally