Skip to content

Instantly share code, notes, and snippets.

@nuno
Forked from falkolab/README.md
Created May 14, 2016 16:06
Show Gist options
  • Save nuno/b589fd50594047dc26461e177e2df332 to your computer and use it in GitHub Desktop.
Save nuno/b589fd50594047dc26461e177e2df332 to your computer and use it in GitHub Desktop.
How to use latest Alloy with appc CLI

If you want to use latest alloy with appc CLI command:

  1. Update Alloy: [sudo] npm install -g alloy

  2. Create file in your project <project root>/plugins/global.alloy/1.0/hooks/global_alloy_hook.js with content:

exports.init = function (logger, config, cli, appc) {
	delete process.env.ALLOY_PATH;
};
  1. add plugin to the tiapp.xml plugins section:
<plugins>
	<plugin version="1.0">ti.alloy</plugin>        
	<plugin version="1.0">global.alloy</plugin>
</plugins>
  1. Recompile project

  2. Enjoy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment