如何在android模擬器上安裝android market和其他apk。我嘗試了一些解決方案,但他們似乎沒有工作,或者不清楚。如何在所有api的模擬器上安裝android market
回答
正如上面的人所說,它不可用,但你可以從文件瀏覽器中提取apk。
我用這個方法對API 4,8安裝市場:
如果您使用的是Windows,改變「/」到「\」,而僅僅鍵入 「機器人」,而不是」 ./ Android」的
1) go to android sdk path and create a new machine:
* type this in terminal:
cd "/home/<username>/.eclipse/android-sdk/tools"
* then this
./android
* then click on Tools -> Manage AVDs...
* create a new machine
2) start the machine and set the partition size
* go to this path:
cd "/home/<username>/.eclipse/android-sdk/tools"
* open the machine (keep the terminal open)
./emulator @<machine name> -partition-size 96
3) modify some files, root and install apps
* go to this path:
cd "/home/<username>/.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/<username>/Emulator files/GoogleServicesFramework.apk"
./adb install "/home/<username>/Emulator files/Gmail.apk"
./adb install "/home/<username>/Emulator files/Vending.apk"
4) root the phone
* go to this path:
cd "/home/<username>/.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/<username>/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 -> manage applications in the emulator
* click on google services framework -> force stop and delete cache
* click on market -> force stop and delete data + cache
* restart device
請不主張在計算器上侵犯版權。 – CommonsWare 2011-12-22 16:09:34
謝謝,它的作品!我需要Android市場才能測試一些免費應用程序... – user804736 2011-12-22 16:10:00
我們不強制執行其他人的版權。然而,去一些粗略的第三方網站下載二進制文件似乎是一件愚蠢的事情。 – Will 2011-12-22 16:42:43
Android Market不適用於模擬器。它僅在谷歌許可下可用於硬件分發。
- 1. 在模擬器上安裝Android 3.0 Market
- 2. 如何在模擬器上安裝Android Market應用程序?
- 3. Android:在模擬器上安裝Market應用程序?
- 4. 在模擬器上安裝Android Market應用程序
- 5. 如何在模擬器上安裝android市場
- 6. Android:在Android模擬器上安裝Wikitude
- 7. 在Android模擬器上安裝Flash Player
- 8. 在Android 3.0模擬器上安裝Gtalk
- 9. 如何將Google Market安裝到GoogleTV模擬器?
- 10. 如何在Windows 7的模擬器上安裝Facebook API?
- 11. 如何在android模擬器(android 2.3.3)上安裝busybox?
- 12. 如何在android 3.0模擬器上安裝谷歌瀏覽器?
- 13. Google Play APK無法在Android模擬器API上安裝25
- 14. 如何安裝和Android模擬器
- 15. 安裝從Android Market
- 16. 如何在Eclipse的Android模擬器上安裝apk文件?
- 17. Android Studio模擬器安裝
- 18. 沒有模擬器安裝 - Android Studio中
- 19. 如何在android模擬器上安裝應用程序?
- 20. 如何在Android模擬器上安裝SD卡(1.6)
- 21. 如何在android模擬器上安裝openCV
- 22. 如何在Android模擬器上預安裝Scala庫> = API級別14(x86/ARM)
- 23. 在模擬器2.2上安裝android市場
- 24. 應用程序沒有安裝在Android模擬器上
- 25. 無法在Android模擬器安裝APK
- 26. 安裝apk文件,在Android模擬器
- 27. 如何在Android Market和Apples AppStore上安裝HTML5應用程序?
- 28. 如何在Android Studio中安裝android 6.0.1模擬器?
- 29. 在Eclipse模擬器上安裝Google Play
- 30. android.hardware.telephony在模擬器上中斷安裝
這不是一個編程問題 – 2011-12-22 16:25:51