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)
Created 19 October 2022.
Resource Management API Generator for Android
Add this plugin to your build using the plugins DSL:
plugins {
id("com.xfinity.resourceprovider") version "1.5.0"
}
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("com.xfinity.resourceprovider:com.xfinity.resourceprovider.gradle.plugin:1.5.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.xfinity.resourceprovider") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.xfinity.resourceprovider:com.xfinity.resourceprovider.gradle.plugin:1.5.0") } } apply(plugin = "com.xfinity.resourceprovider")
- Applying plugins to all subprojects .