bluedroid.so for k860/k860i 1./media/Enjoy/AndroidCode/cm10.1/device/lenovo/stuttgart/bluetooth/bluetooth.c [new file] /* * Copyright (C) 2008 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); *…
--------- beginning of /dev/log/main I/installd( 1377): installd firing up I/DEBUG ( 1370): debuggerd: Aug 3 2013 18:29:43 D/STMD ( 1371): STMD STATE: BOOT D/STMD ( 1371): value_to_int() - No numeric value found V/STMD ( 1371): read_config_file: mode…
错误1: D/gpsd ( ): main() D/gpsd ( ): argv[] = '/system/bin/glgps' D/gpsd ( ): argv[] = '-c' D/gpsd ( ): argv[] = '/system/etc/gpsconfig.xml' E/gpslogd ( ): ASSERT : Failed to read config file. F/libc ( ): Fatal signal (SIGSEGV), thread (glgps) 分析:缺少gp…
原文件注释说明: # audio hardware module section: contains descriptors for all audio hw modules present on the # device. Each hw module node is named after the corresponding hw module library base name. # for instance, "primary" corresponds to audio.pri…
很久没有撸Android App开发了- 最近把一个月前通过反编译.二次修改的Android SSHD项目进行简单修改一下: 突然发现迁移项目时,报了一个错误,同时还出现了闪退情况: - ::): threadid=: thread exiting with uncaught exception (group=0x41b2cc50) - ::): service = null 感觉像是迁移过程中没完整导致的,解决方法很简单,就是把java目录重命名为src即可: 历史提交记录:https://c…
Android项目开发过程中,容易出现缺少对应中英文翻译的情况,这个Python脚本是用于检查字符串是否缺少了对应的翻译 #!/usr/bin/env python # encoding: utf-8 import os, sys, getopt import xml.dom.minidom import subprocess from xml.dom.minidom import Node # 判断是否是App项目依据 Axml='AndroidManifest.xml' res_en_str…
执行: prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-gdb out/target/product/rk30sdk/symbols/system/bin/app_process 报错: prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/bin/arm-linux-androideabi-gdb: error while loa…
1. 配置自动补全: Windows -> preferences -> 搜索assist,修改 java xml自动触发补全:.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_ 2. 自动补全插件: http://www.cnblogs.com/sunjie21/archive/2012/06/28/2567463.html Windows -> Preference -> 搜索 Assist,C/C++.Java.XML…
Shell脚本: #!/bin/bash devices=( $(adb devices|grep device$|awk '{print $1}'|xargs echo) ) case ${#devices[@]} in ) echo "can't found a android device!" ;; ) serial=$devices ;; * ) select serial in ${devices[@]}; do break; done ;; esac if [[ -z $s…
--此文仅做个人配置记录-- 因为我经常需要sshd来连接设备,它抓取logcat日志太方便了,方便排查问题,及多人共享: 及有USB孔限制的人来说,这个更具有意义: 把超级终端增强包部署到内网,也是为了方便下载,毕竟不是什么时候都可以上外网,并且外网下载太慢了: 增强包的配置相对比较麻烦一些,还需要配置bind9域名解析服务器,nginx或apach2网页服务器: 不过这些对于一般开发者来说,搭建这些玩意的服务器都不算个事: 此外,ssh并不同于adb shell,一些环境变量也没有: 如果这…