Skip to content

Instantly share code, notes, and snippets.

@bowserf
Last active April 7, 2023 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bowserf/6b013a5b4f65b477c76471c888fa3ec4 to your computer and use it in GitHub Desktop.
Save bowserf/6b013a5b4f65b477c76471c888fa3ec4 to your computer and use it in GitHub Desktop.
class BundleReleaseFilesPlugin : Plugin<Project> {
override fun apply(target: Project) {
...
val bundleReleaseFiles = target.tasks.register(
"bundleReleaseFiles",
BundleReleaseFilesTask::class.java
) {
this.group = "my_plugins"
this.description = "Bundle release files (APK, Bundle and mapping) in the same directory"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment