com.dmlukas.iconoverlay
Owner: Dzmitry
This is an Android gradle plugin that allows you to overlay text on top of an android application's icon to easily convey information about the app to testers, such as version or flavor.
https://github.com/dlukashanets/IconOverlayPlugin
Sources: https://github.com/dlukashanets/IconOverlayPlugin.git
Version 1.0 (latest)
Created 27 June 2018.
This is an Android gradle plugin that allows you to overlay text on top of an android application's icon to easily convey information about the app to testers, such as version or flavor.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.dmlukas.iconoverlay") version "1.0"
}
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.dmlukas.iconoverlay:com.dmlukas.iconoverlay.gradle.plugin:1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.dmlukas.iconoverlay") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.dmlukas.iconoverlay:com.dmlukas.iconoverlay.gradle.plugin:1.0") } } apply(plugin = "com.dmlukas.iconoverlay")
- Applying plugins to all subprojects .