~~NOTOC~~ ====== Flair-gradle-plugin ====== ---- dataentry extension ---- author_mail : contact@samystudio.net Samuel Eminet description : Flair is a gradle plugin that helps you build Adobe AIR projects # enter a short description of the extension compatible : v2.0 # the Starling version you tested the extension with tags : Gradle, build # enter a few tags, separated by commas homepage_url : https://github.com/SamYStudiO/flair-gradle-plugin # if the ext. has an URL (e.g. a Gist-page), add it here ---- ===== Overview ===== Flair is a gradle plugin that helps you build Adobe AIR projects (ios, android and desktop). Flair comes up with all tasks you may already use with Ant (compile, install, launch, etc...) but also with all files you need to start working on your projects. Last but not least Flair greatly improves resource management using an Android like approach. buildscript { repositories { jcenter() } dependencies { classpath "com.github.samystudio.flair:flair-gradle-plugin:0.6.3" } } apply plugin: "flair.ios" // only if your project need to target ios devices apply plugin: "flair.android" // only if your project need to target android devices apply plugin: "flair.desktop" // only if your project need to target desktop apply plugin: "flair.texturepacker" // only if you want to use TexturePacker with your project apply plugin: "flair.idea" // only if you are using IntelliJ IDEA flair{ packageName "com.hello.world" // set your sources root package here (this is required to initialize flair plugin) } ===== Changelog ===== * //2016/02/23// **0.6.3**: First public version ===== User Comments ===== //Feel free to edit this part of the page if you want to add information that's lacking in the above description.\\ Questions are better asked in the [[http://forum.starling-framework.org|forum]], though.//