android-emulator

Why is the intel x86 emulator accelerator (HAXM installer) is showing not compatible with windows?

泄露秘密 提交于 2019-12-03 11:40:39
Why is the intel x86 emulator accelerator (HAXM installer) is showing not compatible with windows. I have windows 10 ,64 bit. Check your system have Intel® VT-x Technology. If yes then goto bios settings and turn it on. Check This Link : https://software.intel.com/en-us/android/articles/installation-instructions-for-intel-hardware-accelerated-execution-manager-windows . I did face the same issue (standalone sdk manager showing that its not windows compatible). Step 1: Open Settings -> Android SDK -> SDK Tools Tab Select the HAXM entry (see the last entry) It installed it successfully!! NOTE:

My device is not showing up in “Android Device Chooser” suddenly

倖福魔咒の 提交于 2019-12-03 11:19:04
问题 i am using my samsung galaxy3 device for testing my apps from last two months. It is working fine. But suddenly from this morning when i connected my device to my system it is not showing up in the "Android Device chooser" window. I have checked, USB debug mode is in checked state only in my device. Can anybody guess the problem. It is little urgent. Thanks, Nehatha 回答1: Use a shell of some sort (Run -> cmd) and browse to the /platform-tools/ directory inside the place you installed the

adb: error: remote object '/data/data/com.me.myproject' does not exist

流过昼夜 提交于 2019-12-03 11:11:45
1. Added adb path to ~/.bash_profile export PATH="/Users/myname/Library/Android/sdk/platform-tools:$PATH" 2. Logged in to emulator adb -s emulator-5554 shell 3. changed permission of the app folder and parent folder chmod 777 /data/data/com.me.myproject chmod 777 /data/data 4. Still can not get stuff from outside. Why? adb -s emulator-5554 pull /data/data/com.me.myproject oscarthecat I had the same problem and I did this: adb shell run-as com.yourPackageName (not rooted device) cp 'database/file_you_want.db' '/sdcard/file_you_want.db' exit exit (now you will be back to main terminal window)

Genymotion Android emulator for Xamarin

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-03 11:04:34
I've problem about using Genymotion Android emulator for xamarin development. I have intalled Genymotion desktop app and several Android devices within it. Whenever i run any of the installed device in Genymotion desktop app via start button, it works fine but there is no Genymotion emulator in the list of available emulators in Visual Studio, neither in Xamarin studio (There are only built-in Android Emulators and devices installed in Xamarin Android player). I found some articles about using Genymotion Emulator for Xamarin and all of them says that : Both Xamarin Studio and Visual Studio

No Sound coming from Android Emulator

拥有回忆 提交于 2019-12-03 10:51:17
I ran my application and I can't get the sound working on the Android Emulator. I checked and enabled the audio playback boolean in the Eclipse AVD Manager. I also went into the sound options in the Android Emulator and put them up (no sound while putting them up). I checked the box that says all selections will make a noise(still no sound). My application uses the MediaPlayer class and I am running win7 x64 if that has anything to do with it. Help is appreciated. Regis St-Gelais I have a similar issue and I posted a similar question some time ago. See my question for more information.

Cannot run adb shell “date `date +%m%d%H%M%Y.%S`”

孤街浪徒 提交于 2019-12-03 10:51:11
I have a warning when running React Native on an Android device: Debugger and device times had drifted by more than 60s. Please correct this by running adb shell "date `date +%m%d%H%M%Y.%S`" on your debugger machine But when I run the command as suggested above, I get and operation not permitted error: date: cannot set date: Operation not permitted I already tried with sudo, still got same result: sudo adb shell "date `date +%m%d%H%M%Y.%S`" atinder Inside the emulator goto Settings > Date & Time Deselect Automatic timezone. Adjust your timezone manually. Deselect automatic date & time and set

AVD Emulator stuck on loading screen in Android Studio

孤街浪徒 提交于 2019-12-03 10:33:43
I decided to try Android Studio 2.0 having used Eclipse in the past but I'm having considerable difficulty getting the AVD to load correctly. I've done quite a bit of googling and research into the problem, both here on SO and Google.So far nothing has worked. The emulator simply hangs on the android load-up screen ever time I try to run it. I've seen it advised to use Genymotion but I would first prefer to resolve the issue natively in Android Studio to feel confident going forward using the IDE for building projects. Here's what I've tried: Complete reinstall of Android, SDK and SDK Tools

Android 5.0 emulator showing Storage space running out

笑着哭i 提交于 2019-12-03 10:32:00
I just updated Android SDK to version 21 and trying to start emulator. I am using Nexus 4 with CPU Intel atom (x86) 768 RAM and 524 internal storage. Emulator starts fine but it shows en error message, "Storage space running out" and it is very slow. I tried increasing the RAM also but didn't work. What could be the issue? Open AVD Manager --> Wipe Data You have to go in your android folder e.g. on OSX ~/.android/avd/{YOUR_AVD_NAME} and edit file config.ini. Just add or modify row disk.dataPartition.size = YOUR_SIZE e.g. disk.dataPartition.size = 1G Then you may have to wipe your emulator's

Communication between Android Emulators

核能气质少年 提交于 2019-12-03 10:20:01
问题 I wanted to know if it is possible the comunication between two Android Emulators started on two different machines networked. For example - Emulator A run on machine M1 - Emulator B run on machine M2 Can A and B exchange messages? If yes, what ip address do I use? Thank you very much Deborah 回答1: You might know this already. As of android-sdk-tools_r7 it should at least be possible to connect two emulators to each other. Whether is works between physical machines is not something I know. It

How can I install adobe flash on the android emulator

房东的猫 提交于 2019-12-03 10:19:07
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? To install the AIR runtime on the emulator: adb -e install -r Runtime_Emulator_Froyo_20100930.apk from this site: http://flashsimulations.com/2010/10/19/developing-android-applications-with-adobe-air/ download the adodeflash player file(.apk) and install using the command adb install filename /sdcard/ I tried this using comadobeflashplayer-1.apk, but it crashes the emulator browser. I was able to uninstall thanks to this helpful link: http: