ch.hippmann.androidpublisher
                  Owner:
                  
                    
                    Cedric
                  
                
Gradle plugin for publishing apps to the Google Play Store
https://github.com/chippmann/androidpublisher
Sources: https://github.com/chippmann/androidpublisher.git
Version 0.3.2
Created 22 December 2023.
                Gradle plugin for publishing apps to the Google Play Store
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("ch.hippmann.androidpublisher") version "0.3.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("ch.hippmann.androidpublisher:ch.hippmann.androidpublisher.gradle.plugin:0.3.2") }It can then be applied in the precompiled script plugin:plugins { id("ch.hippmann.androidpublisher") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.hippmann.androidpublisher:ch.hippmann.androidpublisher.gradle.plugin:0.3.2") } } apply(plugin = "ch.hippmann.androidpublisher")
- Applying plugins to all subprojects .