已经到货,同步好多看账号的时候,感动了,完整了。
12.12更新===
参考:
你的小米多看电子书发货了吗?使用体验如何? - 就吃块瓜而已的回答 - 知乎 https://www.zhihu.com/question/359023022/answer/931092886
com.douban.frodo_douban_6.26.0_171.apk
adb devices
测试,正常应该输出类似: >adb devices List of devices attached 26XXX/000066XXX device
>adb install -r com.douban.frodo_douban_6.26.0_171.apk Success >
> adb shell pm list packages|grep douban # 查找豆瓣app的包名 package:com.douban.frodo > adb shell am start com.douban.frodo # 尝试用包名启动豆瓣APP Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] pkg=com.douban.frodo } Error: Activity not started, unable to resolve Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 pkg=com.douban.frodo }
提示无法启动,需要找到对应的包的启动MAIN所在的Activity:
> adb shell dumpsys package com.douban.frodo #一大堆输出...找到这个位置: ... android.intent.action.MAIN: 99d780d com.douban.frodo/.activity.SplashActivity filter a518c82 Action: "android.intent.action.MAIN" Category: "android.intent.category.LAUNCHER" com.douban.frodo.start_single_group: ...
说明启动Activity 是 : com.douban.frodo/.activity.SplashActivity
,继续执行:
adb shell am start com.douban.frodo/.activity.SplashActivity
可以看到豆瓣APP已经被打开了:
又装了个豆瓣阅读APP,显示也没有问题:
顺便吐槽一下:多看现在书太贵了,建议多看能尽快完善会员包月制度;很多书现在比豆瓣之类的贵很多。
adb shell am force-stop com.douban.frodo