Android基础
jianchi88
这个作者很懒,什么都没留下…
展开
-
Android镜像烧写(Ubuntu)
(1)准备img镜像文件(编译源码或其它)。 (2)烧写开发板,手机或Pad用Android SDK/tools/fastboot命令。 烧写步骤: (1)烧写BOOT: sudo ./fastboot flash boot boot.img (2)烧写系统数据: sudo ./fastboot flash syste转载 2012-03-06 10:20:08 · 2534 阅读 · 0 评论 -
fastboot命令详解
Android手机分区(每个分区都有相应的img文件对应):开机启动画面区(splash1),数据恢复区(recovery),内核区(boot),系统区(system),数据缓存区(cache),用户数据区(userdata)。 1. 查看fastboot命令的帮助: fastboot 显示如下信息: [java:firstline[1]] v转载 2012-03-06 10:34:48 · 4826 阅读 · 1 评论 -
android 系统定制的小技巧(网络收集) .
1开机图片: android-logo-mask.png android-logo-shine.png 这两个图片一个在上一个在下 ./out/target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates/classes/assets/images/android-logo-shine.png转载 2012-04-08 23:17:41 · 1325 阅读 · 0 评论 -
android4.0 源码下载报错的解决(转)
今天用repo获取android源码:../bin/repo init -u git://android.git.kernel.org/platform/manifest.git出现问题:问题一:Traceback (most recent call last):File "./repo", line 590, in main(sys.argv[1:])File转载 2012-04-11 10:40:44 · 1788 阅读 · 0 评论 -
自动下载android 脚本
#!/bin/bash echo "======start repo sync======" repo sync while [ $? = 1 ]; do echo “======sync failed, re-sync again======” sleep 3 repo sync done $? 表示前一命令的运行状态的返回值,0表示正常,其他转载 2012-04-28 09:12:24 · 1189 阅读 · 0 评论 -
android 4.0编译错误
1、************************************************************You are attempting to build with the incorrect versionof java. Your version is: java version "1.6.0_24".The correct version is原创 2012-04-28 09:13:50 · 3752 阅读 · 1 评论 -
android 目录详解
Android 2.1|-- Makefile|-- bionic (bionic C库)|-- bootable (启动引导相关代码)|-- build (存放系统编译规则及generic等基础开发包配置)|-- cts转载 2012-05-04 10:16:14 · 1140 阅读 · 0 评论 -
Service xxx does not have a SELinux domain defined
需要添加一个服务xxx,并且设置成开机自启动。于是我在 init.rc 中添加了如下代码行:--- a/conf/init.rc+++ b/conf/init.rc@@ -6,6 +6,8 @@ on early-init on init + start watchdogd+ # See storage config details at htt原创 2017-11-02 17:27:19 · 12140 阅读 · 0 评论