InterviewSolution
Saved Bookmarks
| 1. |
What’s The Difference Between “ionic Build” And “ionic Prepare”? |
|
Answer» ionic PREPARE <PLATFORM> COPIES all files from the www folder into the target platform’s www folder. ionic build <platform> also does this, but also builds the APP’s source code so that it can be RUN on a simulator/emulator or a device. ionic prepare <platform> copies all files from the www folder into the target platform’s www folder. ionic build <platform> also does this, but also builds the app’s source code so that it can be run on a simulator/emulator or a device. |
|