Home > Net >  How to test springboot with from an android emulator app
How to test springboot with from an android emulator app

Time:03-18

I am working on an android project which I used springboot for the webservice. It the any possible way of testing the spring boot project before deployment. What I mean is-how can I run the spring boot project and and make the app from the emulator to work with it. I'm using volley for the http client request.

CodePudding user response:

Use ip adress of pc where spring boot app turn (ex : http://192.168.100.100:port) as base url for volley request.

The two device must be connected to the same access point(WI-FI).

  • Related