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 »