There's a slightly quicker way to force the amazon fire tv to launch your game after side loading it. According to the official documents here: https://developer.amazon.com/appsandser ... g-your-app
To send a launch intent to your app on the Amazon Fire TV device, use this command, where com.amazon.sample.helloworld is the package name of your app, and MainActivity is the name of your app's primary activity.
adb shell am start -n com.amazon.sample.helloworld/.MainActivity
ADB responds with a message similar to this, and your app begins running:
Starting: Intent { cmp=com.amazon.sample.helloworld/.MainActivity }
I can clearly see where my game is listed using the command
adb shell pm list packages -f
But what is the C2/XDK Equivilant of "MainActivity" in that example code?