How to change your App icon with Angular Capacitor
So you have to change all the image in the generated folder android\app\src\main\res\mipmap[…] with my app icon
Once you've created your native projects, you can sync your web application to your native project by running the following command.npx cap sync
Opening the Android Project To open the project in Android Studio, run:
npx cap open android
Alternatively, you can open Android Studio and import the android/ directory as an Android Studio project.
Running Your App You can either run your app on the command-line or with Android Studio.
Running on the Command-Line To run the project on a device or emulator, run:
npx cap run android
The command will prompt you to select a target.
Running with Android Studio In Android Studio, first select the device or emulator and then click the run or debug button to run your app. Unless you're debugging Java or Kotlin code, the run button is preferred.