Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1105936
  • 博文数量: 276
  • 博客积分: 8317
  • 博客等级: 少将
  • 技术积分: 2329
  • 用 户 组: 普通用户
  • 注册时间: 2006-09-12 08:17
个人简介

http://ads.buzzcity.net/adpage.php?partnerid=40096

文章分类

全部博文(276)

文章存档

2013年(1)

2012年(38)

2011年(102)

2010年(85)

2009年(45)

2008年(5)

分类: 嵌入式

2011-10-17 15:05:34

这里介绍的方法是无需重新打包system.img以及可以从system.img中永久删除系统apk。

1.       Goto …….\android-sdk_r08-windows\android-sdk-windows\platforms\android-9\images (this is the default folder for SDK Platform Android 2.3, API 9, revision 1), copy system.img and paste it to C:\Users\Username\.android\avd\Emulator’s name.avd

2.       Modify hardware-qemu.ini, change:

disk.systemPartition.initPath = C:\Users\Username\.android\avd\Emulator’s name.avd/system.img

3.       Type the following: emulator –avd avd-name –partition-size 100 and hit Enter(please replace avd-name with your emulator’s name). This command will launch your emulator. Please don’t try to launch it from SDK manager, otherwise, it won’t work.

4.       Launch another command prompt window, switch to …….\android-sdk_r08-windows\android-sdk-windows\tools , type in: adb -s emulator-5554 shell and hitEnter

5.       Now, type in:  mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system and hit Enter. This will remount the /system in read-write mode. Because we will copy some files to /system/app later, we must set read-write permission to that directory. To do it, type the following: chmod 777 /system/app , hit Enter. After that, you need to exit. Type exit, hit Enter again.

6.       Now, you need to remove SdkSetup.apk from /system/app (if it is not removed, the SDK will be restore in next session). In the second command prompt window, type: adb shell rm /system/app/SdkSetup.apk , hit Enter.

7.     Backup system.img, copy temp file from C:\Users\UserName\AppData\Local\Temp\AndroidEmulator\ to C:\Users\Username\.android\avd\Emulator’s name.avd/

8.       Close your emulator.

9.       Go to C:\Users\Username\.android\avd\Emulator’s name.avd and delete these two files: userdata-qemu.img and cache.img. 

10.   Rename temp file to system.img

11.   Launch your emulator in the normal way.

阅读(852) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~