com.ins.gradle.plugin.android.appcenter-publish-plugin
Owner: Jonathan DA ROS
This plugin adds tasks for each of your app variants, allowing them to be uploaded on App Center
https://github.com/jdarosTD/appcenter-publish-plugin
Sources: https://github.com/jdarosTD/appcenter-publish-plugin
Version 1.1 (latest)
Created 30 January 2019.
This plugin adds tasks for each of your app variants, allowing them to be uploaded on App Center
Add this plugin to your build using the plugins DSL:
plugins {
id("com.ins.gradle.plugin.android.appcenter-publish-plugin") version "1.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("com.ins.gradle.plugin.android.appcenter-publish-plugin:com.ins.gradle.plugin.android.appcenter-publish-plugin.gradle.plugin:1.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.ins.gradle.plugin.android.appcenter-publish-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.ins.gradle.plugin.android.appcenter-publish-plugin:com.ins.gradle.plugin.android.appcenter-publish-plugin.gradle.plugin:1.1") } } apply(plugin = "com.ins.gradle.plugin.android.appcenter-publish-plugin")
- Applying plugins to all subprojects .