Windows Installer v1.0.0

One-click setup for beginner Windows PCs

The Windows Installer is designed for beginners and fresh Windows systems. It sets up Oviora with a portable Android development environment so the user does not need to manually install Android Studio, Java, Android SDK, Gradle, Node.js or ADB separately.

Download Windows Installer (.exe)Run Fresh PC Test

Installer Goal

  • Install the oviora command
  • Set up portable tools
  • Configure a beginner-friendly Android build environment
  • Allow users to build and run Android apps from PowerShell

Installer Includes

  • Portable Node.js
  • Portable JDK
  • Portable Android SDK
  • Portable Gradle
  • ADB tools
  • Oviora CLI
  • PowerShell command setup

Default Install Location

C:\Oviora

Portable Runtime Structure

C:\Oviora\
  portable-bin\
    oviora.cmd
    oviora-doctor.cmd

  tools\
    nodejs\
    jdk\
    android-sdk\
    gradle\
    oviora-cli\

PowerShell Command Setup

The installer adds this path to the User PATH with priority:

C:\Oviora\portable-bin

After installation, open a new PowerShell window and run:

where.exe oviora
oviora doctor

Expected first result:

C:\Oviora\portable-bin\oviora.cmd

Expected Portable Tool Detection

A successful installer-based oviora doctor should detect tools from the portable runtime:

ADB installed as C:\Oviora\tools\android-sdk\platform-tools\adb.exe
Gradle daemon JVM using C:\Oviora\tools\jdk

This proves that Oviora is using the bundled runtime instead of depending on random system-level Android SDK or JDK paths.

System Requirements

  • Windows 10 64-bit
  • Windows 11 64-bit
  • 4 GB RAM minimum, 8 GB recommended
  • SSD recommended
  • Around 3 GB free disk space
  • Android phone with USB debugging enabled for oviora run / oviora br

Not Supported

  • Windows 7
  • Windows 8 / 8.1
  • 32-bit Windows

Windows Security Notice

The installer may currently be unsigned. If Windows shows “Windows protected your PC”, click More info → Run anyway. This warning can appear because the installer is new and may not yet have Microsoft SmartScreen reputation.

Quick Start with Windows Installer

  1. Download the Windows installer.
  2. Run the EXE.
  3. Click install.
  4. Wait until setup completes.
  5. Open a new PowerShell window.
oviora doctor
oviora create MyApp
cd MyApp
oviora br

If a phone is connected with USB debugging enabled, oviora br will build, install and launch the app.

Release Checklist for Installer

1. Update install.ps1
2. Rebuild installer
3. Run installer or direct script test
4. Confirm C:\Oviora\portable-bin is first in User PATH
5. Run where.exe oviora
6. Confirm first result is C:\Oviora\portable-bin\oviora.cmd
7. Run oviora doctor
8. Confirm ADB path is C:\Oviora\tools\android-sdk\platform-tools\adb.exe
9. Confirm Gradle JVM is C:\Oviora\tools\jdk
10. Upload only the EXE to GitHub Releases

Do not upload win-unpacked/, .exe.blockmap, node_modules/, runtime/, or private keys.