It runs fast and well on Windows.
Download and install it, as shown below.

You'll need to provide a Google login.
When it's done, you'll see the BlueStacks home page, as shown below. (You won't have the Bank of America app installed yet.)

Mac OS or Linux
Observing the Listening Port
On your host computer, execute this command:You should see a LISTENING port on the loopback address, as shown below.netstat -an | grep 5555
Installing Socat
We need to forward that port to the Kali virtual machine with Socat.On a Mac OS machine, execute these commands to install Homebrew and Socat:
On Ubuntu Linux, execute these commands instead:/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" brew install socatsudo apt update sudo apt install socatPort Forwarding with Socat
Execute this command:The terminal freezes, waiting for traffic, as shown below.socat tcp-listen:5556,reuseaddr,fork tcp:localhost:5555Leave this terminal window open.
Windows
Observing the Listening Port
On your host computer, in a Command Prompt, execute this command:You should see a LISTENING port on the loopback address, as shown below.netstat -an | findstr "5555"Port Forwarding
We need to forward that port to the Kali virtual machine with Socat. Execute this command:To see that it's working, execute this command:netsh interface portproxy add v4tov4 listenport=5556 listenaddress=0.0.0.0 connectport=5555 connectaddress=127.0.0.1You should see a LISTENING port on the arbitrary address "0.0.0.0", as shown below.netstat -an | findstr "5556"
ip addr
Find the IP address of the interface that
goes to the host, which is usually
"eth0", as highlighted in the
image below.

On the host computer, execute ifconfig or ipconfig and find the interface address that's on the same subnet as the Kali machine.
On my host, it was 172.16.123.1, as shown below.

apt update
apt install android-tools-adb -y
adb connect 172.16.123.1:5556
adb devices -l
You see a kltexx device attached,
as shown below.

Save a full-desktop image. On a Mac, press Commmand+3. On a PC, press Shift+PrntScrn and paste into Paint.
YOU MUST SUBMIT A FULL-SCREEN IMAGE FOR FULL CREDIT!
Save the image with the filename "YOUR NAME Proj 4x", replacing "YOUR NAME" with your real name.