Skip to content

Try SceneView

Get the demo app running on your device in under a minute.


Clone the repo and run:

git clone https://github.com/SceneView/sceneview-android.git
cd sceneview-android
./try-demo

That's it. The script builds the demo app and installs it on your connected Android device.

Requirements

  • Android device with USB debugging enabled
  • Java 17+ installed
  • adb on your PATH (comes with Android Studio)

Try a specific sample

./try-demo --sample ar-model-viewer    # AR tap-to-place
./try-demo --sample physics-demo       # Bouncing spheres
./try-demo --sample autopilot-demo     # Automotive HUD
./try-demo --sample dynamic-sky        # Day/night cycle
./try-demo --sample post-processing    # Bloom, SSAO, vignette

All 15 samples are available. Run ./try-demo --help for the full list.


Option 2 — Download the APK

SceneView Demo

Full showcase: 11 models, 6 HDR environments, 26+ node types, animations, physics, post-processing.

Download APK

Debug-signed — works on any device, no Play Store needed.

All 15 samples

Individual APKs for each sample: model viewer, AR, physics, camera, sky, path, text, effects.

Browse all APKs

Install from terminal

# Download and install in one line
curl -fSL -o /tmp/sceneview-demo.apk \
  https://github.com/SceneView/sceneview-android/releases/latest/download/sceneview-demo.apk \
  && adb install -r /tmp/sceneview-demo.apk

Or use the script's download mode (no build required):

./try-demo --download

Option 3 — Android Studio

  1. Open the project in Android Studio
  2. Select the samples:sceneview-demo run configuration
  3. Click Run

What's in the demo

Tab What it shows
Explore Full-screen 3D viewer — orbit camera, 8 models, 6 HDR environments
Showcase Live previews of every node type with code snippets
Gallery 14 curated cards — realistic models, animated characters, procedural geometry
Effects Post-processing: bloom, vignette, tone mapping, FXAA, SSAO
QA Stress tests, spring animations, edge cases
11 models
Khronos PBR demos, Sketchfab realistic & animated characters
6 HDR environments
Night, studio, warm, sunset, outdoor, autumn
26+ node types
Model, Light, Cube, Sphere, Text, Path, Video, View...
60fps on mid-range
Filament rendering engine, optimized for mobile

Build from source

# Clone
git clone https://github.com/SceneView/sceneview-android.git
cd sceneview-android

# Build just the demo
./gradlew :samples:sceneview-demo:assembleDebug

# Build all samples
./gradlew assembleDebug

# Run lint
./gradlew :samples:sceneview-demo:lint

The APK lands in samples/sceneview-demo/build/outputs/apk/debug/.