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.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.

Using the plugins DSL:

plugins {
  id("com.kevincheng.gradle.ditto") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.kevincheng.gradle:ditto:1.0.1")
  }
}

apply(plugin = "com.kevincheng.gradle.ditto")

Using the plugins DSL:

plugins {
  id "com.kevincheng.gradle.ditto" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.kevincheng.gradle:ditto:1.0.1"
  }
}

apply plugin: "com.kevincheng.gradle.ditto"

Learn how to apply plugins to subprojects