09 2013 档案

摘要:Android2.3 SDK编译出现Multiple substitutions specified in non-positional format的分析作者:罪惡 发布于:2010-12-7 17:59 Tuesday 分类:Android昨天谷歌正式放出了Android2.3,抱着尝鲜的心态马上更新了ADT和Android SDK,更新后发现自己2.2下编译的很好的项目出现了问题,错误详细内容为:Multiple annotations found at this line: - error: Multiple substitutions specified in non-positio 阅读全文
posted @ 2013-09-10 09:26 xumin_minzi 阅读(339) 评论(0) 推荐(0)
摘要:adb连接android手机无法连接的解决方法(2011-02-14 11:20:01)转载▼标签:it分类: Android学习adb连接android手机 默认情况下,Ubuntu下通过USB数据线连接某些手机后,adb可能无法正常连接到设备。按照以下步骤可以解决此问题。1)在terminal下面运行lsusb命令会发现结果有会有如下类似记录:Bus 001 Device 008: ID 0bb4:0c02 High Tech Computer Corp.这时输入命令sudo vim /etc/udev/rules.d/50-android.rules在打开的文件中增加以下文本:SUBSY 阅读全文
posted @ 2013-09-10 09:23 xumin_minzi 阅读(1099) 评论(0) 推荐(0)
摘要:烧写好系统后,想往system/app下push一个apk,提示remount failed: Operation not permitted。解决方案如下: 1. 进入shell adb shell 2. shell下输入命令 shell@android:/ $ sushell@android:/ # mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /systemshell@android:/ # chmod 777 /systemshell@android:/ # cd systemshell@android:/system # c.. 阅读全文
posted @ 2013-09-06 16:13 xumin_minzi 阅读(937) 评论(0) 推荐(0)