tart by generating a new Ionic app: ionic start ionic-capacitor-app blank --type=angular After generating your Ionic app you can now add Capacitor so head back to your terminal then navigate inside your root folder and follow the other steps cd ionic-capacitor-app (When asked Would you like to integrate your new app with Cordova to target native iOS and Android? You can answer No) npm install --save @capacitor/core @capacitor/cli Next init Capacitor by running the following command with your ap information npx cap init ionic-capacitor-app com.balatonica.app Now you need to generate the www folder with the Ionic app built files by running the build command: npm run build Adding the Android Platform npx cap add android npx cap sync Now you can open your Android project using the Android Studio using: npx cap open