DEV Community

Ravi Ashara
Ravi Ashara

Posted on

Build a Native App from Angular Projects with Capacitor

Follow below step to create mobile app using your angular project

  1. npm install @capacitor/core
  2. npm install @capacitor/cli --save-dev
  3. npx cap init
  4. ng build --prod
  5. npm install @capacitor/android
  6. npm install @capacitor/ios
  7. npx cap add android
  8. npx cap add ios
  9. npx cap sync
  10. npx cap run android

Top comments (0)