(1)

[2011-06-23 18:59:27 - LayoutTest] Device 'SH11DPL07948' requires that applications explicitely declare themselves as debuggable in their manifest.

[2011-06-23 18:59:27 - LayoutTest] Application 'com.test' does not have the attribute 'debuggable' set to TRUE in its manifest and cannot be debugged.

出现以上情况的解决办法为:在AndroidManifest.xml里修改

<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">

(2)

Application (com.test )is waiting for the ebugger to attach错误

解决办法在AndroidManifest.xml里

<manifest>  <uses-permission android:name="android.permission.SET_DEBUG_APP"></uses-permission> </manifest> 

更多相关文章

  1. android xml 布局错误
  2. android如何查看app的内存占用情况
  3. INSTALL_PARSE_FAILED_INCONSISTENT_CERTIFICATES错误解决方法
  4. Android WebView自定义处理错误页面显示(404等)
  5. android 官方文档中的一些错误收集
  6. 编译Android出现/usr/bin/ld: cannot find -lncurses错误
  7. Android在配置文件中配置Button再不同情况下的的背景
  8. android 异常错误积累

随机推荐

  1. 编译osg for android
  2. Android(安卓)动画(anim)详解
  3. android 布局详解
  4. 短视频源码,实现文字横向移动效果(跑马灯
  5. Ubuntu下编译android的linux内核
  6. Android异步处理三:Handler+Looper+Messag
  7. 最全的Android单元测试教程
  8. Android文件的读写
  9. android LinearLayout 相关知识
  10. Android(安卓)Handler机制13之AsyncTask