Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/dev/front/how_to_test_changes _to_a_plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,15 @@ While the above approach helps test small changes, It is very time-consuming whe

```bash
# Copy files into platforms for building
$ cordova prepare
$ npx cordova prepare

# Build the platform specific code
cordova build <platform>
npx cordova build <platform>
```
> Replace the `<platform>` with either `ios` or `android`.

> Make sure you also ["bundle the js webpack"](https://github.com/e-mission/e-mission-phone?tab=readme-ov-file#building-the-app) or there will be no app UI

## 2. Then, open the project in your IDE.

### For Android development:
Expand Down