Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 883 Bytes

CreateProject.md

File metadata and controls

21 lines (11 loc) · 883 Bytes

Step 2: Create a project

To create a default Chrome App for Mobile project in a directory named YourApp, run:

cca create YourApp

Know what you're doing? You can also provide the App ID and the App Name from the command line:

cca create YourApp com.your.company.YourApp "Your App"

If you have already built a Chrome App and wish to port it to a mobile platform, you can use the --link-to flag to create a symlink to it:

cca create YourApp --link-to=path/to/manifest.json

If you instead wish to copy your existing Chrome App files, you can use the --copy-from flag:

cca create YourApp --copy-from=path/to/manifest.json

Don't have your own Chrome App yet? Try one of the many sample Chrome Apps with mobile support.

Done? Continue to Step 3: Develop »