com.emergetools.android
                  Owner:
                  
                    
                    Ryan Brooks
                  
                
Gradle plugin for building and uploading an Android AAB/APK to Emerge.
https://docs.emergetools.com/docs/gradle-plugin
Sources: https://docs.emergetools.com/docs/gradle-plugin
Version 3.0.0-rc02
Created 23 May 2024.
                Gradle plugin for building and uploading an Android AAB/APK to Emerge.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.emergetools.android") version "3.0.0-rc02"
}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.emergetools.android:com.emergetools.android.gradle.plugin:3.0.0-rc02") }It can then be applied in the precompiled script plugin:plugins { id("com.emergetools.android") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.emergetools.android:com.emergetools.android.gradle.plugin:3.0.0-rc02") } } apply(plugin = "com.emergetools.android")
- Applying plugins to all subprojects .