Search Gradle plugins

Version 0.1

Created 01 October 2019.

Gradle React Native applications build plugin

Using the plugins DSL:

plugins {
  id("com.klarna.gradle.reactnative") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.klarna:plugin:0.1")
  }
}

apply(plugin = "com.klarna.gradle.reactnative")

Using the plugins DSL:

plugins {
  id "com.klarna.gradle.reactnative" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.klarna:plugin:0.1"
  }
}

apply plugin: "com.klarna.gradle.reactnative"

Learn how to apply plugins to subprojects