android-emulator

Is it Possible to give effect like Vertex Shader and Fragment Shader to the Android Camera Preview , and Save the Captured image with OpenGLES?

谁说我不能喝 提交于 2019-12-09 01:13:46
问题 This two are My VertexShader and Fragment Shader file: Vertex Shader File: attribute vec4 position; attribute vec4 inputTextureCoordinate; varying vec2 textureCoordinate; varying vec4 co; void main() { gl_Position = position; textureCoordinate = inputTextureCoordinate.xy; co = inputTextureCoordinate; } Fragment Shader File: uniform sampler2D videoFrame; // the texture with the scene you want to blur varying mediump vec2 textureCoordinate; varying mediump vec4 co; precision mediump float; vec4

when i start eclipse and run android project, it opens a new emulator every time ,

a 夏天 提交于 2019-12-08 23:32:16
问题 Eclipse Android Emulator takes average 7 minutes to launch an activity ,its quite a long time Once emulator is Set ,Other projects can be run in same emulator which takes less times. Sometimes when i start eclipse and run android project, it opens a new emulator every time instead of installing the project in same emulator. I have searched about this problem,I found the Single good Reason, Connection refused for the sensor ports is a common problem I am not sure , This is the real reason I am

Is there a way to set ro.kernel.qemu to 0 in a emulator?

十年热恋 提交于 2019-12-08 21:41:00
问题 I replaced a modified build.prop which contains ro.kernel.qemu=0 to the system.img with yaffey, but it did not work. When the emulator restarted, ro.kernel.qemu=1 still exists in the output of adb shell getprop . EDIT: I also tried: add ro.kernel.qemu=0 in default.prop in ramdisk.img add setprop ro.kernel.qemu 0 in init.goldfish.rc in ramdisk.img But all these did not work. When I start the emulator with modified ramdisk.img, ro.kernel.qemu is still 1 in the output of adb shell getprop . I am

Can't find Genymotion.app

走远了吗. 提交于 2019-12-08 20:59:24
问题 I am unable to test my application on Android studio via genymotion. Genymotion warning: You must specify the path to the Genymotion folder to use this feature. when trying to location Genymotion.app I get this error: "Cannot find Genymotion in the specified path" this is the path I entered for genymotion.app: C:\Users\Rua\AppData\Local\Genymobile\Genymotion 回答1: On Mac,this is my solution: /Applications/Genymotion.app/Contents/MacOS/player.app 回答2: Using Windows First off, you need to

Geo Fix command does not pass altitude

你。 提交于 2019-12-08 19:16:35
问题 On Android 2.2 Emulator, the "geo fix" command seems not to be working properly. The emulator responds "OK", and onLocationChanged() is properly called in my program. However, the Location object seems not to be complete - it registers latitude and longitude just fine, but it does not contain an altitude reading: hasAltitude() returns false . Any ideas why? Example emulator commands: geo fix -74 40.75 500 geo fix -77 39 400.0 Code snippet: public void onLocationChanged(Location loc) { System

Process finished with exit code 1 : Unknown AVD name

霸气de小男生 提交于 2019-12-08 17:05:25
问题 I have the following error that pops up when I try to run the emulator: Emulator: emulator: ERROR: Unknown AVD name [Nexus_5X_API_27], use -list-avds to see valid list. Emulator: Process finished with exit code 1 Given that I just created the avd, can you help me understand why it cannot find it and how to solve this problem? Thanks in advance 回答1: I experienced the same issue, regardless of the AVD. I'm too new to understand why, but it seems that Android Studio created /.android/avd

Using Android-emulator to test AT commands by COM from external application

倖福魔咒の 提交于 2019-12-08 17:00:49
问题 I need send AT commands to a usb GSM modem whith C#. The problem is that i havent no GSM modem or GSM enabled device yet to develop then i was looking for a emulator. The only simulated GSM modem i found was that come with the Android SDK. My problem now is sent AT commands to Android simulated GSM modem througt COM port like i need to do in my real application. There is some way to reach COM (virtual Usb-Com) port of Android simulated GSM modem and sent AT commands to connect to internet ?

com.android.ddmlib.InstallException: EOF

北慕城南 提交于 2019-12-08 16:51:16
问题 I am using Android Development Toolkit Version: 16.0.1.v201112150204-238534 and library Android 4.0.3 After compilations the emulator starts and after few minutes it fails to launch. When i try to launch got the below message from console [2012-02-10 15:48:41 - MyHelloAndroid] New emulator found: emulator-5554 [2012-02-10 15:48:41 - MyHelloAndroid] Waiting for HOME ('android.process.acore') to be launched... [2012-02-10 15:50:15 - MyHelloAndroid] HOME is up on device 'emulator-5554' [2012-02

Android Emulator hang up and impossible to quit

*爱你&永不变心* 提交于 2019-12-08 16:45:44
问题 I've installed the Android plugin on Eclipse 3.6 in a regular way (aka i followed step by step the google installation page). When I launch any sample application, everything works fine, but if I try to quit the emulator (by clicking the exit cross button of the emulator), the emulator seems to hang completly. What is very bothering is that I can't even kill the process, launch another emulator or even reboot my pc, since the process seems to be impossible to stop or kill. Does anyone have

Observe very long String content in Eclipse

不羁的心 提交于 2019-12-08 16:07:25
问题 Since LogCat truncates long strings, I work around this using FileOutputStream to inspect the contents of very long strings. It works but it forces me to 'adb pull' that file, which is not very convenient, compare to watching it on LogCat. Is there any other way in Eclipse to watch very long strings? 回答1: For the record, the answer was found here. 回答2: when you stop in debug on the variable do the following and past it to a text file 回答3: I think it will be easier to use the eclipse debugging