Skip to content

Instantly share code, notes, and snippets.

@clouedoc
Created January 5, 2026 23:35
Show Gist options
  • Select an option

  • Save clouedoc/79138ec783b12e0984a807f5dc17325e to your computer and use it in GitHub Desktop.

Select an option

Save clouedoc/79138ec783b12e0984a807f5dc17325e to your computer and use it in GitHub Desktop.
Getting Android Studio to work on Asahi Linux in 2026

Getting Android Studio to work on Asahi Linux in 2026

So, you want to do some Android development on Asahi Linux, but figured out that Android Studio isn't compatible with aarch64?

Well, worry not, it actually works but needs some jedi tricks.

First, follow the instructions on this blog post (except the last part, it's not required)

It'll mostly work, but you need to:

  1. Do not select the Android emulator. Just get a real phone for development, I guess...
  2. You need to download and add the skiko library into the right path

For the Skiko part, here's what I did:

cd ~/Android/
mkdir skiko
wget https://github.com/JetBrains/skiko/releases/download/v0.9.39/skiko-awt-runtime-linux-arm64-0.9.39.jar
unzip skiko-awt-runtime-linux-arm64-0.9.39.jar
cp libskiko-linux-arm64.so ../android-studio/lib/skiko-awt-runtime-all/

Then, I restarted Android Studio, and stuff that wasn't working (random dialogs) started to work :)!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment