Skip to content

Commit

Permalink
Support Android Simulation
Browse files Browse the repository at this point in the history
  • Loading branch information
attiasas committed Nov 5, 2024
1 parent 972af94 commit 62abe51
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main/java/org/ois/plugin/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,14 @@ public static class Tasks {
public static final String RUN_HTML_SIMULATION_TASK_NAME = "runHtml";
/** The 'Run HTML Simulation' task description **/
public static final String RUN_HTML_SIMULATION_TASK_DESCRIPTION = "Run the simulation as html (In dev mode), will be hosted at http://localhost:8080/";
/** The 'Run HTML Simulation' task name **/
/** The 'Run Desktop Simulation' task name **/
public static final String RUN_DESKTOP_SIMULATION_TASK_NAME = "runDesktop";
/** The 'Run HTML Simulation' task description **/
/** The 'Run Desktop Simulation' task description **/
public static final String RUN_DESKTOP_SIMULATION_TASK_DESCRIPTION = "Run the simulation (In dev mode) in a desktop window";
/** The 'Run Android Simulation' task name **/
public static final String RUN_ANDROID_SIMULATION_TASK_NAME = "runAndroid";
/** The 'Run Android Simulation' task description **/
public static final String RUN_ANDROID_SIMULATION_TASK_DESCRIPTION = "Run the simulation (In dev mode) in connected android device";
/** The 'Distribute Simulation task name **/
public static final String DISTRIBUTE_SIMULATION_TASK_NAME = "export";
/** The 'Distribute Simulation task description **/
Expand Down

0 comments on commit 62abe51

Please sign in to comment.