Astro on Android with Tauri
This guide will walk you through how to setup a Astrojs Project primarily for Android Support using Tauri. This Guide assumes that you already have an Astro Js Project Setep and you are familliar with a Astro js Project Structure
Prerequisites
- You need to have an App Icon Ready in either
.svg
,.png
or.jpg
format in you[project]/public/
folder - As of today, tauri doesn’t fully support
SSR
mode in astrojs. so to be on the safe side, you need to be on theSSG
mode for eveything
Tooling Setup
-
Install Rust and System Depedencies
Terminal window sudo apt updatesudo apt install libwebkit2gtk-4.1-dev \build-essential \curl \wget \file \libxdo-dev \libssl-dev \libayatana-appindicator3-dev \librsvg2-devcurl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh &&rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android -
Setup Android Studio
- Download and Install Android Studio
- Extract it into the
/opt/
directory in linux - run this to setup all your environment variables
Terminal window echo 'export PATH="$PATH:/opt/android-studio/bin"' >> ~/.bashrc &&echo 'export JAVA_HOME=/opt/android-studio/jbr' >> ~/.bashrc &&echo 'export ANDROID_HOME="$HOME/Android/Sdk"' >> ~/.bashrc &&echo 'export NDK_HOME="$ANDROID_HOME/ndk/$(ls -1 $ANDROID_HOME/ndk)"' >> ~/.bashrcTerminal window echo 'export PATH="$PATH:/opt/android-studio/bin"' >> ~/.zshrc &&echo 'export JAVA_HOME=/opt/android-studio/jbr' >> ~/.zshrc &&echo 'export ANDROID_HOME="$HOME/Android/Sdk"' >> ~/.zshrc &&echo 'export NDK_HOME="$ANDROID_HOME/ndk/$(ls -1 $ANDROID_HOME/ndk)"' >> ~/.zshrcNow Open up Android Studio with this commnad
Terminal window studio- Open up SDK Manager from
More Action > SDK Manager
and install the following:SDK Platforms > Android <version> ("<Code>")
(Adnroid 10.0 (“Q”) will work)SDK Tools > Android SDK Build-Tools <version>
SDK Tools > NDK (Side by side)
SDK Tools > Android SDK Command-line Tools (latest)
SDK Tools > Android SDK Platform Tools
- Now, Add
Android Studio
as an Desktop Application that shows up in App Selection Menues Across the OS
Terminal window # Step 1: Create the desktop entry directory if it doesn't existmkdir -p ~/.local/share/applicationscat > ~/.local/share/applications/android-studio.desktop << 'EOF'[Desktop Entry]Version=1.0Type=ApplicationName=Android StudioComment=Android Studio IDEExec=/opt/android-studio/bin/studio.shIcon=/opt/android-studio/bin/studio.pngCategories=Development;IDE;Terminal=falseStartupWMClass=jetbrains-studioEOFchmod +x ~/.local/share/applications/android-studio.desktopupdate-desktop-database ~/.local/share/applications
Build Your AstroJs Android App!
-
Initialize Tauri
Terminal window bun add -D @tauri-apps/cli@latest &&bun tauri initFill in the Options that it asks
✔ What is your app name? astrojs-tauri✔ What should the window title be? astrojs-tauri✔ Where are your web assets located? ../dist✔ What is the url of your dev server? http://localhost:4321✔ What is your frontend dev command? bun dev✔ What is your frontend build command? bun run buildEdit the
Identifier
Property in./src-tauri/tauri.conf.json
File with the project name without spaces like this{//..."version": "0.1.0","identifier": "com.tauri.dev","identifier": "com.<project-name>.dev","build": {//...}//...} -
Setup Tauri for Android Support
Initialize Android Target
Terminal window bun tauri android initgive it the Icon’s Path
Terminal window bun tauri icon ./public/logo.svgCode Signing
run this and fill out all all options correctly
Terminal window /opt/android-studio/jbr/bin/keytool -genkey -v -keystore ~/upload-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias uploadCreate a file named
src-tauri/gen/android/keystore.properties
and add content according to this templatepassword=<password defined when keytool was executed>keyAlias=uploadstoreFile=<location of the key store file, such as /Users/<user name>/upload-keystore.jks>Edit the
src-tauri/gen/android/app/build.gradle.kts
file and do the following- Add the needed import at the beginning of the file:
import java.io.FileInputStream
- Add the release signing config before the buildTypes block:
defaultConfig {...}signingConfigs {create("release") {val keystorePropertiesFile = rootProject.file("keystore.properties")val keystoreProperties = Properties()if (keystorePropertiesFile.exists()) {keystoreProperties.load(FileInputStream(keystorePropertiesFile))}keyAlias = keystoreProperties["keyAlias"] as StringkeyPassword = keystoreProperties["password"] as StringstoreFile = file(keystoreProperties["storeFile"] as String)storePassword = keystoreProperties["password"] as String}}buildTypes {...}
- Use the new release signing config in the release config in buildTypes block:
buildTypes {getByName("debug") {...}getByName("release") {signingConfig = signingConfigs.getByName("release")...}}
- Add the needed import at the beginning of the file:
-
Build the APK
Terminal window bun tauri android build --apk --target aarch64APK will be present at
./src-tauri/gen/android/app/build/outputs/apk/universal/release
cd and share it with Nemo File ExplorerTerminal window cd "./src-tauri/gen/android/app/build/outputs/apk/universal/release"nemo .