Skip to content

Instantly share code, notes, and snippets.

@DouglasHennrich
Forked from falkolab/README.md
Created April 12, 2016 17:33
Show Gist options
  • Save DouglasHennrich/51e0ae7c40006cbccbf91ce32d9636a4 to your computer and use it in GitHub Desktop.
Save DouglasHennrich/51e0ae7c40006cbccbf91ce32d9636a4 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