com.bornfight.techinfocard
Owner: Ivan Anić
This plugin generates a brief summary of some of the technical requirements for your app.
https://gitlab.com/bornfight-mobile/android/techinfocard
Sources: https://gitlab.com/bornfight-mobile/android/techinfocard
Version 1.0 (latest)
1.0
Created 20 August 2019.
This plugin generates a brief summary of some of the technical requirements for your app.
Using the plugins DSL:
plugins {
id("com.bornfight.techinfocard") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.bornfight.techinfocard:TechInfoCard:1.0")
}
}
apply(plugin = "com.bornfight.techinfocard")
Using the plugins DSL:
plugins {
id "com.bornfight.techinfocard" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.bornfight.techinfocard:TechInfoCard:1.0"
}
}
apply plugin: "com.bornfight.techinfocard"