tools.forma.android
                  Owner:
                  
                    
                    Stepan Goncharov
                  
                
Best way to structure your Android Project
Sources: https://github.com/formatools/forma.git
Version 0.1.2.alpha-1
Created 10 July 2023.
                Best way to structure your Android Project
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("tools.forma.android") version "0.1.2.alpha-1"
}
              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("tools.forma.android:tools.forma.android.gradle.plugin:0.1.2.alpha-1") }It can then be applied in the precompiled script plugin:plugins { id("tools.forma.android") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tools.forma.android:tools.forma.android.gradle.plugin:0.1.2.alpha-1") } } apply(plugin = "tools.forma.android") - Applying plugins to all subprojects .