DEV Community

Kasim Ridwan
Kasim Ridwan

Posted on • Updated on

Useful Ionic + Capacitor commands

  • Run app with live reload (Android)
ionic cap run android -l --external
Enter fullscreen mode Exit fullscreen mode
  • Run app with live reload (iOS)
ionic cap run ios -l --external
Enter fullscreen mode Exit fullscreen mode
  • How to generate a release APK without opening the android studio
ionic capacitor copy android --prod && cd android && ./gradlew assembleRelease && cd ..     
Enter fullscreen mode Exit fullscreen mode
  • How to generate a debug APK without opening the android studio
ionic capacitor copy android && cd android && ./gradlew assembleDebug && cd ..
Enter fullscreen mode Exit fullscreen mode
  • How to generate icons & splash screen without specifying platform
cordova-res --skip-config --copy
Enter fullscreen mode Exit fullscreen mode
  • How to build and run apk directly on the device from CLI
ionic capacitor copy android && cd android && ./gradlew assembleDebug && ./gradlew installDebug && cd ..
Enter fullscreen mode Exit fullscreen mode

I will be updating this post with more useful commands. Thank you for reading!!!

Top comments (0)