Runnng Android app on windows 11
Just like WSL (Windows Subsystem for Linux), microsoft also introduced WSA ( Windows Subsystem for Android). I’ve tested the feature with few android apps including Chaldal and Cookups android app (Screenshot above)
Microsoft also made nice integration with the windows 11, where the android app shows up just a like a normal app in the start menu.
Even support resizing screensizes on apps that supports them. Like how Cookups app does here -
Easy setup
WSA is not available for all countries. But if its available for you, you should be able to find “Amazon Appstore” in Microsoft store. And installing “Amazon AppStore” should also install WSA along with it.
Or you can directly go to this link and attempt to install
https://www.microsoft.com/en-us/p/windows-subsystem-for-android/9p3395vx91nr
Alternative Setup
But if you don’t have access to “amazon Appstore” or WSA, you can manually download using a thirdparty microsoft store link generator.
Put the https://www.microsoft.com/en-us/p/windows-subsystem-for-android/9p3395vx91nr
url in the input and generate link.
You should see bunch of file name, For me, I had to download 2 files
- Microsoft.UI.Xaml.2.6_2.62112.3002.0_x64__8wekyb3d8bbwe.Appx
- MicrosoftCorporationII.WindowsSubsystemForAndroid_2205.40000.16.0neutral__8wekyb3d8bbwe.Msixbundle
I installed no 1 file just by double clicking and 2nd file using powershell in administrator mode with following command
Add-AppxPackage -Path "C:\Users\jahid\Downloads\MicrosoftCorporationII.WindowsSubsystemForAndroid_2205.40000.16.0_neutral___8wekyb3d8bbwe.Msixbundle"
Sideloading android app
If you don’t have amazon app store or the desired app that is not available on amazon app store - you can always sideload android app from APK.
Todo so - you’ll need
- ADB installed
- Developer mode enabled in “Windows Subsystem for Android Settings”
Once you enable developer mode, You’ll see the WSA IP address in settings and you can use the following command to connect to the WSA using adb
adb connect 127.0.0.1:58526
Once connected, you can download your desired APK from any thirdparty apk download site ( ex- apkpure ) and use following command to install
adb install .\app-release.apk