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

Add this plugin to your build using the plugins DSL:

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

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("in.zeta.apollo.android.apollo-services:in.zeta.apollo.android.apollo-services.gradle.plugin:1.0.0-test2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("in.zeta.apollo.android.apollo-services")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("in.zeta.apollo.android.apollo-services:in.zeta.apollo.android.apollo-services.gradle.plugin:1.0.0-test2")
      }
    }
    
    apply(plugin = "in.zeta.apollo.android.apollo-services")
  • Applying plugins to all subprojects .