in.zeta.apollo.android.apollo-services
Owner: Deboday
Copy Apollo Config and Local Collections from app environments to assets folder
Sources: https://github.com/test
Version 1.0.0-test1
1.0.0-test1
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-test1"
}
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-test1")
}
}
apply(plugin = "in.zeta.apollo.android.apollo-services")
Using the plugins DSL:
plugins {
id "in.zeta.apollo.android.apollo-services" version "1.0.0-test1"
}
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-test1"
}
}
apply plugin: "in.zeta.apollo.android.apollo-services"