emulation

ERROR: 32-bit Linux Android emulator binaries are DEPRECATED

非 Y 不嫁゛ 提交于 2019-12-03 12:02:16
I installed the latest version of the ADT Bundle 32 bit on my ubuntu 14.04 32 bit. I created an AVD, but it doesn't launch. When I press the start button it shows this message: Starting emulator for AVD 'NexusOne' ERROR: 32-bit Linux Android emulator binaries are DEPRECATED, to use them you will have to do at least one of the following: - Use the '-force-32bit' option when invoking 'emulator'. - Set ANDROID_EMULATOR_FORCE_32BIT to 'true' in your environment. Either one will allow you to use the 32-bit binaries, but please be aware that these will disappear in a future Android SDK release.

Emulator for Amazon Kindle

…衆ロ難τιáo~ 提交于 2019-12-03 11:50:47
问题 My app would work very nicely on the new Amazon Kindle Fire, but it would be nice to test it and remove any kinks before they flood onto the market! Is there an emulator of the kindle fire available 回答1: Quoting the documentation: It is possible to configure a standard Android emulator to simulate the Kindle Fire device platform. You should configure your emulator with the following characteristics: Width: 600px Height: 1024px (note that the device will reserve 20px of the height to display a

How to change GENYMOTION screen orientation?

一个人想着一个人 提交于 2019-12-03 11:32:59
问题 Is it possible to change the orientation of the genymotion emulator? Is there a shotcut or setting to change this? I've tried to google it but have not find it. Any suggestion would be appreciated,thank you. 回答1: Two ways : Button in the sidebar CTRL + F11 Edit : And if it does not work, it's surely because the application in foreground is orientation locked. 回答2: It seems on Mac it is in the latest version CMD + F11 and not CTRL + F11 , although it is documented to be the last one. 回答3: When

Android Studio and Visual Studio Emulator for Android debugging

旧城冷巷雨未停 提交于 2019-12-03 10:55:51
Is it possible to connect the shiny Visual Studio Emulator for Android installed with Visual Studio 2015 RC to Android Studio? It is not showing in Run/Debug: [SOLVED] Found the address of the emulator: then connected to it using adb connect and voila: 来源: https://stackoverflow.com/questions/29972650/android-studio-and-visual-studio-emulator-for-android-debugging

Android Emulator: Unable to start webcam to capture picture in emulator

拟墨画扇 提交于 2019-12-03 10:32:19
问题 I have created an armeabi API 21 emulator in the AVD manager in Android Studio, set it to use the webcam as a front camera, and launched it. The problem is that it's not able to open it, as I'm getting this error: emulator: ERROR: camera_device_start_capturing: VIDIOC_STREAMON on camera '/dev/video0' has failed: Timer expired emulator: ERROR: _camera_client_query_start: Cannot start camera '/dev/video0' for NV21[640x480]: Inappropriate ioctl for device How can I solve this? The webcam works

What is the difference between two Credential use options “VPN and apps” vs “Wifi” when installing a custom certificate on an Android emulator?

眉间皱痕 提交于 2019-12-03 09:22:53
I'm trying to install a Charles Certificate on an Android emulator and I noticed that there are two Credential use options: "VPN and apps" and "Wi-Fi". I've tried looking around for explanations regarding to the two options, but the one I've found simply say "pick one that fits your use case." What is the difference between the two options? Which one should a developer pick? The WiFi option is for authentication WiFi networks, while VPN and apps is for authenticating certificates for SSL/TLS communication for apps including the browser. I can also confirm that VPN and apps is the right choice

Android Emulator Orientation Change Through Emulator Console or ADB

99封情书 提交于 2019-12-03 09:04:17
I am trying to build an automated test framework for checking basic things that an app should respond to, without crashing. One of those is checking if an app responds to configuration change properly. Now, since it is automated, I have to switch the emulator's orientation between landscape and portrait and observe if it crashes, PROGRAMMATICALLY. [caps cuz there are many questions relating to ctrl+F12 or num pad 7] I am trying to figure out an adb or emulator console command to get this done. i did a telnet to localhost:5554 and entered the following commands: $sensor status // gives the

Simulate network conditions with a C/C++ Socket

做~自己de王妃 提交于 2019-12-03 09:00:29
问题 I'm looking for a way to add network emulation to a socket. The basic solution would be some way to add bandwidth limitation to a connection. The ideal solution for me would: Support advanced network properties (latency, packet-loss) Open-source Have a similar API as standard sockets (or wraps around them) Work on both Windows and Linux Support IPv4 and IPv6 I saw a few options that work on the system level, or even as proxy (Dummynet, WANem, neten, etc.), but that won't work for me, because

haxm hangs emulator on osx

馋奶兔 提交于 2019-12-03 08:51:13
After installing Intel HAXM on my osx 10.6.8, eclipse juno, adt 21.1.0 I am not able to run any of the emulators. The emulator process fries my cpu as in: where cpu usage never goes below 100%. Yet I have a huge black screen on the emulator. HAXM extension does not throw any errors. At console, I read [2013-04-02 20:09:58 - myapp] Launching a new emulator with Virtual Device 'x86' [2013-04-02 20:10:03 - Emulator] HAX is working and emulator runs in fast virt mode [2013-04-02 20:10:07 - myapp] New emulator found: emulator-5554 [2013-04-02 20:10:07 - myapp] Waiting for HOME ('android.process

How can I use Bochs to run Assembly code?

自作多情 提交于 2019-12-03 08:16:26
I want to use Bochs as an 8086 emulator. Is there an easy way to do this? What I want is something like emu8086 ( http://www.emu8086.com/ ). asveikau If the initial part of your program fits in 512 bytes, and you don't mind restricting yourself to BIOS calls, in / out instructions, and writing to magic memory locations for I/O... Then yes! Assuming you're using NASM, here's a goofy example... (Warning: my 16-bit assembly skills are not very great and kind of rusty, so it might not be the best code.) [org 7c00h] ; BIOS will load us to this address mov ax, 0b800h ; Console memory is at 0xb8000;