Search Gradle plugins

in.zeta.apollo.android.apollo-services

Owner: Deboday

Copy Apollo Config and Local Collections from app environments to assets folder

https://www.zeta.tech/

Sources: https://github.com/test

Version 1.0.0-test2 (latest)

Created 04 February 2020.

Copy Apollo Config and Local Collections from app environments to assets folder

Using the plugins DSL:

plugins {
  id("in.zeta.apollo.android.apollo-services") version "1.0.0-test2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.in.zeta.apollo:apollo-services:1.0.0-test2")
  }
}

apply(plugin = "in.zeta.apollo.android.apollo-services")

Using the plugins DSL:

plugins {
  id "in.zeta.apollo.android.apollo-services" version "1.0.0-test2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.in.zeta.apollo:apollo-services:1.0.0-test2"
  }
}

apply plugin: "in.zeta.apollo.android.apollo-services"

Learn how to apply plugins to subprojects