我如何指向 shell 执行存储在 rList 中的 activity?

how can i point the shell go execute an activity that is stored in an rList?

我正在尝试从终端仿真器(在设备上)在 Android 中启动应用程序,通常此命令会起作用。

am start -n com.hcg.cok.gp/com.hcg.cok.gp.com.clash.of.kings.EmpireActivity

我遇到的问题是开发人员决定将 activity 嵌套在 rList 中,甚至花了很长时间才找到这个愚蠢的东西,但最终在多次更改目录并使用

之后
ls 
ls -a

命令够多了终于在这​​样种的目录里找到了傻逼

/data/data/com.hcg.cok.gp/files/rList-com.clash.of.kings.EmpireActivity

有什么方法可以得到

am start -n

正确调用这个笨东西的命令

我试过了

am start -n /data/data/com.hcg.cok.gp/com.hcg.com.gp/files/rlist-com.clash.of.kings.EmpireActivity

但是终端还是报错:

Error type 3
Error: Activity class {/data/data/com.hcg.cok.gp/com.hcg.com.gp/files/rlist-com.clash.of.kings.EmpireActivity} does not exist.

EmpireActivity的包名是com.clash.of.kings,所以正确的intent是:

am start -n com.hcg.cok.gp/com.clash.of.kings.EmpireActivity