emulator

Deploying smartphone app to Windows XP/7

I have a smarthone application for controlling a device via Bluetooth. I'm now looking for a way to use the app on Windows XP/7 too. Any ideas if this is possible without too much modifications to the code? Especially i'd like to know the following: 1.) Is there a readily available smartphone emulator that can be deployed on Windows XP/...

Arm (thumb-2) assembly emulator?

Is there such a thing as an emulator for thumb-2 assembly? I would like to write simple ARM Thumb-2 assembly programs and test them out without needed to use an actual ARM device, so my only option is emulation. My goal is to implement a sizable number of algorithms in thumb-2 assembly as a learning exercise. I don't even need emulati...

Android emulator cannot resolve internet address

When I run this code from Java project it works fine. InetAddress ia=null; try { ia = InetAddress.getByName("www.google.com"); } catch (UnknownHostException e) { e.printStackTrace(); } System.out.println(ia.getHostAddress()); When i try the same code from emulator (already tried few versions) I'm gettin...

Detect when Android emulator is fully booted

I want to create a script where I start an emulator and after the system is fully booted, I want to install an .apk. How can I know when the emulator is fully booted so I can run the install command? Here http://developer.android.com/guide/developing/tools/adb.html it is said that adb wait-for-device install <app>.apk is not correct. S...

Windows Phone 7 emulator : Can I simulate a phone call

I am looking into developing for Windows Phone 7. For testing my app, I need to be able to simulate a phone call. Is it possible in the emulator ? ...

Android: Redirect outgoing calls

I'm trying to redirect outgoing calls to a different phone number on an Android device. So, I use a BroadcastReceiver "listening" for the NEW_OUTGOING_CALL intent, on his onReceive() method I use the setResultData() method to change the phone number. Like this: public void onReceive(Context arg0, Intent arg1) { setResultData("3519...

A Reference on the layout and structure of GameBoy Color Roms?

Does anyone have a reference or source about how GameBoy Color roms are laid out - where the data and code, what machine code instructions are used, how the clock works etc? I'm interested in perhaps building an emulator myself but I can't find any information about the roms' setup other than looking at them in a hex editor. I'm interest...

XML in eclipse not updating?

I'm using eclipse helios to design a simple android application, however I'm having issues with tidying up the user interface by editing the XML after writing the rest of the application. However none of the edits to the XML file (I've checked it's the right one) are showing when I send the application to the onscreen emulator. For ex...

android emulator/eclipse deletes application files on redeployment

My Application downloads a file from a server and stores it in: /mnt/sdcard/Android/data/com.test/files. (the /mnt/sdcard is derived from Environment.getExternalStorageDirectory(); ) Everytime I redeploy the Application from eclipse(run menu) to the emulator it deletes the file. The Checkbox 'target/wipe user data' in the run configurat...

.Net Micro Framework Emulator : change value returned by SystemInfo.SystemID.Model

I'm trying to make an emulator for FEZ and their implementation throws an exception if the value returned by SystemInfo.SystemID.Model is not what's expected (1 in my case) Is there a way to modify the value returned by SystemInfo.SystemID.Model for the applications running inside my emulator ? ...

VS2010 .net micro framework emulator "not enough disk space" no device tools

With .net microframework 4.1 and visual studio 2010 I can´t compile my code, i get a german error message from the emulator "nicht genug speicherplatz" which means not enough disk space. So i have to config the emulators memory i guess, but in the tools->options should be device-tools but i dont have the device-tools option. ...

How can I add a contact in android?

hi all, i am writing code to add contact in android. here is my code: ArrayList ops = new ArrayList(); int rawContactInsertIndex = ops.size(); ops.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI) .withValue(ContactsCo...

Interrupts in C/C++??? How are they implemented / coded?

Hello, Having programmed microcontrollers before and being interested in trying my hand at building an NES emulator at some point, I was really wondering how interrupts are implemented in C++? How, for example, does a program know how to react when I speak into my mic or move my mouse? Is it constantly polling these ports? When emulat...

Is there any way to control nokia e90 or other phones from computer?

I am trying to develop programs which will work for nokia mobile phones. I have E90 and want to control it over my computer. Or i want to test programs with emulator. Do you know is there any way to do this? ...

android excessive global references

Hello guys. I'm occassionally tripping the jni global reference limit for the android emulator. I'm trying to store around 2000 words along with definitions in my application and it's failing at either of two spots: if I use DOM to parse the xml file with all those references it fails when DOM pulls the tree into memory. If I use SAX...

CUDA without CUDA enabled gpu

I want to setup a CUDA emulator on my ubunbu 10.04, since I don't have the hardware. Can someone provides some valuable instructions. I think Nvidia does provide an emulator, how can i set it up. so far I don't care about performance, if it's slow. Thanks. ...

What hardware is needed to run the Android emulator fast?

My home PC is an Intel E6300 with 4GB RAM. My company PC is an Intel i5 quadcore with 4GB RAM. I ran the latest Android emulator (came with SDK) on both PC's (both running Windows 7 x64), and it was unbearably slow on both PC's. On my home PC, I ran Windows Phone 7 emulator and it worked smoothly. I booted up with my Hackintosh on the s...

Is execution of ARM assembly in iPhone Simulator or Android Simulator possible?

Can anybody tell me if it is possible to execute programs using arm assembly language in the simulators? ...

Zoom controls on emulator running Android 1.6 with QVGA

I'm testing my app on different AVD setups in the emulator and ran into problems with zoom controls in MapView on Android 1.6 using QVGA resolution only (lcd.density=120). When tapping on the screen so the zoom controls are displayed, the zoom in/plus sign is displayed much larger than zoom out, which seem to have the correct resolutio...

Android-Hello World

Hi there, I'm currently learning how to create android applications so I started with the basic "Hello World" tutorial over at the Android Developers home page. The code is quite simple but when I run it(I'm using Eclipse and a AVD v2.2), it only shows "Android." It does not go to the Home Screen. I updated everything and I still get th...