ADB获取包名和启动页Activity
1、手机打开USB调试,输入adb devices,查看设备在线,设备一定要是device
2、先在手机上打开要查找活动页的软件,然后输入以下任意一条命令获取应用活动页
adb shell dumpsys window w | findstr \/|findstr name=
adb shell dumpsys window | findstr mCurrenFocus
3、adb启动应用
adb shell am start -n com.autonavi.minimap/com.autonavi.map.activity.NewMapActivity