com.xfinity.resourceprovider
Owner: Mark Dappollone
MVP String ResourceProvider API Generator for Android
https://github.com/Comcast/resourceprovider2
Sources: http://www.github.com/Comcast
Version 1.5.0 (latest)
1.5.0
Created 19 October 2022.
Resource Management API Generator for Android
Using the plugins DSL:
plugins {
id("com.xfinity.resourceprovider") version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.xfinity:resourceprovider:1.5.0")
}
}
apply(plugin = "com.xfinity.resourceprovider")
Using the plugins DSL:
plugins {
id "com.xfinity.resourceprovider" version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.xfinity:resourceprovider:1.5.0"
}
}
apply plugin: "com.xfinity.resourceprovider"