- How do I install an app from Android market to the emulator?
- How do I install an app in the simulator by scanning a QR code?
- How do I开发者_开发知识库 install a .APK file in the simulator?
Is there any method or tutorial?
Android Market is not available on emulators for security reasons. You may install APKs. Refer to Android Debug Bridge.
To install an application from Google Play Store (formerly known as Android Market) onto an Android emulator:
Purchase, borrow or steal an Android device which has access to the Play Store.
Enable USB Debugging on the Android device and connect it to your development computer.
Go to the Google Play Store and download your application.
Pull the app from the device to your computer:
adb -d pull /data/app/com.example.myapp-1.apk MyApp.apk
Install the app to your emulator:
adb -e install MyApp.apk
You can download the APK file. Use the Android SDK tools to install it. In a commandline window do:
yoursdk\tools\adb install youapp
精彩评论