io.github.qamarelsafadi.kmp.app.icon.generator
Owner: Qamar A. Safadi
KMPAppIconGeneratorPlugin is a plugin that helps you change your Android and iOS app icon from one line command
https://github.com/qamarelsafadi/KMPAppIconGeneratorPlugin
Sources: https://github.com/qamarelsafadi/KMPAppIconGeneratorPlugin.git
Version 1.2.6 (latest)
Created 06 September 2024.
KMPAppIconGeneratorPlugin is a plugin that helps you change your Android and iOS app icon from one line command
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.qamarelsafadi.kmp.app.icon.generator") version "1.2.6"
}
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("io.github.qamarelsafadi.kmp.app.icon.generator:io.github.qamarelsafadi.kmp.app.icon.generator.gradle.plugin:1.2.6") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.qamarelsafadi.kmp.app.icon.generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.qamarelsafadi.kmp.app.icon.generator:io.github.qamarelsafadi.kmp.app.icon.generator.gradle.plugin:1.2.6") } } apply(plugin = "io.github.qamarelsafadi.kmp.app.icon.generator")
- Applying plugins to all subprojects .