SYNTAX mfpdev app create [ --appType|-t --appId|-i --appVersion|-av --platforms|-p --services|-s ] DESCRIPTION Creates a new starter application OPTIONS : The name of the application. --appType|-t : The type of the application. The following values are valid: ionic native --appId|-i : The identifier (bundleId for iOS and package name for android) of the application. --appVersion|-av : The application version. --platforms|-p : List of application platforms. The following values are valid: android ios --services|-s : List of mobile foundation services. The following values are valid: push analytics liveupdate EXAMPLES Interactive Mode: $ mfpdev app create Displays a series of prompts enabling you to specify the information about the application. Use the up and down arrow keys on your keyboard to move through the selections, and press the Enter key to select. Direct Mode: $ mfpdev app create myapp --appType ionic --appId com.myapp --appVersion 1.0.0 --platforms android --services push,analytics Creates an ionic starter application myapp with the application identifier com.myapp and version 1.0.0 for the android platform with push and analytics service added.