2014-02-28 27 views
0
[2014-02-28 15:56:59 - Torch] Failed to install Torch.apk on device 'EC233D013E3B! 
[2014-02-28 15:56:59 - Torch] (null) [2014-02-28 15:56:59 - Torch] Launch canceled! 

当apk安装到真机上时,显示上述提示。我已将avd的API级别设置为与真机的API级别相同。为什么android程序可以在avd上工作但在真机上无法正常工作

+4

我敢打赌,答案是完整的adb logcat日志。 – pelotasplus

+1

因为您在安装应用程序之前和之后更改了软件包名称。先卸载,然后再试一次。 – Simon

回答

0

请卸载您的AVD或ANdroid设备中的现有应用程序。以下是你的bug的原因:

1) Your app might be still running and allocated memory may not be released properly. 

2) If you have less memory of SD Card, RAM and Heap Size in your AVD will throw this error. 

3) You might declared <uses-sdk minSDKVersion = "8" /> and you might running AVD with API < 8 also causes error. 
相关问题