如何在 Android 设备上运行 VS Code

Mic*_*msm 4 android arm visual-studio-code

我有 Galaxy Tab S6,它具有替代笔记本电脑的很酷的功能,例如连接鼠标和键盘,但不幸的是它运行 Android 操作系统,并且没有很多开发应用程序可用于 Android,所以我想是否有一个选项可以运行 VS code至少在我的设备上?

Mic*_*msm 6

更新:只需从您的设备访问github.dev并添加到主屏幕即可。

我在基于 Galaxy Tab S6 ARM64 的处理器上使用 Linux Ubuntu 编写了这篇文章,并使用完整版的 chromium。以下方法可以应用于任何高端 Android 设备;)

您有 2 种方法安装 Linux:

  • 第一种简单方法(虚拟网络计算)(VNC):

1.通过“Termux”安装Linux发行版

<code> 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 </code>
Run Code Online (Sandbox Code Playgroud)

2. 安装Linux GUI桌面环境,如“Xfce”。

sudo apt-get install xfce4 xfce4-goodies -y
Run Code Online (Sandbox Code Playgroud)

3. 在 Linux 上启动 VNC 服务器。

sudo apt-get install tightvncserver -y
Run Code Online (Sandbox Code Playgroud)

4. 在安卓上打开“VNC Viewer”开始破解。

您可能需要执行命令vncserver -list来列出端口

5. 安装适用于arm64的vscode
6. 可选:安装适用于arm64的NodeJS

```apt install nodejs```
Run Code Online (Sandbox Code Playgroud)
  • 第二种 hacky 方法(Linux 本机):

  • 安装可启动的linux环境

  • 启动并安装linux

更多信息:

https://medium.com/@quantvc/running-debian-on-android-device-natively-73545c9b0757

有用的资源:

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