Thanks @waltonbruce01 and @OttoKerner for the help thus far. I actually started over with a fresh install of Raspbain on a different Pi3. I figured I would detail out the the steps that I did so you could possibly see what I omitted or if I possibly made an error:
I first installed NodeJS 9.11.2:
pi@raspberrypi:~ $ wget https://nodejs.org/download/release/v9.11.2/node-v9.11.2-linux-armv6l.tar.gz
pi@raspberrypi:~ $ sudo tar -C /usr/local --strip-components=1 -xzf node-v9.11.2-linux-armv6l.tar.gz
I confirmed what NodeJS version:
pi@raspberrypi:~ $ node -v
v9.11.2
I ran Plexamp on my Windows Laptop.
I created a new directory on the Pi -> /home/pi/.config/Plexamp/
I copied the server.json file from my windows Plexamp directory to the newly created directory on the Pi.
I deleted the server.json file in my Windows Plexamp directory.
I ran Plexamp on my Windows laptop and logged back in.
I downloaded Plexamp on the Pi:
pi@raspberrypi:~ $ wget https://files.plexapp.com/elan/Plexamp-v2.0.0-rPi-beta.2.tar.bz2
I unpacked it:
pi@raspberrypi:~ $ bunzip2 Plexamp-v2.0.0-rPi-beta.2.tar.bz2
pi@raspberrypi:~ $ tar -xvf Plexamp-v2.0.0-rPi-beta.2.tar
I opened the plexamp.service file and change the ExecStart line to read /usr/local/bin/node
instead of /usr/bin/node
pi@raspberrypi:~ $ sudo nano plexamp/plexamp.service
I copied the service file:
pi@raspberrypi:~ $ sudo cp /home/pi/plexamp/plexamp.service /lib/systemd/system/plexamp.service
I got the service running:
pi@raspberrypi:~ $ sudo systemctl daemon-reload
pi@raspberrypi:~ $ sudo systemctl enable plexamp
pi@raspberrypi:~ $ sudo systemctl start plexamp
pi@raspberrypi:~ $ sudo systemctl status plexamp
Now when I load up the Plexamp on my Android device, I can see the rPi3 after I hit the share button, but I canāt connect to it to play music. It will pop a message in red saying Cannot Switch To Player. I have tried multiple times to no avail.
Any thoughts on what to do next? Not sure what to look for.
Thanks!