Viktor Apoyan
Viktor Apoyan

Reputation: 10755

Installation of big .apk take longe time on Android Emulator

I am writing application for Android. Application size is more then 200 MB. And it take very long time to install on the Android Emulator. I want to know

  1. How can I speed up installation of huge file on Android Emulator.
  2. How I can speed up Android Emulator ( for example to give more RAM for it or to give more Internal Memory for it ).

My operating system is Windows 7 64bit.

Upvotes: 4

Views: 2408

Answers (2)

LuxuryMode
LuxuryMode

Reputation: 33741

How can I speed up installation of huge file on Android Emulator.

I don't think there's anything you can do to speed up the installation. 200mb is a ridiculously huge APK.

 How I can speed up Android Emulator ( for example to give more RAM for 
it or to give more Internal Memory for it ).

When you create the AVD (or choose to edit it later), you can specify the amount of memory it has.

See reference here: Managing Virtual Devices

Upvotes: 1

Nanne
Nanne

Reputation: 64409

Why would you have a 200mb APK? I can imagine you'd have some sort of data (it's surely not 200mb of pure code, right?) ?

You could/should remove this and put it on the (virtual) SD card of your emulator. APK size will be lot smaller, no need to keep loading that datafile.

In the end you'd want to do this for release anyway: 200mb is way too big. Release a small(er) APK and make the data available as download.

And if it is all code.. well, then you're out of luck.

Upvotes: 4

Related Questions