DEV Community

Cover image for How to use an Android device for ASP.NET development
Peter Ruttkay-Nedecký
Peter Ruttkay-Nedecký

Posted on • Originally published at nede.dev

How to use an Android device for ASP.NET development

In this article, I will show you how to turn your Android device into a machine for web development with .NET 5. For the sake of fun, we will do all the necessary configuration steps directly on a tablet without the aid of another computer. The basic idea is to use code-server, which enables us to run VsCode on a remote machine and access it in a browser.

Set up a virtual machine

We are going to use DigitalOcean as a provider for our virtual machine (VM). DigitalOcean offers a Droplet (Linux-based VM) with an already configured code-server. The problem is that it contains an old version of code-server, and I had a hard time trying to update it to the newest version. Therefore, we will go with the clean Ubuntu Droplet, and we will install code-server ourselves.

Ubuntu Droplet

The cheapest option is enough for our testing, but you can go with the $10/mo options if you plan to do some serious stuff. The nice thing about DigitalOcean is that you are charged only for the time when the VM is allocated to you. So, you can even go with the $80/mo option, play with the VM for an hour, then destroy it, and you are going to be charged only $0.119.

We are going to use SSH for accessing our server during setup. For this, we can use Termux, which is an Android terminal emulator and Linux environment app. You can use Termux for many development related tasks - even to install NodeJS and use it to develop web applications to some degree. Sadly, at least at the time of writing this article, it is impossible to use it for .NET development. But it is worth to keep an eye on Termux/.NET compatibility for the future - https://github.com/termux/termux-packages/issues/516.

For SSH access, we first need to generate an SSH key, so let’s install OpenSSH.

pkg upgrade 
pkg install openssh
Enter fullscreen mode Exit fullscreen mode

And then generate our SSH key pair.

ssh-keygen -t rsa -b 2048
Enter fullscreen mode Exit fullscreen mode

Keep the default location when prompted, and then print the public SSH key.

cat ~/.ssh/id_rsa.pub
Enter fullscreen mode Exit fullscreen mode

We can now go back to the Droplet setup and enter the public key in the Authentication section.

Droplet authentication

And that’s it. You can also change the name of the server and then finish the creation of the server. It will take only a few seconds for the setup to finish.

Let’s go back to Termux and run the following command to connect to the newly created server.

ssh root@[ip address of your server]
Enter fullscreen mode Exit fullscreen mode

You can obtain the IP address from the list of Droplets.

Droplet IP address

code-server user

Before we install code-server, we need to prepare a user under which code-server will run. The reason for this is that code-server enables us to run commands directly on the server through the terminal in VsCode, and it is safer if we don’t run them under the root user by default.

Let’s create a new user using the following command.

adduser codeuser
Enter fullscreen mode Exit fullscreen mode

You can, of course, pick any name you like instead of “codeuser”. To run administrative tasks under the “codeuser” user using the “sudo” command, we need to add the user to the “sudo” group.

usermod -aG sudo codeuser
Enter fullscreen mode Exit fullscreen mode

code-server

We are now ready to install code-server. We will use the official code-server documentation as a guide, but mind that the guide also contains steps for creating a VM on Google Cloud, but we already have one. Therefore, we can skip right to the installation of code-server package.

curl -fsSL https://code-server.dev/install.sh | sh
Enter fullscreen mode Exit fullscreen mode

Let’s enable the code-server service using the following command.

systemctl enable --now code-server@codeuser
Enter fullscreen mode Exit fullscreen mode

The “codeuser” string after the “@” character specifies that the code-server service should run under the user we created before. From the technical point of view, we have simply defined the instance’s identifier, which is used as a value for the “User=” option in the unit template.

We can see that by printing out the “/lib/systemd/system/code-server@.service” template.

cat /lib/systemd/system/code-server@.service
Enter fullscreen mode Exit fullscreen mode

And inspecting the following line.

User=%i
Enter fullscreen mode Exit fullscreen mode

Expose code-server

We must expose code-server to the internet using a reverse proxy to access it through a browser. For the sake of security, we are going to expose code-server only through HTTPS. We will therefore need an SSL certificate. We can use Let’s Encrypt, which provides SSL certificates for free. The only downside is that we also need a domain because Let’s Encrypt doesn’t offer certificates for plain IP addresses.

Our first step after obtaining a domain is to point it to the server IP. We can do that by creating an “A” record in the DNS configuration of your domain provider. Set the record’s value to the IP address of your server and Host to a subdomain that you like (e.g. “www”). Mind that the DNS propagation may take up some time (24-48 hours, but usually it is much faster).

We are going to use the caddy server for the reverse proxy. It makes HTTPS setup with Let’s Encrypt really easy. First, we need to install caddy by following steps from the official documentation.

sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https

curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/cfg/gpg/gpg.155B6D79CA56EA34.key' | sudo apt-key add -

curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/cfg/setup/config.deb.txt?distro=debian&version=any-version' | sudo tee -a /etc/apt/sources.list.d/caddy-stable.list

sudo apt update

sudo apt install caddy
Enter fullscreen mode Exit fullscreen mode

Now let’s configure the reverse proxy. Replace the content of “/etc/caddy/Caddyfile” with:

[my-domain]
reverse_proxy 127.0.0.1:8080
Enter fullscreen mode Exit fullscreen mode

Where “[my-domain]” is the domain that we configured “A” record for – e.g. “www.my-domain.com”.

Now, let’s reload the caddy server.

sudo systemctl reload caddy
Enter fullscreen mode Exit fullscreen mode

We are ready to access the code server. Open “https://[my-domain]” in a browser (replace [my-domain] with your domain), and we will see the login screen of our code-server. We can find the password by running the following command.

cat ~codeuser/.config/code-server/config.yaml
Enter fullscreen mode Exit fullscreen mode

If you wish to change it, modify the “config.yaml” file and reload the code-server service using the following command.

sudo systemctl restart code-server@codeuser
Enter fullscreen mode Exit fullscreen mode

We can run the rest of the configuration directly from the VsCode terminal, and we may therefore close the SSH connection in Termux.

For additional security, we are going to enable the UFW firewall. We need to allow SSH connections and HTTPS connections on the default port (443).

ufw allow OpenSSH
ufw allow https
Enter fullscreen mode Exit fullscreen mode

Now we can enable the firewall.

ufw enable
Enter fullscreen mode Exit fullscreen mode

Install .NET SDK

We can install the .NET SDK by following the steps from https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu.

Run the following command (for Ubuntu 20.04 - if you are using another Linux distribution, go to https://docs.microsoft.com/en-us/dotnet/core/install/linux and select it).

wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
Enter fullscreen mode Exit fullscreen mode

And then.

sudo apt-get update; \
    sudo apt-get install -y apt-transport-https && \
    sudo apt-get update && \
    sudo apt-get install -y dotnet-sdk-5.0
Enter fullscreen mode Exit fullscreen mode

Our first ASP.NET application

We are ready to create our first ASP.NET application using the code-server terminal in the usual way.

mkdir webapp1
cd webapp1
dotnet new web
Enter fullscreen mode Exit fullscreen mode

And we can start it.

dotnet run
Enter fullscreen mode Exit fullscreen mode

The only problem that is left before us is how to access the application because it runs on localhost on the remote server. We can, of course, inspect the response using curl.

curl http://localhost:5000
Enter fullscreen mode Exit fullscreen mode

But that would be rather painful. We would typically create a reverse proxy in the caddy server to expose the local addresses, but code-server has us already covered. Just head to “https://[my-domain]/proxy/5000”, and we can see our ASP.NET application. That is because code-server acts as a simple reverse proxy where each request to the “/proxy/[port]” path is forwarded to the appropriate port.

Conclusion

We have managed to create a development environment out of our Android device. And on top of that, we managed to do the whole setup from the Android device itself – so you can do it even on a bus 🙂. If you own an iPad instead, then luckily, you can follow the same steps, but instead of Termux, you will use Blink Shell, or Ish.

So, that’s it, happy coding!

Sources

Top comments (0)