本文介绍了如何在Genymotion中重新启动android设备模拟器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用Genymotion重启(启动完成)后如何测试我的应用程序,我将nexus 4用作设备
How can i test my application after reboot(BOOT COMPLETED) using Genymotion I am using nexus 4 as device
<receiver android:name="com.template.SampleBootReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
推荐答案
您可以在adb reboot
中使用命令行.它应该重新启动您的设备.
You can use the command line with adb reboot
. It should restart your device.
要使用adb,您需要位于adb二进制文件的文件夹内.即<android SDK>/platform-tools/
或<genymotion folder>/tools/
(如果未安装android SDK).您也可以将这些文件夹添加到路径中,以便从任何地方访问它.
To use adb you need to be inside the adb binary's folder. ie, <android SDK>/platform-tools/
or <genymotion folder>/tools/
if the android SDK is not installed. You can also these folders to your path to access it from anywhere.
这篇关于如何在Genymotion中重新启动android设备模拟器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!