Owner:
Flipboard Ops
Gradle plugin that generates class representations of xml preferences
https://github.com/flipboard/psync
Sources: https://github.com/flipboard/psync
Version 1.1.4
Created 01 September 2015.
Gradle plugin that generates class representations of xml preferences
Add this plugin to your build using the plugins DSL:
plugins {
id("com.flipboard.psync") version "1.1.4"
}
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.flipboard.psync:com.flipboard.psync.gradle.plugin:1.1.4") }It can then be applied in the precompiled script plugin:plugins { id("com.flipboard.psync") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.flipboard.psync:com.flipboard.psync.gradle.plugin:1.1.4") } } apply(plugin = "com.flipboard.psync") - Applying plugins to all subprojects .