久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <tfoot id='BxazM'></tfoot>
  1. <legend id='BxazM'><style id='BxazM'><dir id='BxazM'><q id='BxazM'></q></dir></style></legend>

  2. <i id='BxazM'><tr id='BxazM'><dt id='BxazM'><q id='BxazM'><span id='BxazM'><b id='BxazM'><form id='BxazM'><ins id='BxazM'></ins><ul id='BxazM'></ul><sub id='BxazM'></sub></form><legend id='BxazM'></legend><bdo id='BxazM'><pre id='BxazM'><center id='BxazM'></center></pre></bdo></b><th id='BxazM'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='BxazM'><tfoot id='BxazM'></tfoot><dl id='BxazM'><fieldset id='BxazM'></fieldset></dl></div>

      <bdo id='BxazM'></bdo><ul id='BxazM'></ul>

    <small id='BxazM'></small><noframes id='BxazM'>

      在 Android 模擬器上運行自定義 ROM

      Run custom ROM on Android Emulator(在 Android 模擬器上運行自定義 ROM)
        <tbody id='vxBVe'></tbody>
      <i id='vxBVe'><tr id='vxBVe'><dt id='vxBVe'><q id='vxBVe'><span id='vxBVe'><b id='vxBVe'><form id='vxBVe'><ins id='vxBVe'></ins><ul id='vxBVe'></ul><sub id='vxBVe'></sub></form><legend id='vxBVe'></legend><bdo id='vxBVe'><pre id='vxBVe'><center id='vxBVe'></center></pre></bdo></b><th id='vxBVe'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='vxBVe'><tfoot id='vxBVe'></tfoot><dl id='vxBVe'><fieldset id='vxBVe'></fieldset></dl></div>

        1. <legend id='vxBVe'><style id='vxBVe'><dir id='vxBVe'><q id='vxBVe'></q></dir></style></legend>

              <small id='vxBVe'></small><noframes id='vxBVe'>

              <tfoot id='vxBVe'></tfoot>
                <bdo id='vxBVe'></bdo><ul id='vxBVe'></ul>
                本文介紹了在 Android 模擬器上運行自定義 ROM的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                我下載了一個第三方ROM,我想先在模擬器上運行,然后再刷入手機.以下是cm-11-20140911-NIGHTLY-p3110.zip的內容:

                I downloaded a third-party ROM, and I want to run it on the emulator first before flash it into the phone. Here is the contents of cm-11-20140911-NIGHTLY-p3110.zip:

                 1. boot.img
                 2. file_contexts
                 3. META-INF/
                 4. recovery/
                 5. system/
                

                我使用腳本 unpack-bootimg.pl 解壓了 boot.img 并得到 boot.img-kernelboot.img-ramdisk.cpio.gz. 然后我使用 make_ext4fs 重新打包系統并得到 system.img.

                I unpacked boot.img using the script unpack-bootimg.pl and get boot.img-kernel, and boot.img-ramdisk.cpio.gz. Then I repacked the system using the make_ext4fs and got system.img.

                我創建了一個 AVD 并執行:

                I created an AVD and execute:

                emulator -system ~/cm11/system_new.img -ramdisk ~/cm11/boot.img-ramdisk.cpio.gz -kernel ~/cm11/boot.img-kernel -avd and442

                但我什么都沒有,模擬器屏幕只是黑色的.adb -s emulator-5554 沒有日志消息.

                but all I got is nothing, the emulator screen is just black. There is no log message from adb -s emulator-5554.

                現在我很困惑:

                • 第三方ROM可以通過模擬器測試嗎?
                • 我做對了嗎?

                推薦答案

                是的,為什么不呢.

                我們可以在Android AVD上刷第三方ROM.但首先你必須知道以下幾點:

                We can flash a third-party ROM on Android AVD. But first you must know the following things:

                1.Android 模擬器本身就是一個設備,就像你的 Moto G 或 Xperia

                1. The Android Emulator is itself a device, like your Moto?G or Xperia

                <強>2.每個 ROM 都是特定于設備的(支持特定于設備的內核)

                (在許多網站/博客上,您得到的信息是您必須從 .androidavdavdname.avd 替換 system.img 文件,但這在技術上是不正確的,因為您還需要 ramdisk.img.)

                (on many sites/blogs you got information like you have to replace system.img file from .androidavdavdname.avd, but it is technically incorrect, because you also require ramdisk.img.)

                為此,您需要通過下載特定的存儲庫來創建自己的 AOSP 存儲庫,并且必須構建自己的 .img 文件)

                To do this, you need to create your own AOSP repository by downloading the particular repository and have to build your own .img files)

                • 您可以通過兩種方式做到這一點:
                1. 從位置 .androidavdavdname.avd

                構建您自己的 AOSP.之前......在午餐"中制作選擇目標為:模擬器(如:genericX86),即生成所有模擬器特定的.img文件

                Build your own AOSP. Before... make in "lunch" select target as: Emulator (like: genericX86), i.e., generate all emulator specific .img files

                我嘗試了很多東西.這有點關鍵,但很有趣.以下鏈接可能會對您有所幫助:

                在模擬器上運行你的 ROM (鏈接.嘗試 這個,來自archive.org).

                To run your cooked ROM on Emulator (link down. Try this, from archive.org).

                創建 AOSP 項目

                這篇關于在 Android 模擬器上運行自定義 ROM的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                相關文檔推薦

                Get user#39;s current location using GPS(使用 GPS 獲取用戶的當前位置)
                IllegalArgumentException thrown by requestLocationUpdate()(requestLocationUpdate() 拋出的 IllegalArgumentException)
                How reliable is LocationManager#39;s getLastKnownLocation and how often is it updated?(LocationManager 的 getLastKnownLocation 有多可靠,多久更新一次?)
                How to detect Location Provider ? GPS or Network Provider(如何檢測位置提供者?GPS 或網絡提供商)
                Get current location during app launch(在應用啟動期間獲取當前位置)
                locationManager.getLastKnownLocation() return null(locationManager.getLastKnownLocation() 返回 null)

              • <tfoot id='NBceg'></tfoot>

                    <tbody id='NBceg'></tbody>
                    • <bdo id='NBceg'></bdo><ul id='NBceg'></ul>
                      <legend id='NBceg'><style id='NBceg'><dir id='NBceg'><q id='NBceg'></q></dir></style></legend>

                      • <small id='NBceg'></small><noframes id='NBceg'>

                          <i id='NBceg'><tr id='NBceg'><dt id='NBceg'><q id='NBceg'><span id='NBceg'><b id='NBceg'><form id='NBceg'><ins id='NBceg'></ins><ul id='NBceg'></ul><sub id='NBceg'></sub></form><legend id='NBceg'></legend><bdo id='NBceg'><pre id='NBceg'><center id='NBceg'></center></pre></bdo></b><th id='NBceg'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='NBceg'><tfoot id='NBceg'></tfoot><dl id='NBceg'><fieldset id='NBceg'></fieldset></dl></div>
                          主站蜘蛛池模板: 久久精品久久精品久久精品 | 男女羞羞视频在线免费观看 | 国产高清一区二区三区 | 国产一区二区不卡 | 黄色片免费在线观看 | 日韩在线中文字幕 | 精品久久久久久亚洲精品 | 国产精品国产精品国产专区不卡 | 在线观看国产网站 | 亚洲免费一区二区 | 91精品一区二区三区久久久久 | 高清色视频 | 成人免费网站 | 四虎影院新地址 | 日本不卡一区二区三区在线观看 | 夜夜草视频 | 不卡视频在线 | 日韩一区在线播放 | 国产精品精品视频一区二区三区 | 亚洲精品自拍视频 | 日韩免费高清视频 | 超碰在线97国产 | 国产伦精品一区二区三区照片91 | www.五月婷婷.com | 精品国产欧美一区二区 | 欧美国产日韩在线观看 | 欧洲精品久久久久毛片完整版 | 91av免费看 | 欧美一区二区在线视频 | 91精品成人久久 | 国产精品视频一区二区三 | 一区在线观看视频 | 久久精品国产免费高清 | 国产精品久久久久一区二区三区 | 日韩毛片 | 本道综合精品 | 久久久久亚洲精品 | 黄色网页在线 | 国产精品一区二区久久久久 | 亚洲第一网站 | 成人av网站在线观看 |