When I execute ionic capacitor run android -l --external --configuration=staging
this running my app on this ip
External: http://192.168.1.4:8100
by 192.168.1.4:81000 I can acess live changes in my android device.
Is there any way I can make run this app on custom ip for External something like
External: https://1.2.3.4:8100
192.168.1.4 is the local IP of the computer doing the compiling and live reload, so if you want it to be 1.2.3.4 you’ll have to configure your router and computer to use that IP
to use https instead of http you have the --ssl
flag, but that doesn’t play well with Capacitor unless you configure a certificate, which is tricky when using numbers instead of a real domain.