ru.pixnews.gradle.fbase
Owner:
Alexey Illarionov
Gradle plugin that generates FirebaseOptions using values from configuration file.
https://github.com/illarionov/fbase-config-generator-gradle-plugin
Sources: https://github.com/illarionov/fbase-config-generator-gradle-plugin
Version 0.1 (latest)
Created 05 January 2024.
Gradle plugin that generates FirebaseOptions using values from configuration file.
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.pixnews.gradle.fbase") version "0.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("ru.pixnews.gradle.fbase:ru.pixnews.gradle.fbase.gradle.plugin:0.1") }
It can then be applied in the precompiled script plugin:plugins { id("ru.pixnews.gradle.fbase") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.pixnews.gradle.fbase:ru.pixnews.gradle.fbase.gradle.plugin:0.1") } } apply(plugin = "ru.pixnews.gradle.fbase")
- Applying plugins to all subprojects .