搜索 Gradle 插件

io.github.ssseasonnn.router

所有者: Season

一个 Android 导航框架插件,帮助用户自动注册 RouterTable。

https://github.com/TW-Smart-CoE/ARK-Android-Router

来源: https://github.com/TW-Smart-CoE/ARK-Android-Router.git

版本 1.0.0 (最新版本)

1.0.0

创建于 2023 年 2 月 1 日。

一个 Android 导航框架插件,帮助用户自动注册 RouterTable。

使用 插件 DSL

plugins {
  id("io.github.ssseasonnn.router") version "1.0.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.ssseasonnn.router:plugin:1.0.0")
  }
}

apply(plugin = "io.github.ssseasonnn.router")

使用 插件 DSL

plugins {
  id "io.github.ssseasonnn.router" version "1.0.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.ssseasonnn.router:plugin:1.0.0"
  }
}

apply plugin: "io.github.ssseasonnn.router"

了解如何将插件应用于子项目