Set android emulator device name - android-emulator

When I connect my phone to the computer and use adb devices in console I can see:
List of devices attached
XYZQWERTYXYZ device
When I connect same phone to another pc, the device name stays the same.
Recently I starded using MEMU emulator. When I run android instance via emulator adb devices returns something like this:
List of devices attached
127.0.0.1:21513 device
The problem is when I want to use same memu android instance on another pc. I can export and import that instance, but the device name can be different on another pc, like:
List of devices attached
127.0.0.1:21503 device
I found configuration file in D:\Program Files\Microvirt\MEmu\MemuHyperv VMs\MEmu_1 location which contains configs for each emulator android instance. In .memu files I can find lines such:
<Forwarding name="ADB" proto="1" hostip="127.0.0.1" hostport="21513" guestip="10.0.2.15" guestport="5555"/>
<Forwarding name="MVD" proto="1" hostip="127.0.0.1" hostport="21511" guestip="10.0.2.15" guestport="21501"/>
I thought I can force memu to run android instance on specific port by changing the hostport to different value, like
<Forwarding name="ADB" proto="1" hostip="127.0.0.1" hostport="21600" guestip="10.0.2.15" guestport="5555"/>
Unfortunelly when I start android instance via MEMU, the hostport goes back to 21513. Is there anything I can about that?
In other words - I would like to have opportunity to determine device name.

Tested with latest Memu, it seems that Memu will revert hostport every startup, by design.
A simple workaround is forwarding port with Windows firewall, like this:
netsh interface portproxy add v4tov4 listenport=21600 listenaddress=0.0.0.0 connectport=21513 connectaddress=localhost
netsh advfirewall firewall add rule name="Port for Memu_0" dir=in action=allow protocol=TCP localport=21600

Related

How to connect two memu emulators for socket connection in android?

I am new in android and trying to test my android app for socket connection between two emulators, one as server and second as client, as they can send and receive data. I created two projects for server socket and client socket with same package name in android studio 2.3.3 and want to run every project on separate emulator. I know to run this scenario I need to do port forwarding via telnet commands and know how to do it for default android studio emulators, but I want to use it for memu emulators. I don’t know if memu supports telnet, the way to do port forwarding is exactly the same like android studio emulators and if not (memu doesn’t support telnet) is there solution for my goal and how to do it?
I set ADB host port for first emulator (server socket) to 5559 , static ip 10.0.3.14 and for second emulator (client socket) to 5563, ip 10.0.3.15. When I run “telnet localhost 5558” to connect (memu) emulator console in cmd, result is this message: “Connecting To localhost...Could not open connection to the host, on port 5558: Connect failed”. But if I run “telnet localhost 5559” telnetlocalhost window appears! I really surprised because when run adb devices command it shoe 5558 port number (console port), but telnet work for 5559 port number (adb port).
I see in memu manager window, network settings,advanced there is a port forwarding button, but I don’t think it is the same I want. Also read on memu blog we can setup LAN with multiple MEmu instances via bridge connection, but I read another place “Network bridging does not work when the underlying physical network device is a wireless device”. So I confused if bridge connection can help me while I’m using laptop that (android)memu emulators run on it.
I really appreciated everyone can help me to find how connect two memu emulators for socket connection?
P.S: Finally, I apologize if I wrote more than enough and sorry for my poor English.

Receiving data from localhost throws 'Connection Refused Error' [duplicate]

I'm running a web service on my local machine that runs at localhost:54722.
I want to call the service from an app running in the Android emulator.
I read that using 10.0.2.2 in the app would access localhost, but it doesn't seem to work with the port number as well. It says HttpResponseException: Bad Request.
You can access your host machine with the IP address "10.0.2.2".
This has been designed in this way by the Android team. So your webserver can perfectly run at localhost and from your Android app you can access it via "http://10.0.2.2:<hostport>".
If your emulator must access the internet through a proxy server, you can configure a custom HTTP proxy from the emulator's Extended controls screen. With the emulator open, click More , and then click Settings and Proxy. From here, you can define your own HTTP proxy settings.
Use 10.0.2.2 for default AVD and 10.0.3.2 for Genymotion
Since 10.0.2.2 is not a secure domain for Android you have to allow non-secured domains in your network configuration for API 28+ where non-TLS connections are prevented by default.
You may use my following configurations:
Create a new file in main/res/xml/network_security_config.xml as:
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">localhost</domain>
<domain includeSubdomains="true">10.0.2.2</domain>
</domain-config>
</network-security-config>
And point it in AndroidManifest.xml
<application
......
......
android:networkSecurityConfig="#xml/network_security_config">
I faced the same issue on Visual Studio executing an web app on IIS Express. to fix it you need to go to your project properties then click on Debug Tab and change http://localhost:[YOUR PORT] to http://127.0.0.1:[YOUR PORT] and set the android url to http://10.0.2.2:[YOUR PORT]. it worked for me.
I'm not sure this solution will work for every Android Emulator and every Android SDK version out there but running the following did the trick for me.
adb reverse tcp:54722 tcp:54722
You'll need to have your emulator up an running and then you'll be able to hit localhost:54722 inside the running emulator device successfully.
If you are using IIS Express you may need to bind to all hostnames instead of just `localhost'. Check this fine answer:
https://stackoverflow.com/a/15809698/383761
Tell IIS Express itself to bind to all ip addresses and hostnames. In your .config file (typically %userprofile%\My
Documents\IISExpress\config\applicationhost.config, or
$(solutionDir).vs\config\applicationhost.config for Visual Studio
2015), find your site's binding element, and add
<binding protocol="http" bindingInformation="*:8080:*" />
Make sure to add it as a second binding instead of modifying the existing one or VS will just re-add a new site appended with a (1) Also, you may need to run VS as an administrator.
I solved it with the installation of "Conveyor by Keyoti" in Visual Studio Professional 2015.
Conveyor generate a REMOTE address (your IP) with a port (45455) that enable external request.
Example:
Conveyor allows you test web applications from from external tablets and phones on your network or from Android emulators (without http://10.0.2.2:<hostport>)
The steps are in the following link :
https://marketplace.visualstudio.com/items?itemName=vs-publisher-1448185.ConveyorbyKeyoti
The problem is that the Android emulator maps 10.0.2.2 to 127.0.0.1, not to localhost. So configure your web server to serveron 127.0.0.1:54722 and not localhost:54722. That should do it.
After running your local host you get http://localhost:[port number]/ here you found your port number.
Then get your IP address from Command, Open your windows command and type ipconfig
In my case, IP was 192.168.10.33 so my URL will be http://192.168.10.33:[port number]/.
In Android, the studio uses this URL as your URL. And after that set your URL and your port number in manual proxy for the emulator.
I have a webserver running on my localhost.
If I open up the emulator and want to connect to my localhost I am using 192.168.x.x. This means you should use your local lan ip address. By the way, your HttpResponseException (Bad Request) doesn't mean that the host is not reachable.
Some other errors lead to this exception.
To access localhost on Android Emulator
Add the internet permission from AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET" />
Add android:usesCleartextTraffic="true", more details here:
Run the below-mentioned command to find your system IP address:
ifconfig | grep "inet " | grep -v 127.0.0.1
Copy the IP address obtained from this step (A)
Run your backend application, which you can access at localhost or 127.0.0.1 from your sytem.
Now in android studio, you can replace the URL if you're using in code or You can use the ip address obtained from step(A) and try opening in web browser,
Like this http://192.168.0.102:8080/
Don't forget to add PORT after the IP address, in my case app was running on 8080 port so I added IP obtained in (A) with the port 8080
you need to set URL as 10.0.2.2:portNr
portNr = the given port by ASP.NET Development Server my current service is running on localhost:3229/Service.svc
so my url is 10.0.2.2:3229
i'd fixed my problem this way
i hope it helps...
"BadRequest" is an error which usually got send by the server itself, see rfc 2616
10.4.1 400 Bad Request
The request could not be understood by the server due to malformed syntax. The client SHOULD NOT repeat the request without modifications.
So you got a working connection to the server, but your request doesn't fit the expecet form. I don't know how you create the connection, what headers are included (if there are any) – but thats what you should checking for.
If you need more help about, explain what your code is about and what it uses to connect to the Server, so we have the big picture.
Here is a question with the same Problem – the answer was that the content-type wasnt set in the header.
1) Run ipconfig command in cmd
2) You will get result like this
3) Then use IPv4 Address of VMWare Network Adapter 1 followed by port number
In My Case its 8080, so instead of using localhost:8080
I am using 192.168.56.1:8080
Done.....
I would like to show you the way I access IISExpress Web APIs from my Android Emulator. I'm using Visual Studio 2015. And I call the Android Emulator from Android Studio.
All of what I need to do is adding the following line to the binding configuration in my applicationhost.config file
<binding protocol="http" bindingInformation="*:<your-port>:" />
Then I check and use the IP4 Address to access my API from Android emulator
Requirement: you must run Visual Studio as Administrator. This post gives a perfect way to do this.
For more details, please visit my post on github
Hope this helps.
For Laravel Homestead Users:
If anyone using Laravel with homestead you can access app backend using 192.168.10.10 in emulator
Still not working?
Another good solution is to use ngrok https://ngrok.com/
I am using Windows 10 as my development platform, accessing 10.0.2.2:port in my emulator is not working as expected, and the same result for other solutions in this question as well.
After several hours of digging, I found that if you add -writable-system argument to the emulator startup command, things will just work.
You have to start an emulator via command line like below:
emulator.exe -avd <emulator_name> -writable-system
Then in your emulator, you can access your API service running on host machine, using LAN IP address and binding port:
http://192.168.1.2:<port>
Hope this helps you out.
About start emulator from command line: https://developer.android.com/studio/run/emulator-commandline.
Explanation why localhost is not available from emulators for anyone who has basic access problem. For sophisticated cases read other answers.
Problem: Emulator has own local network and localhost maps itself to emulator, but NOT your host!
Solution:
Bind your server to 0.0.0.0 to make it available for emulator's network
Get external IP address of your laptop: ifconfig command for Mac
In Android (or Flutter app) use IP address of your external interface like: 192.168.1.10 instead of localhost
I had the same issue when I was trying to connect to my IIS .NET Webservice from the Android emulator.
install npm install -g iisexpress-proxy
iisexpress-proxy 53990 to 9000 to proxy IIS express port to 9000 and access port 9000 from emulator like "http://10.0.2.2:9000"
the reason seems to be by default, IIS Express doesn't allow connections from network
https://forums.asp.net/t/2125232.aspx?Bad+Request+Invalid+Hostname+when+accessing+localhost+Web+API+or+Web+App+from+across+LAN
localhost seemed to be working fine in my emulator at start and then i started getting connection refused exception
i used 127.0.2.2 from the emulator browser and it worked and when i used this in my android app in emulator it again started showing the connection refused problem.
then i did ifconfig and i used the ip 192.168.2.2 and it worked perfectly
Bad request generally means the format of the data you are sending is incorrect. May be mismatched data mapping . If you are getting bad request implies you are able to connect to the server, but the request is not being sent properly.
If anybody is still looking for this, this is how it worked for me.
You need to find the IP of your machine with respect to the device/emulator you are connected. For Emulators on of the way is by following below steps;
Go to VM Virtual box -> select connected device in the list.
Select Settings ->Network-> Find out to which network the device is attached. For me it was 'VirtualBox Host-Only Ethernet Adapter #2'.
In virtualbox go to Files->Preferences->Network->Host-Only Networks, and find out the IPv4 for the network specified in above step. (By Hovering you will get the info)
Provide this IP to access the localhost from emulator. The Port is same as you have provided while running/publishing your services.
Note #1 : Make sure you have taken care of firewalls and inbound rules.
Note #2 : Please check this IP after you restart your machine. For some reason, even If I provided "Use the following IP" The Host-Only IP got changed.
I resolved exact the problem when the service layer is using Visual Studio IIS Express. Just point to 10.0.2.2:port wont work. Instead of messing around the IIS Express as mentioned by other posts, I just put a proxy in front of the IIS Express. For example, apache or nginx. The nginx.conf will look like
# Mobile API
server {
listen 8090;
server_name default_server;
location / {
proxy_pass http://localhost:54722;
}
}
Then the android needs to points to my IP address as 192.168.x.x:8090
if you are using some 3rd party package like node express or angular-cli you will need to find the IP of your machine, and attach your host to that IP within the server startup config (instead of localhost). Then launch it from the emulator using the IP. For example, I had to use: ng serve -H 10.149.212.104 to use the angular-cli. Then from the emulator I used: http://10.149.212.104:4200
If you are working with Asp.Net Web API, in .vs/config folder inside your project, modify these lines as per you port setting. Let suppose you use port 1234 and physicalPath to the project folder set by IIS is "D:\My Projects\YourSiteName", then
<site name="YourSiteName" id="1">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="D:\My Projects\YourSiteName" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:1234:*" />
</bindings>
</site>
In android studio, access your api with "http://10.0.2.2:1234" ...

Capture Android Emulator traffic using Fiddler

I've been trying to capture the network traffic populated from the browser and an app hosted inside the Android emulator, using Fiddler.
I've been unsuccessful even after following the workarounds of adding proxy to the emulator (Settings - More - Cellular Networks - Access Point Names - adding the system IP and port).
You should enter this ip-address: 10.0.2.2 as a Proxy-address. You should use it cause of Android emulator haven't direct access to your local network and can't connect to local computer.
But Android Emulator has a virtual router, so you can connect to your computer by address 10.0.2.2. You can read more here
-OR-
You can use Visual Studio Android Emulator. There's using Hyper-V virtual network adapter that can connect directly to your local network
The point is you should switch air-plane mode on-off once after fill this settings in Cellular network setting / Access point Names with this settings:
Set your system IP in -> Proxy
Set fiddler port number (8888 is default) in -> Port
Clear Username and Password field.
Save and exit.
Turn-on airplane mode and then turn it off.
Now your data will capturing by Fiddler.
It just working on an old version of android.

Android Socket: java.net.SocketException: No route to host

I am trying to connect (through TCP) to the server running on my machine from the Android device.
I have android.permission.INTERNET in my manifest file:
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
I am able to connect using emulator but trying from the device throws an error:
Android Socket: java.net.SocketException: No route to host
Can anyone please help.
Disabled wifi on my Android device and then re-enabled it and it worked.
Your 192.168.1.114 address is a DHCP address (dynamically) assigned by your router to your PC. As a result it is visible to the emulator.
But depending on how your WiFi is set up, the Android is probably on a different router / subnet and can't see 192.168.1.114. You could check that by typing 192.168.1.114 into the address bar of the Android browser.
If 192.168.1.114 is not visible to your Android, then you will have to either change the routing rules on your router to make it visible, or add a DNS lookup for it.
I had the same problems. It turned out my Win7 firewall was blocking the connection.
I was having the same issue with my android app running IP address of the computer. The app was working good and then suddenly volley started throwing exceptions. I tried enabling and disabling my mobile wifi and it didn't work. Then I tried shutting down my main router and turning back on. And just like that volley was happy and the app started working again:)
Hope that helps.

Android No internet access on Emulator, proxy settings?

Previously I was using proxy settings and I was able to access internet from browser as well as browser on Emulator. Now I don't use any proxy and I am able to access internet from browser but I no longer get internet access inside the emulator. Also, I'm using Linux so there's no concerns with a firewall, and I've checked for proxy settings in command mode while running emulator with emulator -avd AVDName -verbose.
yup i've got the solution, at first it was proxy and then DNS server, we need to set DNS server. Here are the steps that you can set your DNS server
on command line emulator -avd AVDName -dns-server: 8.8.8.8 -verbose . Here verbose is to see the processes in command mode while running emulator
In eclipse Run>Run Configurations>select target tab and then in field Additional Emulator Command lines type -dns-server: 8.8.8.8