4

Is it possible to remove a mobile environment from the project like say Blackberry and Adobe Air environments. For instance

mobilefirst add environment

helps to add environment, but is there a command to remove an environment?

Idan Adar
  • 44,156
  • 13
  • 50
  • 89
Futur
  • 8,444
  • 5
  • 28
  • 34

1 Answers1

7

The CLI does not have a command to "remove an environment".
You can submit feature requests, here: https://developer.ibm.com/mobilefirstplatform/help/

Your only alternative is:

  1. Navigate to the application folder and delete the environment directory as you would remove any other directory/folder in a filesystem from command line.

  2. You can then optionally also edit application-descriptor.xml to remove it from there as well (not removing it will trigger a warning).
Idan Adar
  • 44,156
  • 13
  • 50
  • 89