com.kevincheng.gradle.ditto
Owner: Kevin Cheng
Ditto is a plugin that can easily adapt the layout to different Android devices to make sure users are getting same user experience.
https://github.com/ccykevin/Ditto
Sources: https://github.com/ccykevin/Ditto
Version 1.0.1
Created 14 July 2020.
Ditto is a Gradle plugin that can easily adapt the layout to different Android devices to ensure that users get the same user experience.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.kevincheng.gradle.ditto") version "1.0.1"
}
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.kevincheng.gradle.ditto:com.kevincheng.gradle.ditto.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.kevincheng.gradle.ditto") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.kevincheng.gradle.ditto:com.kevincheng.gradle.ditto.gradle.plugin:1.0.1") } } apply(plugin = "com.kevincheng.gradle.ditto")
- Applying plugins to all subprojects .