How do i view a demo of my ionic app on my phone

Hello guys,

Please, how do i view a demo of my ionic app on my phone and as well share it to others without deploying it on playstore?

There are quite a few ways to do that.

If you want them to try it without actually installing it you could just run ionic serve from your computer and it will give you two IP addresses to use: one to access the server from your computer and the other to access the server via your WiFi network.
They look something like this:

   Local: http://localhost:8100
   External: http://192.168.56.1:8100, http://178.160.10.42:8100

If you want to share the application with them and allow them to install it without going to the PlayStore, you can follow this guide:
Deploying to a Device - Ionic Framework

For Android
1.Connect your android mobile to laptop
2.Enable USB debugging in mobile
3.then run command “ionic cordova run android” it should run automatically in mobile

Another Option
1.Connect your android mobile to laptop
2.Enable USB debugging in mobile
3.Start Android Studio
4.Open ionic project from android platform in Android Studio
5.After sync completed then click on run button in android studio it should run in mobile

Thanks. will try that soon

Thanks. will try that soon.