Search Gradle plugins

com.kevincheng.gradle.ditto

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.1.0 (latest)

1.1.0

Created 20 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.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.kevincheng.gradle:ditto:1.1.0")
      }
    }
    
    apply(plugin = "com.kevincheng.gradle.ditto")
  • Applying plugins to all subprojects .