Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>As the person above says, it is not available, but you could extract the apk from the file explorer.</p> <p>I used this method to install market on api 4 and 8:</p> <blockquote> <p>If you are using windows, change the "/" to "\" and just type "android" instead of "./android"</p> </blockquote> <pre><code>1) go to android sdk path and create a new machine: * type this in terminal: cd "/home/&lt;username&gt;/.eclipse/android-sdk/tools" * then this ./android * then click on Tools -&gt; Manage AVDs... * create a new machine 2) start the machine and set the partition size * go to this path: cd "/home/&lt;username&gt;/.eclipse/android-sdk/tools" * open the machine (keep the terminal open) ./emulator @&lt;machine name&gt; -partition-size 96 3) modify some files, root and install apps * go to this path: cd "/home/&lt;username&gt;/.eclipse/android-sdk/platform-tools" * pull the 'build.prop' file in the platform-tools folder ./adb pull /system/build.prop * remove this line: 'ro.config.nocheckin=yes' and save * mount the partition to that we can write to it ./adb remount * replace the edited file ./adb push build.prop /system/build.prop * install the apps ./adb install "/home/&lt;username&gt;/Emulator files/GoogleServicesFramework.apk" ./adb install "/home/&lt;username&gt;/Emulator files/Gmail.apk" ./adb install "/home/&lt;username&gt;/Emulator files/Vending.apk" 4) root the phone * go to this path: cd "/home/&lt;username&gt;/.eclipse/android-sdk/platform-tools" * mout system files ./adb shell mount -o rw,remount -t yaffs2 /dev/block/mtdblock03 /system * put script for su in system ./adb push "/home/&lt;username&gt;/Emulator files/su" /system/xbin/su * make system folder writeble ./adb shell chmod 06755 /system ./adb shell chmod 06755 /system/xbin/su * install super user app to manage permissions ./adb install superuser.apk 5) if apps are not showing in the market: * go to applications -&gt; manage applications in the emulator * click on google services framework -&gt; force stop and delete cache * click on market -&gt; force stop and delete data + cache * restart device </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload