How To - Interact with Amazon Fire OS from your PC command line
You will need to first download the Android Platform tools
In my example, I place the tools here:
C:\bin\android\platform-tools
If you list the contents of the directory it should look like this:
12/28/2024 06:03 PM 5,969,000 adb.exe
12/28/2024 06:03 PM 108,136 AdbWinApi.dll
12/28/2024 06:03 PM 73,320 AdbWinUsbApi.dll
12/28/2024 06:03 PM 451,688 etc1tool.exe
12/28/2024 06:03 PM 1,874,536 fastboot.exe
12/28/2024 06:03 PM 54,376 hprof-conv.exe
12/28/2024 06:03 PM 242,968 libwinpthread-1.dll
12/28/2024 06:03 PM 479,848 make_f2fs.exe
12/28/2024 06:03 PM 479,848 make_f2fs_casefold.exe
12/28/2024 06:03 PM 1,157 mke2fs.conf
12/28/2024 06:03 PM 756,840 mke2fs.exe
12/28/2024 06:03 PM 1,089,833 NOTICE.txt
12/28/2024 06:03 PM 38 source.properties
12/28/2024 06:03 PM 2,912,360 sqlite3.exe
The application you will need the most is the first item: adb.exe
Run the command in your command prompt:
adb shell
Once you run it, it will change your command prompt line will change to the adb shell and will look like this:
raspite:/ $
Show all users
pm list users
Show All Apps
pm list packages
Install package to logged in user
cmd package install-existing com.google.android.apps.youtube.kids
This post will be updated with additional commands as I find and use them.