Search Gradle plugins

io.github.qamarelsafadi.kmp.app.icon.generator

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.0

1.2.0

Created 22 August 2024.

KMPAppIconGeneratorPlugin is a plugin that helps you change your Android and iOS app icon from one line command

Using the plugins DSL:

plugins {
  id("io.github.qamarelsafadi.kmp.app.icon.generator") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.qamarelsafadi:build-logic:1.2.0")
  }
}

apply(plugin = "io.github.qamarelsafadi.kmp.app.icon.generator")

Using the plugins DSL:

plugins {
  id "io.github.qamarelsafadi.kmp.app.icon.generator" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.qamarelsafadi:build-logic:1.2.0"
  }
}

apply plugin: "io.github.qamarelsafadi.kmp.app.icon.generator"

Learn how to apply plugins to subprojects