Android Studio not found Vernee Apollo Lite device - android-studio

My android studio not detects Vernee Apollo Lite, I activate android developer options with usb debugging and my android versio is 6.0. My operative system is windows 7 and when connects the usb, windows install a driver...
Then I try to compile with android studio and doesn't detects this device, any ideas? Thanks in advance!

Finally I found the solution... I install this Vernee thor driver and using PTP instead of MTP connection (Thanks halileohalilei), now I cand develop!

Related

Android Studio Emulator is Running but not Showing/Working in my Mac

From avd manager, the run button says the emulator is running. but it's not visible and the app also not running/installing.
My device is MacBook with bigsur, I'm using the latest stable version of android studio, I'm also using adb wifi plugin but disabled this plugin too. but nothing happened.
I also deleted my avd and installed a new device but had the same issue.
Anyone facing this issue or have any solution then please share your comment...

Android device recognized by adb but not recognized by Chrome development tools

I have an Android device recognized by adb devices but not recognized by chrome development tools (with or without discover USB devices checked).
My machine development is a Mac and I have
installed Android Studio 3.1
Installed SDK platforms Android 8.0 and 8.1
Installed SDK Tools: Android SDK Build-Tools 28 rc-2, Android emulator, Android SDK platform-tools, Android SDK tools, Intel x86 emulator, Android support Repository and Google repository
If disconnect and reconnect the cable, or if I switch on/off the USB debugging on my device makes no difference.
ADB kill-server / start-server don't produce any reaction in Chrome.
Apparently adb is working properly
I've already changed android development environment, from android studio to brew cask version (android-sdk, android-ndk, android-platform-tools) and vice-versa with no success (similar results).
I have reinstalled Chrome
Currently I have android studio and in my ~/bash_profile I have set:
export ANDROID_HOME=/Users/${USER}/Library/Android/sdk
#export ANDROID_SDK_HOME=/Users/${USER}/Library/Android/sdk
#export ANDROID_SDK_ROOT=/Users/${USER}/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/platform-tools:$ANDROID_HOME/emulator:$ANDROID_$
export ANDROID_ADB_SERVER_PORT=5038
This problem started a coupled of days ago. Previously worked fine for months. Not sure what led to the problem, but I made some trials with ionic dev app (not sure on any cause-effect) and some time after my development environment started with problems.
My problem is I cannot have remote debug with Chrome. I can deploy my ionic application into my connected mobile and run it, but not debug the development
Debugging with emulator is not efficient in my case since I use physical components such as scanning and photos
Any help help is more than welcome. I've spent hours with this ...

Android Studio emulator: ERROR: detected a hanging thread 'QEMU2 CPU1 thread'. on Windows

I am getting this error with Android Studio 3.0.1 on Windows 7.
I am well aware there is a similar question. However my Android Emulator is up to date at version 27.1.12 so the solution is irrelevant.
I had similar issue after installing 27.1.12.
The Android Emulator version is now 27.2.9 and your issue should be now fixed with this. Do update intel HAXM accelerator as well.

Android Studio / AVD with bumblebee / nvidia optimus

When using a computer with linux and a nvidia optimus graphics card for Android Development, is it possible to tell Intellij / Android Studio to launch the Android Virtual Devices with bumblebee?
Yes, it is possible. I do that by using optirun but running avd and android studio separately.
For example, if you have an Android Wear image just run:
optirun ~/Android/Sdk/tools/emulator -netdelay none -netspeed full -avd Android_Wear_Square_API_<api version>
Works with regular android images as well. Its exactly the same command you use to get avd up and running via command line but you just need to prepend optirun to run it with your nvidia card.
After you do that, Android Studio will detect the emulator when you try to build and run your app, even if you don't run Android Studio using optirun.
Sources:
AVD cli docs
Optirun Docs: ArchWiki, UbuntuWiki.
Hope it helps!

Emulator on Android Studio and Windows Phone

i think i have a huge problem...actually I'n developing on Android and Windows Phone, first with Android Studio i dont have nay problems... but with de WP emulator (VS Express 2012 SDK) I have problems with de Hyper-V... I update my OS to Windows 8.1 to solve it...but now Android I have problems with Studio emulator!! is this :
emulator: ERROR: x86 emulation currently requires hardware acceleration!
Please ensure Intel HAXM is properly installed and usable.
CPU acceleration status: HAX kernel module is not installed!
ok.. it's fine...but one solution is to reinstall the Intel x86 Emulator Accelerator (HAXM installer) but when i made this i have to disable de Hyper-V!!! so not WP emulator! What can i do to work the both emulators????
Your problem is that the Windows Phone emulator requires Hyper-V to be enabled, which is incompatible with AVD using Intel HAXM. There are two options:
Use the Visual Studio Emulator for Android, which can
connect to your Android Studio project via ADB (build your APK and
adb.exe push) and is a Hyper-V-based, x86 emulator, so it can run
side-by-side with the Windows Phone emulator.
Enable/disable Hyper-V whenever you switch between platforms (this requires a reboot every time you go from WP -> Android or vice versa)
can you just switch per boot - the two commands would be
bcdedit /set hypervisorlaunchtype off
bcdedit /set hypervisorlaunchtype auto or you could use net start hvboot

Resources