I need to run my application outside of my home, therefore I can’t connect my phone to my PC through USB nor use the devapp (as I won’t be connected to the same network).
Is it possible to run the application?
Thank you!
I need to run my application outside of my home, therefore I can’t connect my phone to my PC through USB nor use the devapp (as I won’t be connected to the same network).
Is it possible to run the application?
Thank you!
You can build the application in device and use it, without livereload: ionic cordova run <your_device_platform>
. That way the app will install and you can use anywhere.
You also can generate an APK with: ionic cordova build <your_device_platform>
.
Then you just copy the APK to the device and install it.