IntelliJ Android - 调试前删除应用程序
有谁知道是否有一种方法可以在 IntelliJ 中创建调试配置,从而在启动之前删除应用程序?这可以通过 adb 命令完成,所以应该可以吗?
Does anyone know if there is a way to get create a Debug Configuration in IntelliJ that will remove the application before launch? This can be done via adb commands so it should be possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在运行/调试配置中,启动前部分下有一些选项,您可以使用简单的 exec 目标将运行
adb
并使用适当的选项从设备中卸载应用程序(或者您可以使用特殊的 AndroidAnt 可以单独安装的任务)。In the Run/Debug configuration there are some options under Before Launch section, you can create an Ant
build.xml
file with a simple exec target that will runadb
with appropriate options to uninstall your application from the device (or you can use special AndroidAnt tasks that can be installed separately).