Search Gradle plugins

com.github.samystudio.flair

Flair is a gradle plugin that helps you build Adobe AIR mobile/desktop projects with Starling and Feathers libraries. Flair also comes up with its own actionscript library to manage your app resources, it actually mimics android resources managment.

https://github.com/SamYStudiO/flair-gradle-plugin

Sources: https://github.com/SamYStudiO/flair-gradle-plugin.git

Version 0.8.2 (latest)

Created 17 February 2017.

Flair is a gradle plugin that helps you build Adobe AIR mobile/desktop projects with Starling and Feathers libraries. Flair also comes up with its own actionscript library to manage your app resources, it actually mimics android resources managment.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.samystudio.flair") version "0.8.2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.samystudio.flair:com.github.samystudio.flair.gradle.plugin:0.8.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.samystudio.flair")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.samystudio.flair:com.github.samystudio.flair.gradle.plugin:0.8.2")
      }
    }
    
    apply(plugin = "com.github.samystudio.flair")
  • Applying plugins to all subprojects .