博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android手机无法使用debug解决方法
阅读量:6547 次
发布时间:2019-06-24

本文共 428 字,大约阅读时间需要 1 分钟。

原文:

描述: 

用HTC HERO debug,报错: 
Device 'device_name' requires that applications explicitely 
declare themselves as debuggable in their manifest. 
Application 'com.prj.test01' does not have the attribute 
'debuggable' set to TRUE in its manifest and cannot be debugged 
解决方法: 在AndroidManifest.xml文件中添加android:debuggable字段,如下所示。

[java]
    1. <application android:icon="@drawable/icon"   
    2.   android:label="@string/app_name"   
    3.   android:debuggable="true"

转载地址:http://xmedo.baihongyu.com/

你可能感兴趣的文章
Memcached
查看>>
项目启动前的准备工作(随笔一)
查看>>
【java】【android】序列化Serializable和继承
查看>>
ASP.NET MVC3 在WebGrid中用CheckBox选中行
查看>>
威斯敏斯特教堂地下室里无名碑的格言
查看>>
HDU 3001 Travelling
查看>>
[原创]ExtAspNet秘密花园(十九) — 表格之复选框列
查看>>
Python的web框架很多,比如Django,webpy等,但是哪一种综合实力最强呢?
查看>>
在tomcat下context.xml中配置各种数据库连接池
查看>>
Python数据分析工具包:Pandas
查看>>
C#结构体指针的定义及使用详解
查看>>
ASP.NET AJAX(控件扩展器、工具包详述)
查看>>
ELMAH在ASP.NET MVC中的使用
查看>>
获取Repeter的Item和ItemIndex
查看>>
table极细边框的实现
查看>>
autotools工具使用
查看>>
Mac与VMware虚拟机之间无法复制/粘贴的解决方法
查看>>
.net反射详解
查看>>
ASP.net Web API的模块依赖关系
查看>>
MySQL的表分区
查看>>