I have Samsung Galaxy Tab S6 and it has cool features to replace laptops, but it is unfortunately running Android OS, and not many development apps are available for Android.
Is there an option to run VS Code at least on an Android device?
I have Samsung Galaxy Tab S6 and it has cool features to replace laptops, but it is unfortunately running Android OS, and not many development apps are available for Android.
Is there an option to run VS Code at least on an Android device?
There are two ways to use Linux on Android so we can use VS Code :
First easy way (Virtual Network Computing) (VNC):
1. Install a Linux distro via "Termux"
pkg update -y && pkg install proot wget tar pulseaudio -y && wget https://raw.githubusercontent.com/AndronixApp/AndronixOrigin/master/Rootfs/Ubuntu19/ubuntu19.sh && chmod +x ubuntu19.sh && ./ubuntu19.sh
2. Install Linux GUI desktop environment like "Xfce".
sudo apt-get install xfce4 xfce4-goodies -y
3. start a VNC server on your linux.
sudo apt-get install tightvncserver -y
4. Open "VNC Viewer" on android to start hacking.
you may need to do command vncserver -list
to list the port
5. Install vscode for ARM64
6. Optional: Install NodeJS for ARM64.
apt install nodejs
more info:
https://medium.com/@quantvc/running-debian-on-android-device-natively-73545c9b0757
Helpful Resources:
https://play.google.com/store/apps/details?id=studio.com.techriz.andronix
https://play.google.com/store/apps/details?id=com.termux
https://play.google.com/store/apps/details?id=com.realvnc.viewer.android
List of some ARM64 Hackers:
@Lemon1I @boby2001820 @NTAuthority @gus33000
Worth mentioning:
https://github.com/WOA-Project
Q & A