An Android Emulator is a software which simulates the functionality of the Android Device(mobile/pad). Emulator allows the app to setup, develop and run before moving it for the production.

learn more… | top users | synonyms

296
votes
26answers
114k views

slow android emulator

I have a 2.67GHz Celeron Processor, 1.21GBs of RAM on a x86 Windows XP Pro machine. My understanding is that the emulator should start fairly quickly on such a machine, but for me it does not. I have ...
169
votes
10answers
96k views

The Android emulator is not starting, showing “invalid command-line parameter”

I made a simple "Hello World" program in Eclipse. I added nothing to a Java file and only added a text view in file main.xml as //main.xml file <?xml version="1.0" encoding="utf-8"?> ...
65
votes
2answers
16k views

Why is my Android emulator keyboard in Chinese character mode?

I'm debugging my Android application using the AVD (Android Virtual Device). When I try to enter text in a text field, my characters are being interpreted as Chinese in the IME. I don't know how I ...
56
votes
8answers
13k views

how to rotate android emulator?

How can i rotate android emulator to see it in landscape mode?
48
votes
21answers
83k views

how to connect android emulator to the internet

How can I connect my android emulator to the internet, e.g. to use the browser? I've found lots of advice on what do to when your connected through a proxy, but that's not the case here, my machine ...
47
votes
11answers
34k views

Starting the Android emulator in SDK tools, revision 12

I updated the Android SDK tools from revision 11 to revision 12, and the emulator now fails to start. When I try to run emulator.exe, I get: invalid command-line parameter: ...
43
votes
12answers
8k views

How can I detect when an Android application is running in the emulator?

I would like to have my code run slightly differently when running on the emulator than when running on a device. (For example, using 10.0.2.2 instead of a public URL to run against a development ...
37
votes
15answers
26k views

How to increase storage for Android Emulator? (INSTALL_FAILED_INSUFFICIENT_STORAGE)

I get this sometimes(not often) for one of my projects, couple of classes only Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE How do I increase emulator's storage?
36
votes
14answers
24k views

Emulator problem in Android

When I launch the emulator I face many problems (Errors):- HttpConnectionApp]emulator-5554 disconnected! Cancelling 'net.paxcel.http.HttpConnectionApp activity launch'! Emulator]emulator: ERROR: the ...
35
votes
12answers
4k views

Android Emulator Tips and Tricks [closed]

What is your Emulator feature that you could not work without? Which unknown great shortcut, console command or startup option is there that you discovered and you think has to be also known by all ...
34
votes
3answers
11k views

Android Multitouch - Possible to test in emulator?

I recently discovered that the Android 2.0 SDK supports multitouch through new functions in the MotionEvent class. You can specify a pointer index when retrieving touch properties, and in cases where ...
31
votes
3answers
723 views

Programming for Android as a blind person

I have a friend who is quite a capable programmer, especially considering that he is blind. Now he would like to start developing for Android. But, the problem I see him running into is that there ...
31
votes
9answers
14k views

Making the Android emulator run faster

The Android emulator is a bit sluggish. For some devices, like the Motorola Droid and the Nexus One, the app runs faster in the actual device than the emulator. This is a problem when testing games ...
31
votes
4answers
21k views

Switching to landscape mode in Android Emulator

This is probably a pretty easy to answer question, but I can't find the solution myself after a couple hours of searching the documentation and Google. I set the orientation of my Android app to ...
27
votes
8answers
2k views

Is there an Android simulator (not the default emulator), similar to the iPhone one?

I guess it is technically possible to simulate an environment on which one could run and test Android code. It is Java-based after all. Often, I don't have my device with me, plus, it is not very ...
22
votes
5answers
25k views

Emulate Samsung Galaxy Tab

I would like to test my application with new Samsung Galaxy Tab tablet. What parameter should I set in emulator to emulate this device? What resolution and density should I set? How can I indicate ...
22
votes
5answers
778 views

Why would you use the ternary operator without assigning a value for the “true” condition (x = x ?: 1)

In the Android open-source qemu code I ran across this line of code: machine->max_cpus = machine->max_cpus ?: 1; /* Default to UP */ It this just a confusing way of saying: if ...
22
votes
8answers
5k views

Remote debugging with Android emulator

Is it possible to write the code/compile Android application on one machine and debug it remotely on the emulator launched on another? I'm sick and tired of the emulator constantly eating half of my ...
20
votes
7answers
6k views

Why not standard Android emulators?

I'm new to Android, but have published iphone and bberry apps. I see that I have to create an emulator using the SDK, before I can write and test an app. Why are there no default emulators? Why not ...
19
votes
4answers
22k views

How to build .apk file?

When I develop the project using eclipse the .apk file goes on emulator. But I want upload my application on a real device. Is there any tool to build .apk file. What is process. Or it possible to ...
19
votes
5answers
12k views

Android: UnknownHostException

I am using Android SDK 2.2, testing my application with the emulator. I want to send a HTTP Post. When I do I get a UnknownHostException. I have placed the required permissions <uses-permission ...
19
votes
9answers
22k views

Waiting for HOME ('android.process.acore') to be launched

I tried working the Hello World application and the emulator freezes after it flashes the Android start screen. The home page is not shown. The last display on the console is Waiting for HOME ...
19
votes
6answers
33k views

Android kernel compile and test with Android Emulator

Has anyone successfully compiled the android kernel and tested it in the Android emulator, and if so is there anything that special that needs to be done? Documentation for the SDK is excellent, ...
18
votes
8answers
10k views

where can I buy nfc tags

android is going to release an NFC api. Do you know where I can buy NFC tags that I can use to test it?
17
votes
4answers
7k views

Why does the Android emulator report “unknown virtual device”, when the device is in my user directory?

I installed all the prerequisites for Android development. I created a virtual device through Eclipse and tried to run the Hello World sample application in that device. I received the following error ...
17
votes
5answers
13k views

Speed up Android emulator

I read on many other topics that the Android emulator starts really slow. Indeed, it takes +15 mins to start. However, on my machine is slow even after that. The 'phone' responds with a 3-4 seconds ...
15
votes
9answers
12k views

The connection to adb is down, and a severe error has occured

I've spent days trying to launch any Android program. Even "Hello World" gives me the same error: "The connection to adb is down, and a severe error has occured". I'm running Eclipse Galileo, Google ...
15
votes
12answers
22k views

No internet on Android emulator - why and how to fix?

I am trying to use internet with the Android emulator, but with no success. Any ideas?
14
votes
7answers
5k views

debug javascript in android emulator with phonegap

I am new to phonegap and android development. May I know how can I debug javascript error on the emulator? I have heard about ADB may I know how can I use and install it on windows 7 system? I have an ...
14
votes
1answer
7k views

Bluetooth support on Android Emulator

I wanna know if the developer team wich made the emulator have some information to make bluetooth works in the android emulator, indicate some links about it, if they have some date for release or if ...
14
votes
5answers
1k views

How “good” is the Android Emulator?

As the title says, how "good" is the Android emulator? I don't have an Android phone but would it be possible to develop purely using the emulator as the testing environment? My initial questions ...
14
votes
4answers
17k views

How to speed up Android Emulation?

I'm trying to get started with Android development. I'm using eclipse on Linux and using a Pentium IV @3.2Gh with 1GB of ram. I've just followed the "hello android" howto, with just one sad result: ...
13
votes
4answers
1k views

How to configure the Android Emulator to show onscreen buttons like the new Galaxy Nexus?

I would like to convert/adapt my application to Android 4.0. To do so I plan to use the ActionBar on devices that support it. All Android version >= 3.0 do so. Furthermore devices that do not have a ...
13
votes
1answer
615 views

VPN connection from Android emulator fails

I am new to Android development. I am trying to join an existing VPN from my Android app. I want to integrate the VPN in my app; my app then is supposed to query a remote database. I got some code ...
13
votes
5answers
1k views

How to simulate total network loss in Android Emulator

I'm trying to write an application that needs to know when there is no IP network connection available. I am using the android.net.conn.CONNECTIVITY_CHANGE broadcast event along with ...
13
votes
2answers
9k views

Android - Application (apk) Maximum size

I am going to install first application in my android phone, but having some doubts related to Android Memory (Maximum size of APK). So please help me know and solve the problems: What is maximum ...
13
votes
5answers
11k views

How do you install an APK file in the Android emulator?

I finally managed to obfuscate my Android application, now I want to test it by installing the APK file and running it on the emulator. How can I install an APK file ...
13
votes
1answer
4k views

Android Emulator - Trouble creating user accounts

I need a user account or two in my Android Emulator so that I can test some texting/mailing function of my app. The trouble is that when I try to do this in the emulator: Settings --> Accounts & ...
12
votes
6answers
4k views

How can I install adobe flash on the android emulator

I want to use Adobe Flash in the development of Android applications. But how do I install flash on the emulator so that I can test my software with flash?
12
votes
5answers
8k views

How to take emulator screen shots using Eclipse?

I need to take screen shots of an android application running on an emulator in Eclipse Galileo. Is there a built in feature for this or do I have to download a plugin of some sorts?
11
votes
2answers
189 views

Application Not installed in your phone

I run the application in the emulator it works successfully and the icon of the application is show in the emulator menu but when i try to run again that app from the emulator menu it can't allow me ...
11
votes
6answers
316 views

How to start a Service when .apk is Installed for the first time

In my Application I am not having any UI part, so I need to start a Service as soon as the Applicaton gets installed on the Device. I saw many links from which the answer was that its not possible but ...
11
votes
1answer
378 views

Android 2.3 emulator blank screen after build

I'm trying to build Android 2.3 (Gingerbread) from scratch on my Ubuntu 10.10 machine. I've followed all the steps here: http://source.android.com/source/building.html Got no build errors. But for ...
11
votes
5answers
3k views

Installing a x86 image in new sdk tools v12

I've upgraded to android sdk tools 12. As a release note google says: The AVD manager and emulator can now use system images compiled for ARM v7 and x86 CPUs. Has anyone tried to run a x86 image? ...
11
votes
3answers
454 views

Is there an Android PCI card?

Does anyone know of a PCI card suitable for Android development? I find the emulator unusably slow (Linux 64-bit, quad-core, 8GB RAM), and a card I could hide in my desktop would be nice. I know ...
11
votes
4answers
6k views

how do you save android emulator snapshot?

An update to the Android development tools was just released enabling you to save-to and restore-from an emulator snapshot. Does anyone know how to use this feature? This would greatly reduce the ...
11
votes
2answers
2k views

Difference between iPhone Simulator and Android Emulator

What is the difference between iPhone Simulator and Android emulator? I have heard people saying that Emulator really emulates the target device which is not true in case of simulator. I think ...
11
votes
11answers
26k views

'Application not Installed' Error on Android

I have a program working in the Android Emulator. Every now and again I have been creating a signed .apk and exporting it to my HTC Desire to test. It has all been fine. On my latest exported .apk I ...
11
votes
3answers
2k views

Is there any way to test muti-touch on Android Emulator?

Can multitouch events be tested on Android Emulator ? Or is there any way to test this without actual device ? I am using 2.0 sdk and want to test zoom-in zoom-out on by two fingers. Is there a way ...
11
votes
2answers
2k views

Activating Network Location Provider in the Android Emulator?

Is it possible to activate the network location provider on the android emulator? Maybe with a fake cellid?

1 2 3 4 5 53