Search Gradle plugins

cn.numeron.discovery

An android gradle plugin, helps android developers in multi-module projects to get their inaccessible instances from accessible abstract classes.

https://github.com/xiazunyang/discovery

Sources: https://github.com/xiazunyang/discovery.git

Version 2.0.0 (latest)

2.0.0

Created 05 December 2023.

An android gradle plugin, helps android developers in multi-module projects to get their inaccessible instances from accessible abstract classes.

Add this plugin to your build using the plugins DSL:

plugins {
  id("cn.numeron.discovery") version "2.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("cn.numeron:plugin:2.0.0")
      }
    }
    
    apply(plugin = "cn.numeron.discovery")
  • Applying plugins to all subprojects .