plugins {
id("com.apkplug.gradle.ApkplugComponent") version "1.1"
}
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.apkplug:component_gp:1.1")
}
}
apply(plugin = "com.apkplug.gradle.ApkplugComponent")
plugins {
id "com.apkplug.gradle.ApkplugComponent" version "1.1"
}
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.apkplug:component_gp:1.1"
}
}
apply plugin: "com.apkplug.gradle.ApkplugComponent"